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

i want to draw a croquis so people can get to my house for a party and not get lost!!! i really need it!!!! do you know any program or a web page or something i cas use??

2007-03-24 18:03:14 · 1 answers · asked by takito23 1

Can you use javascript to change the volume of embedded music?

the music would be:



If I want the volume to be changed to another value, say 100, once a button or link is clicked, how should i do this? The following is not working for me.

function change_volume() {
document.getElementById("music").volume = "100";
}

are there any ways to do this? Please give me an simple answer if possible^^"~

2007-03-24 17:59:26 · 2 answers · asked by cherri_pwincesu 1

I have a website that I made and I couldn't figure out how to change the size of the actual page. I need help if there is a program that can do this or a section of code. I want it to run at 800x600 resolution and a separate one at 480x272 resoltion. Somebody please help me.

2007-03-24 17:58:02 · 3 answers · asked by Matt 2

2007-03-24 17:47:25 · 2 answers · asked by DBznut 4

I am in a computing class in my school that allowed us to learn what ever we wanted, so long as we were learning at a decent pace and the instructer knew what we were doing.
Anyways, I chose to teach myself Visual C# and I learned alot of the basics in coding, as well as creating forms.

After 9 weeks though we have to submit a project review thing that shows what we have done, and I want to code something that can demonstrate what I have learned, but cant come up with any cool ideas.

Anyone know of something I could do, even if its abit harder if you know of a tutorial or something that makes a cool program, or even a full project already done that allows you to edit it and customize it ect.

2007-03-24 17:13:54 · 3 answers · asked by Amnam 2

Everytime i log on,i get a message on my screen saying "The YahooMusicEngine.exe.Ordinal 2250 could not be located in the dynamic link library Px.dll.

Does anyone know what this is and how i can remove that message? :)

2007-03-24 17:13:28 · 1 answers · asked by Anonymous

i have this picture,
logo design and it is in HTML form, and i truthfully want 2 add it as a picture on myspace.. so how would i do tht?

2007-03-24 16:58:03 · 3 answers · asked by JustWannaAskQuestions 1

It's probably a stupid question, but how do I find out the complete path of a music file on my computer in order to embed it into my site? The file is on my computer, I want to embed it onto my site so that it plays when the page is loaded. What steps do I need to take? if it's on my pc, what do i type into this line?


Thanks ahead of time for any input !

2007-03-24 16:57:34 · 3 answers · asked by Carlitos 1

free help please! Everyone wants to charge me $1200.00 or more. I want to do it myself. I have been working on it for 3 months, but no ranking.

2007-03-24 16:49:23 · 5 answers · asked by micmac 2

i am working on just a side project. nothing to do with class so you arent doing my homework for me. i just need help. i am using getline(cin, phone) to get an account/phone number. i would like to make it to where if the string length is not 10 characters, then it prompts the user to re-enter or press q to quit. i know how to do the else part with:
else (phone=="q")
{cout<<" blah blah blah";}

i just am not sure how i should go about doing this part:

cout<<"Enter 10-digit telephone/rental account # with no hyphens, or scan member rental card: ";
cin>>phone;
cout< if (phone!= ..................this is where i dont know what direction to go....
(stringlength(phone)!=10)) ????

just not too sure as u can prpbably tell... i am only in my 3rd/4th week of c++ so i only know very basic crap. i am just doing this on the side to try and stay one of the more proficient students.

anyone who comes to C++ in yahoo answers is probably familiar with me by now. hahahahaha

2007-03-24 16:48:38 · 5 answers · asked by eyefixguitars 1

Sorry for the spaghetti code, but the formatting doesn't transfer over from my word processor. Anyway, basically what I need to do is to get rid of coin2 so I can possibly make a new coin2 in the future. Is this possible even? If so how do I delete the object? (I'm guessing garbage collection, but I don't know how to do that.) Thanks.
class coin {

double money = 10;
String examine = "Lovely money!";

void displayMoney() {
System.out.println(money);
}


public static void main(String[] arguments) {
coin coin = new coin();

coin coin2 = new coin();

coin2.money = 5;

coin.money = coin.money + coin2.money;

/*This is where (I believe) some garbage collection should be done to get rid of my object (coin2). If I don't delete coin2 before I make a second coin2 object, the compiler spits out an error.*/

coin.displayMoney();
coin coin2 = new coin();
coin2.displayMoney();
}
}

2007-03-24 16:28:45 · 3 answers · asked by Invader Z 1

