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 Mike Lewis 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. Scanlan

    Session Variable Dilemma

    A recursive form-- I never would have thought of that. I like that idea a lot, since there's not form data to transmit. Very clever. I am going to have to think on how best to handle the flag. I am a little unsure why you recommend using the local variable. Why wouldn't I just be able to use...
  2. Scanlan

    Session Variable Dilemma

    Hello all, Hoping you can give me some opinions on how best to handle some session variables. I don't want to be too long-winded about this, so I am going to skip the long drawn out explanation of what I am trying to do and just boil this down to my dilemma. Say I have a web application that...
  3. Scanlan

    Can I create hotkeys?

    Excellent, thank you. Taking out the lines you said not only got rid of the errors, it also made the code work. Pressing 1 takes me to google, 2 to yahoo. This is exactly what I want. I will just adapt it for my application. Thank you so much, Ann
  4. Scanlan

    Can I create hotkeys?

    If I could get this to work, I think this would be what I want. The key values show up really nice-- that was a good idea. I changed the values in your code to 49 and 50, but I just get error messages, no matter what key I press. Not sure what the problem is. Also, could you please explain what...
  5. Scanlan

    Can I create hotkeys?

    Yes, I can definitely do it with just regular keys. I would appreciate some help getting started. Thanks, Ann
  6. Scanlan

    Can I create hotkeys?

    Hello all. I have a little Internet application (ASP pages, SQL database, that sort of thing). After a user logs in, they are taken to a welcome page from which they can do any number of things by clicking on links for different ASP pages. I got a user request recently and I have no idea if it...
  7. Scanlan

    Can I create hot keys?

    Hello all. I have a little Internet application (ASP pages, SQL database, that sort of thing). After a user logs in, they are taken to a welcome page from which they can do any number of things by clicking on links for different ASP pages. I got a user request recently and I have no idea if it...
  8. Scanlan

    Error when Calling MovePrevious

    Thank you so much. That's definitely gotten me in the right direction. Now it looks like I just have some logic issues to work out. Thanks, Ann
  9. Scanlan

    Error when Calling MovePrevious

    Hello all, I am getting the following error when calling MovePrevious: ADODB.Recordset (0x800A0C93) Operation is not allowed in this context. What I'm trying to do is fill in some variables: CurrentContact LastContact NextContact I have a Recordset called Contact that I am trying to move...
  10. Scanlan

    Automating with the spell checker

    Thank you. I love the way everyone is so willing to help out here. I will try out your solution when I have a chance and let you know how it worked. I very much appreciate the help. Thanks, Ann
  11. Scanlan

    ASP Beginner

    It may sound cheesy, but I got started with ASP for Dummies. It was a perfect, quick introduction. It let me get the basics down and then when it was time to do my actual coding, I used some of the web sites listed above to fill in the small gaps in my knowledge. There is no substitute for...
  12. Scanlan

    Automating with the spell checker

    Got something that works in VBScript now. Thanks for the help. Ann app.Selection.TypeText testvar app.Selection.TypeParagraph WITH app .Documents.Add .ActiveDocument.BookMarks.Add "beginning", .Selection.Range .Selection.TypeText testvar...
  13. Scanlan

    Converting Word Macro into VBScript

    Brilliant. That worked perfectly. Thanks so much. Ann
  14. Scanlan

    Creating Excel Documents with ASP

    Microsoft does not support automation on the server side in a client-server environment. They claim it was never designed to work that way and that you can hang things up if you end up doing something that would require interaction. I managed to get server-side automation to work once and then...
  15. Scanlan

    Converting Word Macro into VBScript

    I've gotten the := problem solved, but I am still hung up on the aWord part. For some reason, aWord is not working at all, even though it works just fine when I paste it into a macro in Word and run it from there. I've tried testing it several different ways and still no luck. (Yet everything...
  16. Scanlan

    Automating with the spell checker

    Thanks, the commas work, but it seems not to like the Next aWord direction. I can comment out the aWord part and the script runs, but it doesn't do the spell checking. Any ideas? Thanks, Ann
  17. Scanlan

    Converting Word Macro into VBScript

    Hi all, I have a Word macro that works quite nicely when run in Word. The catch is that I want to write into a VBScript that is run from the browser. This script opens Word, writes some stuff in it and then, I want it to run my little macro. I really want to write the macro in the script...
  18. Scanlan

    Automating with the spell checker

    OK, I've run into a slight wrinkle. Can you please help me convert this into VBScript to run in the browser? The := construction chokes in the browser. Thanks, Ann
  19. Scanlan

    Automating with the spell checker

    Thanks, that worked like a charm.
  20. Scanlan

    Automating with the spell checker

    Hi all, I need to make a macro that will basically run the spell checker and then change the font of any mis-spelled words so the words are red. I want to do this without any user intervention, just run the macro and it magically turns the mis-spelled words to red. I tried playing around with...

Part and Inventory Search

Back
Top