No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Ok, I have 3 external pages I am loading in three locations on the page. So, I have the following in the head: [code]function allfunctions(){ clientSideInclude('center', 'http://127.0.0.1/cgi-bin/blosxom.cgi'); clientSideInclude('right', 'http://127.0.0.1/right.html'); clientSideInclude('left', 'http://127.0.0.1/left.html'); }[/code] Then, I load with: [code]<body onLoad="allfunctions();">[/code] The body contains some tables, and in each they look like: [code]<span …
Looks like the problem is your not re-declaring a value for the variable product. In the first instancec, you set the dialog window to the variable productString, and then parse it into the product variable. However, at the end of the loop when you prompt the user, you aren't assigning …
Hello, I think the best idea would be to create an endless loop, something like: while (1 == 1) { switch statement.... } Then, in the switch statement, set the condition for 'default' to be 'continue'. This way, anything other then 1-5 will pass to the default condition, essentially escaping …
Hello! I am working through some program to auto-print files to a post script printer via the LPR command. The entire program is running, going through directories, finding the files, then deleting the files. Before deleting the files, though, I added in a section to try and print the files …
Hello all! I'm working on setting up a program to go about some files in a directory, do with them what I need, then delete. So, I started with the unfamiliar part for me, as the rest I am sure will be easy as pie. I tried to just write …
The End.
jrlynch1