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

Programming & Design - February 2007

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

i import a picture and im wondering how i can make it move!!!!!

2007-02-26 12:39:04 · 4 answers · asked by Anonymous

I'm not trying to be a black-hat hacker or a cracker. I'm an electrical engineering major at the university of washington and one of my prerequisite courses was computer programming (java). I just got really interested in the whole thing and basically want to become a computer geek :). I also took introductory classes in html and C++ in high school (like 4 years ago), which other languages should I look in to?

2007-02-26 12:23:33 · 8 answers · asked by student98133 1

i'm not sure what happened but java seems to have stopped working. i've tryed to download updates and things but nothing happens. PLEASE HELP!!! links would be appreciated.

2007-02-26 12:21:04 · 3 answers · asked by Anonymous

Hi - I found out that Plesk turns off php error reporting by default and that to turn in on I have to modify "/etc/php.ini" .
I downloaded 'putty' and SSH-ed as 'su' but permissions are denied when I type /etc/php.ini.
I called godaddy and was told that they are having no problem doing it on their end and just to make sure that I login as root (which I think "su" is, correct?) - Of course, since virtual dedicated server come with no support, I am stuck in the dark...
Please help!
MANY THANKS :-)

2007-02-26 12:20:28 · 2 answers · asked by plasticy 1

like video game creating.

2007-02-26 12:17:57 · 3 answers · asked by Kisne_Rise 2

I want to filter using a code number, but still copy over all the data in the selected row to another worksheet. Is this possible, how can I accomplish this.

2007-02-26 10:46:24 · 3 answers · asked by John S 1

I created a design for my website, but when I uploaded the image it does not display.

I've checked my code thru a validator, as well as double checked thru friends who know HTML and no code is wrong.

The image is corrupt, at least, that's what a message says when we try to display it. (right clicked)

Is there a way to fix the image? I would really rather not re-create it. I'll never get it 100% the same.

2007-02-26 10:38:39 · 2 answers · asked by Melissa B 3

I have an access form and I wanted to do the following:
I want for the user to have 3 options on the form.
If the vendor already exists in the vendor table that is the subform, the user will continue normally inputing the data.
If the vendor doesn't exist, the message will pop up with two options, vbYesNo. If the user choses yes, then he will continue inputing the data as normal (Now, I got it to work the subform will update the vendor tbl). However if the user choses No, then I want to undo his entry and take the cursor back to the previous field so they can start inputing the right data. (this part doesn't work for me, the code doesn't undo when the user click the No option)
your help is appreciated.

2007-02-26 10:34:44 · 1 answers · asked by Anonymous

I get photos on Word Perfect and I would like to open as JPG program, how can i do this? So I can see them in my Picture Folder. Please I need your help.

2007-02-26 10:32:36 · 5 answers · asked by kk2olita 1

I have to use it for a program in java for my AP Computer Science class. Tell me everything you may now about this subject please!!

2007-02-26 10:18:38 · 1 answers · asked by xxtrakmamixx 1

2007-02-26 10:13:01 · 4 answers · asked by Anonymous

If yes why & if no why?

2007-02-26 10:08:41 · 7 answers · asked by shaam 1

HTML browser URL ISP hypertext WWW WYSIWYG tags attribute
Please define this, it baffles me. WYSIWYG is What you see is what you get. please help!

2007-02-26 09:57:57 · 3 answers · asked by Anonymous

I have a form with two DataGridView controls, each which has a row of 3 Button controls underneath.

Could someone please help me with making it so that these controls will resize automatically along with the form, without overlapping each other?

I've been experimenting with the Anchor and Dock properties, but so far I haven't been able to make it so that when the form is maximized that the controls do not overlap. How do I solve this problem, do I need to add code for the Resize event to set the controls' dimensions on the fly? Or is there some better way?

2007-02-26 09:49:29 · 3 answers · asked by Anonymous

I would like to try doing computer game programming in C++ as its the most used laguage for this job but don't know where to start I have a 500 page long book on C++ programming but is there any websites on C++ Computer Games Programming that has a step by step guide to make just a sample little game?
Links please

