English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - March 2007

[Selected]: All categories Computers & Internet Programming & Design

What is the best way to put the webpage name, buttons and tag line on every 200 pages in Frontpage 2003.
Can any free pdf book available regarding in this topic.

2007-03-20 08:22:34 · 2 answers · asked by Julia Nancy 3

i am thinking about creating a website but what is the best program to use?

2007-03-20 08:01:58 · 11 answers · asked by Anonymous

Full steps in detail with explanation please .........

2007-03-20 07:57:30 · 1 answers · asked by Dhaval T 1

I am supposed to be able to look up states by their full names and abbreviated names, but I don't know how to do this with out using a list, or combo box.

2007-03-20 07:49:33 · 3 answers · asked by huelsman_royalty 2

were can i download a free photoshop program? something that can customize drawings and backgrounds? PLZ.........any help will be highly appreciated!!

2007-03-20 07:37:16 · 11 answers · asked by plum_145 2

Can i have a box in a form, which - when you select specific data from the list, it will update a number of other textboxes which will show the data conected to the first piece.

E.g,
If i can choose a number of staff ID's from a list.
And when the ID number has been chosen, the staff details will appear in the other text boxes.

2007-03-20 07:27:39 · 2 answers · asked by Gurpz 2

on my dads page and every page on myspace i get this where the music goes

Hello, you either have JavaScript turned off or an old version of Macromedia's Flash Player. Click here to get the latest flash player.

i have updated media and the java is updated, what's going on?

2007-03-20 07:21:36 · 2 answers · asked by texasdaddy2009 3

I want to know wether VB.net is a easy language to be used for a beginner? Or is there any other languages that are more easier than that? Currently, I am using PHP.

2007-03-20 06:42:27 · 6 answers · asked by Smelly 2

How do I balance a linked list in C++?

To balance, I mean sorting the nodes in the list so that the node with the greatest value is at the head of the list, the second greatest node is at the end, and so on... (the data type is double)

Thanks for you help!!!

2007-03-20 06:37:06 · 3 answers · asked by sheket 1

i would like to know how i make links from my website open in a new window.
thanks in advance for you answers!

2007-03-20 06:32:05 · 1 answers · asked by just trying to make a difference 5

ok well u know those advertisements like in kroger on the bulletin boards-and at the bottom of the page-they have a few vertical tabs where you can tear them off-ok i need to know how to make those vertical tabs

2007-03-20 06:25:55 · 6 answers · asked by ERAddict 2

I can barely see it!!

2007-03-20 06:25:54 · 2 answers · asked by vandycommodore123 1

Hi, i'm looking for a FREE web form generator which can be easily installed on my website preferably in HTML so that i can collect names and email addresses from visitors to my site, for example for them to sign up for my newsletter etc

2007-03-20 06:23:55 · 3 answers · asked by just trying to make a difference 5

Do you have any links or anything that can help me learn a computer programming language? Remember I am only 14 so want something not too complicated but somewhat understandable.

2007-03-20 06:11:10 · 13 answers · asked by Kenny 3

I am trying to open a .tar file and cannot figure out how.

Please Help!

2007-03-20 06:08:25 · 8 answers · asked by *Beth* 1

2007-03-20 06:06:51 · 7 answers · asked by Anonymous

I know there must be an easy way to fix this..what is it?

2007-03-20 06:05:13 · 3 answers · asked by eowawa 1

represent False a: the null pointer B:a floating expression haveing the value 0.0 C: the null character '\0' D: all of the above.

2007-03-20 05:58:37 · 4 answers · asked by taylor_boswell 1

I am dealing with a series of lines that have a varying amount of periods, such as follows:

Topic Planner . . . . . . . . . . . . . . . . . . . . . . . . . . . .353A
Math Background for Teachers . . . . . . . . . . . . . 353E
Universal Access . . . . . . . . . . . . . . . . . . . . . . . .353G

Is there a way to replace the periods with a tab? All I can think of is Find & Replace ". " with a space, then Find & Replace " " with a tab, but that just creates a bunch of tabs, and I only need one.

Is there a way to do this?

Thanks!

2007-03-20 05:57:43 · 3 answers · asked by Wes Ide 2

i really need to know how to efficiently use it for school and also making my own wallpaper

2007-03-20 05:55:01 · 5 answers · asked by Anonymous

www.myspace.com/rolandkornelsen
How can I put a nice background on there? I would like as much as possible to get a way with all those ads and Have a nice background. Maybe a color or a picture. How do i do that? please explain in detail.

thanks

2007-03-20 05:53:39 · 2 answers · asked by rolandtroy 1

I know that when someone puts the code in the "about me" box, it appears on the right, how do you make things appear on the left?

2007-03-20 05:46:42 · 5 answers · asked by hotbunz222 1

2007-03-20 05:39:16 · 4 answers · asked by the man the myth the answerer 5

Is their a specific html code to do this???

2007-03-20 05:37:01 · 3 answers · asked by Anonymous

2007-03-20 05:26:39 · 3 answers · asked by Anonymous

there's an error in this code... can you help me repair it?!


#include
#include
#include
#include

void initval();

int chars[255];

int main()
{
FILE *file_r;
int ferr = 0, i;
char filename[50];
while (ferr == 0)
{
system("cls");
printf("Enter file name: ");
gets(filename);
file_r = fopen(filename, "r");
if (file_r == 0)
{
printf("Error! File does not exist!");
getch();
}
else
{
ferr = 1;
}
}
char *r;
char c, ctr = 0;

while ((c = getc(file_r)) != EOF)
{
ctr++;
}

fclose(file_r);
file_r = fopen(filename, "r");

char string[ctr];

i = -1;
while ((c = getc(file_r)) != EOF)
{
i++;
string[i] = c;
}

printf("\n%s", string);

printf("\n\n%s\n\n", strrev(string));

//tig-ihap

for (i = 0; i < strlen(string); i++)
{
chars[string[i]]++;
}

for (i = 0; i < 256; i++)
{
if (chars[i] != 0)
{
printf("%c = %d\n", i, chars[i]);
}
}

getch();

fclose(file_r);
return 0;
}

void initval()
{
int i;
for (i = 0; i < 256; i++)
{
chars[i] = 0;
}
}

2007-03-20 05:20:09 · 5 answers · asked by Pintoy 2

I Want to be a game developer and i want to know what i need and i want to start on a mac. im gonna try and start c++ first then go to maya cause my friend said he can get maya 8 for me and what schools are best for game development because im in 10th grade and i want to start early Thanx

2007-03-20 05:16:24 · 2 answers · asked by moondoggy 3

I know it might seem a silly question..

What exactly are Data warehouse and Data mart?

What's the differense between them?

And what's the purpose of each one?

And also how does each one of them work?

2007-03-20 05:08:04 · 1 answers · asked by omar h 1

2007-03-20 04:53:54 · 2 answers · asked by sakura_fujin 2

fedest.com, questions and answers