Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by wg26

  1. wg26

    Page Update!!!

    Hi Everyone, I have a problem when I am trying to update the a page which is created based on the items user selected from previous page. and in this new page(second page), user can change the quantity of the items they selected, and press the update button. After the update button is clicked...
  2. wg26

    why isn't it working?

    Hi Everyone, I just started learning ASP and wrote my first .asp file in FrontPage...But When I tried to do the preview, the part which was written by using ASP did not show and I did not have either compile error or run time error. I could not figure out why. Can anyone kindly take a look at...
  3. wg26

    Update the Page with VBScript

    Hi, I create a web page with list of items, the user can select the items and click on "continue" button and go to the next page. In the new page, the items user selected will be listed. I have a update button in the new page, which user can use to cancel the items they selected. All...
  4. wg26

    how to pass information between two htm file by using VBScript

    I have just figured out what is wrong with my code. I should use eachItem(i) instead of eachItem(i).value. It is working now. Anyway, thank you very much for you help
  5. wg26

    how to pass information between two htm file by using VBScript

    Thank you so much, dilettante, for you help. I would give you another star if I could. Most parts of my script is working now. The only problem I have now is that in my second page, I used the following code to get the string, which is pass over by using code: document.location.href =...
  6. wg26

    how to pass information between two htm file by using VBScript

    Thanks PH., I have tried your way but still get the same error message, I think there is something wrong about syntax of that line of code...I am digging into it now and hopefully I can find something. Thanks for your help. Really appreciate it.
  7. wg26

    how to pass information between two htm file by using VBScript

    Hi Dilettante, Thanks for your help. Can you take a look the code and see what is wrong? I kept getting error message at line: document.location.href ="MyPaymentPage.htm?theName(index) =" &Name(index) ";theValue(index) =" &Value(index). The error message is: expected end of...
  8. wg26

    How do I manipulate my current document in Word with VBS?

    try this and see if it works Dim worddoc worddoc = createobject("word.basic") worddoc.appshow worddoc.filenew worddoc.Insert "Hello World"
  9. wg26

    how to pass information between two htm file by using VBScript

    Hi Everyone, I don't know if my question should be posted here. But I thought I give it a try. I am trying to use VBScript to develop a webpage (this is a just a way for me to learn VBScript and I never develop any webpage before, therefore, I thought I may learn them all together). My...
  10. wg26

    The options of transfer database between two database

    Hi Everyone: I have two exact the same databases in the same server with different names, Now I want to transfer one table's data from one database to the other. I know I can use dts to do the data transfer. But I want to know what other options I have to transfer these data? Can it be done by...
  11. wg26

    How to find if Agent is runing

    Thanks guys for your help!
  12. wg26

    How to find if Agent is runing

    Hi Everyone: I am adding a job to MSDE. But as I understand, in order for the job to run, agent must be started and running. Since MSDE does not have EM, how can I tell if the agent is running? if it is not, how to use T_SQL to start the agent? Can anyone kindly give me some help? Thanks alot
  13. wg26

    Database Update

    Thanks Sunila7. I have tried to change the connection to my database to Single User Mode...but I could not change it by using alter database command when there are multi connections currently connecting to the database. Can anyone please give me more suggestions? Thanks...
  14. wg26

    Database Update

    Thank you Kudithipudi for you reply... I have already checked that option. I think it does not fit my situation. "-m" switch is used for when you just start your database. But my situation is that my database is already started and running in multi_user mode.
  15. wg26

    Database Update

    Hi Everyone: I need to modify my database, such as adding some columns and moving some data among tables...I have written T_sql code to do this...my question is that when I am running my sql code, I need to stop all current connections to my database and stop user from reading from or writing...

Part and Inventory Search

Back
Top