2007-02-26 09:44:32 · 6 answers · asked by sbraidley 3

Hi Guys,

Do the two of these do essentially the same thing (I know Pro 8 has more features)? I mean, do they both publish flash websites? I would like to know before I make a purchase. Thank you!

2007-02-26 09:30:21 · 2 answers · asked by Daniel D 1

What am i opening file: CAGF47YZ

2007-02-26 09:18:17 · 2 answers · asked by masoud h 1

How do i modify using gets?

PROGRAM DESCRIPTION:

Write a program that will find the lowest, highest, and average score for a set of test scores. The test scores may include fractional values (i.e. 99.5 is possible).

The program then asks the user for a test score, and continues to do so until he/she types only in response to the prompt. At this point, the program prints the information listed below and quits
This is the part where i get confused....so I had to use scanf...Please help to change to gets...
This is what I got so far...

#include
#include
#include
#include
main()
{
float score;
float average;
float x;
float max = 0;
float min = 1000; /*just in case there is extra credit*/
float total = 0;
float sum;
int i = 0;


{

printf ("***********************************\n");
printf ("*****Test Score Statisics *****\n");
printf ("***********************************\n");

printf("How many test scores? "); /*I couldn't stop the loop with gets. this is why I am asking.*/
scanf ("%f", &total); /* I don't know how to use gets*/

for( i = 0; i < total; i = i + 1 )
{
printf("Please Enter test Score %d: ", i+1);
scanf ("%f", &score); /*strlen and gets were confusing to me*/
/*It was hard for me to find references for this*/


if( score > max ) { /* Find Max Score*/
max = score;
}else{
if (score < min) { /* Find Min Score*/
min = score;
}
}
sum = score + sum; /* Find Sum Score*/
}

average = sum / i; /* Find Average Score*/

printf( "\n\nThe average score is %.1f\n", average);
printf( "%d Test Scores\n", i );
printf( "Maximun Test Score = %.1f\n", max);
printf( "Minimum Test Score = %.1f\n", min);

}
system("PAUSE");
return;
}

2007-02-26 09:17:51 · 2 answers · asked by importchef 2

I made my own website, I just want to know how to make it on an add on google, please help me!!

2007-02-26 09:16:50 · 4 answers · asked by Anonymous

i play pogo.com games, all of a sudden, my applet is not working, i cannot play pogo games anymore, what's that all about, any computer genius here that can help?

2007-02-26 09:14:43 · 2 answers · asked by davionmw 4

i need help badly please help me

2007-02-26 08:55:17 · 5 answers · asked by double-t 1

everytime when i log into stickam.com, i get this error message, and i cant log in...whatssup?

2007-02-26 08:53:58 · 1 answers · asked by Nick F 2

On my Windows XP, the windows logo on my start button looks messed up, like its been resized from a larger or smaller picture. The edges look all un-antialiased and pixelated. What could be wrong?

2007-02-26 08:52:49 · 3 answers · asked by Jason L 1

A person on Y!Answers said I needed to do this, but I don't know what he's talking about or how to do it... can someone give me examples?

2007-02-26 08:39:59 · 2 answers · asked by Am 4

2007-02-26 08:35:34 · 1 answers · asked by huzaifai 1

I'm trying to put my own message me and add me buttons on my mypsace page and I used


that as a code but it wont show up. Am I using the wrong code??

2007-02-26 08:23:21 · 2 answers · asked by Keyleigh 2

Thanks!

2007-02-26 08:03:01 · 4 answers · asked by Léon 1

Im interested in studying IT after highschool and i want to start learning the basics. Building a computer is the right project for me!!! I already have a hard drive and the housing! What else do I need to finish this project!!! Thanks.

2007-02-26 07:56:13 · 6 answers · asked by the_kewl_chick 1

MAKE MY OWN LAYOUT USING PHOTOBUCKET PICTURES FOR MYSPACE!!
WHERE CAN I GO DO THAT?

2007-02-26 07:54:36 · 3 answers · asked by [.:KiMBEE:.] 1

fedest.com, questions and answers