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 willrae

  1. willrae

    ActiveX not working over LAN

    Hi Craftor. Unfortunately I've forgotten. It was so long ago. Now my ActiveXs work fine on IE. It's ActiveX Documents that are concerning me now.
  2. willrae

    Printer Object Problem

    Should be If partpage = 0 And i - 1 <> 0 Might enable you to understand it.
  3. willrae

    Printer Object Problem

    This line : If partpage = 0 And Printer.Page <> 1 should be If partpage = 0 And i <> NoLabelsPerPage (I think) It's still being debugged, but this problem is preventing me do it.
  4. willrae

    Printer Object Problem

    I am using the Printer.Page in my code. The problem is it is keeping it's value between runs! Here is the code. You can see the use of Page to check whether it's the first page or not. I run this code, stop the application, and run it from the IDE, and I find Page has kept it's value...
  5. willrae

    ActiveX not working over LAN

    I have developed an ActiveX control and made an internet package (CAB), which generated an HTML file with the object referenced in it and also a CAB file and a support folder. I used Package Wizard from VB6. It works on the development machine, but wen the HTML file is opened over a LAN, the...
  6. willrae

    HTML

    Does anyone an industry repected provider of qualifications for HTML?
  7. willrae

    Treeview Flickering

    You could use Version 5 controls, as a last resort. But wait as someone might know.
  8. willrae

    Using the Communications control

    Hello I am about to embark on adding barcode scanning capabilites to my app. I need to use the Comm. control for this as the device connects to the serial port. However the sales rep. said there was no driver disk with the scanner. (But he was a lamer...I mean &quot;technically...
  9. willrae

    Why can't I bind the Scripting obje

    Thanks a million.
  10. willrae

    Why can't I bind the Scripting obje

    Why can't I bind the Scripting object early? I can't seem to find the reference for it! What COM server is it?! Private Sub Form_Load() Const ForReading = 1 Set fs = CreateObject(&quot;Scripting.FileSystemObject&quot;) Set ts = fs.OpenTextFile(&quot;c:\testfile.txt&quot...
  11. willrae

    CreateObject vs New

    Thanks Mike, I'm even more aware of the penalties involved in Late Binding now.
  12. willrae

    Component Binding

    I've been asked to explain what Component Binding is. Anyone?
  13. willrae

    VB6

    Thank you for the help Adam. An object created with New must be referenced. And this is early binding. Using a general object is late binding. OK.
  14. willrae

    CreateObject vs New

    Thank you.
  15. willrae

    VB6

    Anyone know the difference between CreateObject and using New to create an object?

Part and Inventory Search

Back
Top