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. TomSwingruber

    Winsock UDP assign local IP address

    You were right the bind will work BUT there is a strange quirk to it. Probably not to you but sure is to me. The winsock bind method will not allow the winsock.bind {Port}, {IP address} format unless the NIC card is attached to an external device. But will allow the winsock.bind {Port} method...
  2. TomSwingruber

    Winsock UDP assign local IP address

    To the best of my knowledge the only part of the bind method allowed for UDP is >udpWinsock.Bind {PortNumber}< I think that >udpWinsock.Bind {PortNumber}, "192.168.1.20"< is only valid for TCP But then I have been wrong before. Thanks Tom
  3. TomSwingruber

    Winsock UDP assign local IP address

    If I have 2 NIC cards how do I assign a UDP Winsock control to a given local IP address?
  4. TomSwingruber

    detect file copy complete

    How can I tell the file copy is completed? The file being copied is an MS Acess data base. ------------------------------------ Public Function copy_db_to_thumb_ok() As Boolean On Error GoTo No_copy fso.CopyFile database_path_and_name, _ thumb_drive_letter &...
  5. TomSwingruber

    Abit VA-20 with Win98se

    I have tried what you suggest but still had flakey issues. Since I had other requirements I abondon using the VA-20 on board video and used the boards for a different app. The board is OK with Win 2000 so I think it is a matter of the Win98 drivers. This new app required dual monitors. I had 4...
  6. TomSwingruber

    Old Type - DC2120

    Ok That saves me looking through the shelves. Bye tom
  7. TomSwingruber

    Old Type - DC2120

    Just so happens I have a couple of tape decks that can read the DC2120 tapes. If there is some way to contact me I can get one to you. If you pay the shipping. Or maybe I can get one setup and read your data. The rules are I am no allowed to post my address. Maybe if you contact the web master...
  8. TomSwingruber

    Abit VA-20 with Win98se

    I have not been able to make the VA-20 work correctly if I use onboard video with Win98. I have 3 new boards and and all the trimmings. I tried loading updated drivers and every other trick I could of think of(or was suggested to me). The boards worked fine if I loaded Win2000 or worked with 98...
  9. TomSwingruber

    Need your opinion..new mobo or not?

    Just a thought Pull out all boards not required to run basics. I keep a couple of very basic video boards around just for testing flaky systems. I just tried to put a new Radeon PCI bus video card in a brand new Dell to run a second monitor and all kinds of strange things started happening...
  10. TomSwingruber

    VB6 Text Entry

    This will be form wide by putting this in all forms the upper/lower is controlled by one constant. Set the form's KeyPreview property to true ------------------------------------------------ In a module Global Const allow_lower_case As Boolean = False or True to allow lower case...
  11. TomSwingruber

    shell and xx.eml

    MR Jebenson Fantastic solution!!! I have been working for 2 days to solve this problem. Thank you Thank you Tom
  12. TomSwingruber

    shell and xx.eml

    If you double-click on an .eml file in the windows explorer it will open in Outlook Expres email reader (Microsoft refers to it as a separate window). This is a separate window that opens, showing the message text and the attachment file names. If you use the Shell function in VB, it just opens...
  13. TomSwingruber

    need help hooking to MySQL using VB6

    well, i had tried that earlier, but just in case, I just tried it again... same results... but thanks
  14. TomSwingruber

    need help hooking to MySQL using VB6

    I am attempting to hook into MySQL on a Linux box using Visual Basic on a Windows box. The particulars... MySQL server machine name Linny local IP address 192.168.1.123 RedHat 9 MySQL 4.1.9-0 MySQL client machine name Winny local IP address...
  15. TomSwingruber

    SSTab control

    Bet you are right I cleaned and reloaded my computer a while back and did not reinstall the service pack. Will post results as soon as I can get back to the project. Many thanks Tom
  16. TomSwingruber

    SSTab control

    SSTab not TabStrip I have tried to use the SSTab control again for the first time in a couple of years. The thing blew up and lost all the controls I had placed on it. The code was not removed. I already know never to change orientation once you start adding controls. I swore off using the...
  17. TomSwingruber

    Round in a query

    I updated my dlls still could not get the round function to work from a query. I had to forge on so used a crude work around that gets the job done without the round function. If I insert the query directly into access it work fine. But invoking from VB6 fails. Maybe its me or its B Gates. oh...
  18. TomSwingruber

    Round in a query

    I know the brackets a goffy sorry. the question really is How do you use the round function in a query. thanks for any help tom
  19. TomSwingruber

    Round in a query

    Access 2000 and VB6 line from query { round(Price_ft/12),2)) * Length ) + Short_cut_price as [Each], &quot; } returns unkowen function round
  20. TomSwingruber

    DAO vs ADO

    DAO works great with Access 2000 here is how to use it. You must reference Microsoft DAO 3.6 Object Library Hint: From the menu bar click Project from the drop box click References then click iin The DAO object Place in a module ----------------------- Public Const c_DBPassword...

Part and Inventory Search

Back
Top