No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
You will need to run your SQL in a loop: [CODE]For i = 0 to 50 i = i +1[/CODE] If you are using alpha you will need to run a second loop to include your alpha to your (i)[CODE] For a = 1 to 26 'determine the alpha by …
Here is a thought that is a little dirty but may work for you. Before reading the text file create a temp text file. when you start reading your file write the line into the temp file then delete it from the original text file. when you are finished reading …
Hello, Perhaps try a string Comparison to see if the values are the same, and I am not sure what the brackets before your Back case and after your Next case are for. Also if you are moving to a different page if the passwords match you might want to …
Hello, I need to write a query for MySQL in vbscript that is just not coming to me. I have written it in vbscript with two SQL statements then did a date comparison in vbscript but it just grinds the server to a halt. What I need to do is …
With your overview page have a sql statement that creates the links. To do this have one of your columns in the database table reference the title of the article. Then when calling the title also request the primary key from the database for that article. Create a do until …
Hello, I am sending a string created in vbScript via CDO. My scripting is working but the whole string is not showing up in the receiving email. My code was on the bulky side with bordercolor and bgcolor in the tables cells, removing what was not needed for html in …
Here is a link for a very simple tree view: [url]http://www.htmlforums.com/html-xhtml/t-how-do-i-make-an-expandable-list-43732.html[/url] It can be modified to allow for multiple tree views as shown in this example. [code] <script type="text/javascript"> function toggleBox(id){ if (document.getElementById(id).style.display = = "") { show = "none"; } else { show = ""; } document.getElementById(id).style.display = show; …
The End.
closetosane