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

Programming & Design - January 2007

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

a friend has spyworn.win32 what the best way to remove it and is there a free way to do it ?

2007-01-06 10:22:41 · 1 answers · asked by silentdreamer6 2

learin the codes and the rules for VB is tough does anyone know a sit that specificly tells u and explains to u all the codes and rules of VB???How can i get a better understanding of how to do a project with VB

2007-01-06 10:08:41 · 4 answers · asked by HR 2

2007-01-06 09:20:12 · 5 answers · asked by Anonymous

Is there a profile tracker for myspace which actually shows the profile of the person who has visited your profile? I have tried a few of them. But in order for the ones i have tried to work they require the other people to subscribe to the same tracking service which is a load of pants!! anybody know where I can get a working one from?? Ta La

2007-01-06 09:19:07 · 7 answers · asked by michael.knight32@btinternet.com 1


I thought this is the code, but it does not work with myspace! Is there another way to input the code in myspace?

2007-01-06 07:49:44 · 3 answers · asked by jhn_grz 3

I don't know anything about it but I need to know how to do it or whatever so I can put my picture as my myspace LAYOUT. If you think you can help me, please IM me or something so I can tell you exactly what I need help with. All help will be greatly appreciated. Thanks in advance.

2007-01-06 07:32:32 · 6 answers · asked by Momma Jette 4

I did my background with this very cool brick but there's a white page for my profile on top of it. How can I change the white page to a different color like red? P.S. I don't know much about html so I'm copying & pasting codes I've seen online. I got the background, I just want the profile page be a different color.

2007-01-06 07:17:56 · 3 answers · asked by Ida 3

I have a PDF application form, and I want to know if i can fill this form if i do not have a PDF writer. I tried to copy the file and paste it on word but only the text apeared (and not the application table itself). Im thinking the only way to fill the application, if i dont have a PDF writer, is to print it and fill it using handwriting. Any ideas?

2007-01-06 07:16:18 · 5 answers · asked by Anonymous

i did this in start -run now there r many more drives in MY COMPUTER i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z in it pls tell how to reverse it

2007-01-06 07:10:22 · 2 answers · asked by kkumar 1

does anybody know the name of a programme which can modify eye color?
and a link to the programme would help a lot
thanks!

2007-01-06 06:10:44 · 2 answers · asked by Charlyssie 2

2007-01-06 06:08:34 · 6 answers · asked by minnie 2

can any one step by step process for registering at .tk
: first i went to www.dot.tk then it asks to fill domain name them then select whether free/priced free< again reaches where to fill domain name i am confused pls help me

2007-01-06 05:40:23 · 1 answers · asked by kkumar 1

This was my first php script tht i made myself. But I am still a novice on php and I just can't run the script on my computer offline. Can somebody help me.?

2007-01-06 05:09:52 · 7 answers · asked by Jose O 1

Where can you make a blog? which are the best websites?
tell me pleaseeeeeeeee.

2007-01-06 05:09:38 · 15 answers · asked by Anonymous

ok u know how if u make columns in microsoft word?
im tryign to make a pamphlet, so i ptu three columns in but how do i move to the other two to type my information?
so far i can only type i nthe first column---far left--and i can't get to the other two

2007-01-06 05:01:37 · 1 answers · asked by moooooooooooo 2

pls tell me entire proceedure.

2007-01-06 04:49:48 · 4 answers · asked by karan s 2

I wanted to know if anyone had codes to make tabs at the top of the page, and how to link the tables and other information to them. Please note that I am still somewhat beginner in HTML but am learning very quickly.

2007-01-06 04:42:30 · 3 answers · asked by happymom1981 3

2007-01-06 04:34:58 · 15 answers · asked by Samantha F 1

I was trying to clean up my computer and removed all of my file extensions.I had a backup on my registry cleaner but now I can't even access that.Can't even access registry editor.is there any hope?I know I am an Idiot thats why I need help.any help much appreciated..

Tony

2007-01-06 04:14:18 · 3 answers · asked by Tony H 2

2007-01-06 04:04:16 · 10 answers · asked by Anonymous

In C, how do you return multiple arguments from a function? I'm pretty sure it needs pointers... But I have no clue how!

Please go easy on the jargon, I'm just learning!

2007-01-06 02:46:33 · 8 answers · asked by sarciness 3

I need to make a pic i found on the web int oposter form what program can i use to get into a poster that i can just print

2007-01-06 02:43:23 · 1 answers · asked by ? 2

Whenever I try to change whether or not the file is read-only, the computer says "Access is Denied." I use Windows XP, if that helps.

2007-01-06 02:41:28 · 6 answers · asked by rokkon 3

//Prog to input a string & print each word along with the number of characters present in the string.

#include
#include
#include
#include
void main()
{
clrscr();
int i,l,k=0,l1;
char a[90],b[90];
cout< cout<<"Enter any string"< gets(a);
strcat(a," ");
l=strlen(a);
for(i=0;i {
if(a[i]!=' ')
{
b[k]=a[i];
k=k+1;
}
else
{
b[k]='\0';
cout< l1=strlen(b);
cout< k=0;
}
}
getch();
}
WHAT IS THE USE OF strcat(a," "); IN THIS PROG? what would have happend if it was not used? for which purpose is it used?

2007-01-06 02:20:53 · 3 answers · asked by priya . 1

what is the use of
strcpy(c," ");
strcat(c,a); in the program? why is it used? and what would have happened if it was not used?
plz help.

// Program to implement reversing the sentence
// ex an apple a day
// output : day a apple an

#include
#include
#include
#include
void main()
{
clrscr();
int l,l1,i,j,k=0;
char a[50],b[50],c[50];
cout<<"enter a sentence";
gets(a);
l=strlen(a);
strcpy(c," "); ////////////////
strcat(c,a); ///////////////
for(i=l-1;i>=0;i--)
{
if(a[i]!=' ')
{
b[k]=a[i];
k=k+1;
}
else {
b[k]='\0';
k=0;

l1=strlen(b);
for(j=l1-1;j>=0;j--)
{
cout< }
cout<<" ";
}
}
cout< cout<<"Program over.....press any key to continue";
getch();
}

i understood the program except the two lines marked there.
plz help.
just answer 3 questions--->
WHAT IS ITS USE?
WHY IS IT USED?
WHAT IF THAT WAS NOT USED?

2007-01-06 01:26:56 · 7 answers · asked by priya . 1

The information needs to go into a database that does not read a csv file.

2007-01-06 01:15:58 · 7 answers · asked by steffler2727 1

2007-01-06 00:29:46 · 3 answers · asked by lia 1

fedest.com, questions and answers