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 wOOdy-Soft 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 MiniMe2

  1. MiniMe2

    How Can I Assign An HTML Tag to a Visual Basic 6 Constant?

    Thanks for the feedback! My problem was finding VB's special character, which I was finally able to do. Though I eventually may have to run the HTML code through a filter before processing it, I needed to process the HTML code as it stands written. Also, I cannot change the original HTML...
  2. MiniMe2

    How Can I Assign An HTML Tag to a VB Constant?

    It didn't work under MS VB6, SP5. My attempt to compile Const c_strDoubleQuote = Chr(34) gave me the compiler error that I described in my previous post. What's your configuration?
  3. MiniMe2

    How Can I Assign An HTML Tag to a VB Constant?

    Hi guys, Just to let you know, I couldn't use the single quote or "tic" because I am actually parsing an HTML file that I could not change. Otherwise, the single quote solution would have been another solution to my problem. Thanks again for putting those thinking caps on!
  4. MiniMe2

    How Can I Assign An HTML Tag to a VB Constant?

    Wow, guys! What prompt feedback. Thanks so much. The Chr(34) solution made perfect sense to me. However, when I tried it I received the following error: "Constant expression required." The problem lies in attempting to initialize a constant with a the return value of a function...
  5. MiniMe2

    How Can I Assign An HTML Tag to a Visual Basic 6 Constant?

    I wrote the the following line of code: Const c_Image1 = &quot;<img src=&quot;http://xyz.com/image1.gif&quot; width=8 height=8 border=0>&quot; NOTE: the &quot;;&quot; following the .gif string was placed by tek-tips message software, not by me. When I attempted to compile the code, I received...
  6. MiniMe2

    How Can I Assign An HTML Tag to a VB Constant?

    I wrote the the following line of code: Const c_Image1 = &quot;<img src=&quot;http://xyz.com/image1.gif&quot; width=8 height=8 border=0>&quot; NOTE: the &quot;;&quot; following the .gif string was placed by tek-tips message software, not by me. When I attempted to compile the code, I received...
  7. MiniMe2

    Can my VB App differentiate between input from a barcode vs. keybd?

    Thanks so much for all of your replies! I will try adding the extra character. Best Regards, MiniMe2
  8. MiniMe2

    Can my VB App differentiate between input from a barcode vs. keybd?

    Thanks Jim! I'm afraid that this is what I expected.
  9. MiniMe2

    Can my VB App differentiate between input from a barcode vs. keybd?

    I'm building a Visual Basic application that will use both the keyboard and a barcode scanner for user input. Is there a way that my application can discern which input device was used? I would like for the application to know which input device was used after each entry. Thanks, MiniMe2','I''m...
  10. MiniMe2

    Can my VB App differentiate between input from a barcode vs. keybd?

    I'm building a Visual Basic application that will use both the keyboard and a barcode scanner for user input. Is there a way that my application can discern which input device was used? I would like for the application to know which input device was used after each entry. Thanks, MiniMe2
  11. MiniMe2

    Can my VB App differentiate between input from a barcode vs. keybd?

    I'm building a Visual Basic application that will use both the keyboard and a barcode scanner for user input. Is there a way that my application can discern which input device was used? I would like for the application to know which input device was used after each entry. Thanks, MiniMe2
  12. MiniMe2

    Hi, I am building a Visual Basic

    Hi, I am building a Visual Basic application that will use both the keyboard and a barcode scanner for user input. Is there a way that my application can discern which input device was used? I would like for the application to know which input device was used after each entry. Thanks, MiniMe2
  13. MiniMe2

    How do I save a gif file that is located in URL?

    Hi strongm, I went to the thread. Ok, you REALLY peaked my interest. I couldn't wait so I executed the code immediately. It worked like a charm! Thanks again for posting the thread. Best regards, MiniMe2
  14. MiniMe2

    How do I save a gif file that is located in URL?

    Hi strongm, Thanks for your response! I did a search and saw the reference to a function named URLDownloadToFile. Is this what you are referring to? I am in the feature planning stages and will try my luck with the coding in a couple of weeks. Best regards, MiniMe2
  15. MiniMe2

    How do I save a gif file that is located in URL?

    I have used Inet1.OpenURL in order to locate and view a gif file (i.e., http://path.my.gif). The only item displayed on the web page is an image (gif). I would like to programatically store that gif image on my local computer. How can I do this under VB 6? Thanks

Part and Inventory Search

Back
Top