Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~480 People Reached

5 Posted Topics

Member Avatar for jrlynch1

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 …

Member Avatar for kc130
0
113
Member Avatar for BobbieJean

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 …

Member Avatar for BobbieJean
0
101
Member Avatar for BobbieJean

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 …

Member Avatar for BobbieJean
0
102
Member Avatar for jrlynch1

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 …

0
76
Member Avatar for jrlynch1

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 …

Member Avatar for jrlynch1
0
88

The End.