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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kirk2364

    breaking out of a "select case"

    Thanks so much for your help. I'll give it a try. I guess the other way to do it is to use an "else" and put the "end if" right at the bottom of the case logic. Thanks again!
  2. kirk2364

    breaking out of a "select case"

    I don't think I have clearly defined the issue. There is logic inside the case argument, but I do not want to complete the logic. I need to break early. Maybe this "diagram" can help: select case varName case "a" if blah blah blah then break out of the...
  3. kirk2364

    breaking out of a "select case"

    I have extensive logic in each case of a case statement. I need to, when one if statement resolves to true, break out of the entire case statement. JavaScript has a "break;" but what's the equivalent in VBScript?
  4. kirk2364

    Identifying new browser windows

    Is there a way within Javascript to ensure that the end-user is limited to one active window. Can we detect if a user has opened a new window, and prompt/restrict them from doing so?
  5. kirk2364

    Deleting Cookies

    Thanks! I'm going to give it a try today.
  6. kirk2364

    Deleting Cookies

    I want to delete a cookie that I have dropped to the client's computer. How can I do this programmatically with VBScript?
  7. kirk2364

    ISAPI error 1236

    I am having issues with my application server. The resources are being mysteriously eaten up. Are there specific log files generated that I can access to determine what is going on? Nothing comes up in the event viewer. When I shut down the web server (IIS 5.0) the resources free themselves...
  8. kirk2364

    Casting "" as an integer

    smart. Thanks!
  9. kirk2364

    Casting "" as an integer

    So I need to explicitly set the variable to 0? if varName = "" then varName = 0 end if There's no easier way to do this?
  10. kirk2364

    Casting "" as an integer

    What exactly happens when I caste a null character as an integer (i.e. CInt("")). When assigning the result to a variable, is the variable just populated with 0, or with a null character or what?

Part and Inventory Search

Back
Top