i don't know what code to write to make all characters typed into a text box captured by the keyPress event ,and replace them by an asterisk .

i'm using visual basic
help much appreciated!

2007-03-24 16:14:55 · 2 answers · asked by shama 1

do you all know any site where i can make animations and save them to a usb drive
if so please tell me

thanks in advance

2007-03-24 15:33:17 · 2 answers · asked by Brandon Rogers 2

I am about to take some classes for my MCSD .Net. To learn web-based apps. using microsoft .net famework and so on. But I am also interested in becoming a Database Administrator. I want to have a career that I can become a independent contractor or consultant. I am not sure what route I should go. The job market seems crazy and not must grace. All employers expect you to know every program language know to man. Can anybody give me some insight to these careers and what one is better.

Thanks

2007-03-24 15:24:16 · 4 answers · asked by Anonymous

This is the script.
I am getting these errors:
swap.sh: line 10: syntax error near unexpected token `then'
swap.sh: line 10: `then'

#first script
#script name is swap.sh
#check if correct number of arguments


if [ $# != 2 ]
then
echo "Error: wrong amount of arguments."
elif[ -f $1 ]||[ -f $2 ]
then
echo "Either the file" $1 "or the file" $2 "do not exist."
elif[ -r $1 ]||[ -r $2 ]
then
echo "Either the file" $1 "or the file" $2 "are not readable."
elif [ -w $1 ]||[ -w $2 ]
then
echo "Either the file" $1 "or the file" $2 "are not writable."
else
mv $1 temp1
mv $2 temp2
mv temp1 $2
mv temp2 $1
rm temp1
rm temp2
echo "The file" $1 "and the file" $2 "where succesfully swapped."
fi
exit

2007-03-24 14:57:57 · 1 answers · asked by adrenalineguy87 2

On my first page I have a form. it will ask for 3 pcs, of info. on page 2 I set 3 sessions from the form on page 1. I try and use the sessions on page 3 and I keep getting this error

Notice: Undefined variable: _session in C:\Program Files\Abyss Web Server\htdocs\webcards\build3.php on line 17

I set the sessions like this on page 2.

$_session['sendto'] = $sendto;

Can any one tell me what I'm doing wrong

Thanks

Joe

2007-03-24 14:44:56 · 3 answers · asked by bigjoe11a 2

I have some music that I want to display on my web site. How can I get it so that it continues to play even when the page is changed. Is it possible to do this without frames and if so how would it work.

2007-03-24 14:42:27 · 1 answers · asked by antidisestablishmentarianism 2

Does anyway happen to know how to get a code for an Automatic Paypal system?My friend is fixing her website and she wants to do this!
Please help!

2007-03-24 14:16:14 · 2 answers · asked by . 1

Can you please click on the link below and go to that webpage it will really help me!! Thanks!

http://www.messblack.com/index.php?page=getpro&mb_id=745705245699

2007-03-24 14:03:29 · 2 answers · asked by Anonymous

i'm working on my myspace graphics website and wanted to add a banner. so i needed to find this out so i can make one. thanks for the help!
xoxo heather

2007-03-24 13:59:10 · 1 answers · asked by Twisted Vixen 4

from a video that you've downloaded off of the internet

2007-03-24 13:57:25 · 1 answers · asked by ? 1

about linked-list and vector.

2007-03-24 12:57:04 · 1 answers · asked by nem24 1

I know this isn't difficult. I'm placing a context menu over buttons in the interface. I have the context menu set up and think I am calling the right event thru the code but it isn't working.

Anyone have a good site to get more info on the context menu implementation? Or can you explain it to me?

2007-03-24 12:32:16 · 2 answers · asked by Rabbit 5

Can anyone help me with this code? I get the following error:

"
SQL Error : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3

SELECT username, email, user_viewemail, user_lang FROM dir_editors WHERE id =

Line : 213
File : usercp_email.php"

I can't figure out where this error is my code, all I've changed in the code is the location of the mysql table. I can't post the fill code as it's too long, any ideas would be more than welcome..

2007-03-24 12:32:06 · 4 answers · asked by orchie1 2

and what the advantages of having the knowledge are

thanks

2007-03-24 11:26:01 · 13 answers · asked by Anonymous

if series of numbers are entered by the user(don't know how many), How do I use a loop to figure out the average,largest,and smalles number?

I know how to do it with if and else, but I have no idea how to do it without knowing how many numbers user enters.

Thanks ahead of time for any help.

2007-03-24 11:17:32 · 2 answers · asked by jkim972 3

fedest.com, questions and answers