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 gkittelson 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. skyplayer

    Embed animation gif in VB

    I would like to embed an animation gif in a picture box or image box in VB6, but the gif picture just a static picture in the run time and design time. Thus is it possible to embed an animation gif in a VB program?Thx a lot!
  2. skyplayer

    Insert or update a Null value to a DateTime field

    I tried it, but still fail to assign, the rs!testdate can't accpet empty string!
  3. skyplayer

    Insert or update a Null value to a DateTime field

    Is it possible to insert a Null value to a smalldate time field which is allowed Null in VB? I have tried to assign vbNull and vbEmpty to it, but it prompts "The conversion from datetime data type to smalldatetime data type resulted in a smalldatetime overflow error.&quot...
  4. skyplayer

    vbObject Error

    According to MSDN, it said that it is better to add the vbObjectError to the err.number in the err.raise. ======================================================= i.e. <Assume error occur, and on error goto E:> E: lngErrorNumber = err.number err.raise vbObjectError + lngErrorNumber...
  5. skyplayer

    Database Connection Error Number from ADO

    Thx for yr reply, zamp. Ya, I forgot the -ve sign, it should be -2147220401, but I found that the err number is different from which level of function call. E.g. A() call B(), B() raise database connecion error to A(), For the err.number in B() = -2147467259 For the err.number in A() raise from...
  6. skyplayer

    Database Connection Error Number from ADO

    What is the error number of the Database Connection Error from ADO, when there is a physical connection break during the program operation? Any error constant about it? I tried one error number is 2147220401. Any suggestion, thanks a lot!
  7. skyplayer

    Reover .doc file after accidentally cut off PC power

    My PC's power was cut off suddenly when I was writing a document in MS Word 2000. After I started up my PC, I can't open the .doc file, it told me the file path is incorrect or haven't access right. However, I have checked that the file attribute is archive (A), and the file path is correct...
  8. skyplayer

    Create Help File

    I would like to make a help function in a VB project, but how can I create a help (*.hlp) file so I can call it out? Thanks
  9. skyplayer

    Stop FTP transfer !

    Hi, I would like to stop a FTP transfer and then re-establish the connection again. Can anyone tell me how to do it, please?
  10. skyplayer

    Stop FTP connection or Transfer request by using Inet control

    I tried to use the &quot;Cancel&quot; method to stop the connection, however, it will hold up the FTP server and my program. Then I can't connect to the server and prompt &quot;Too many users&quot; ======================================================= Private Sub Form_Load() If...
  11. skyplayer

    Add Combo Box in a Faster Way!?

    How to increase the speed of adding items to a combo box? The original code is as below: =============================================== //n = 11600, a is an array with n elements For i = 1 to n cboCombo.additem a(i) next =============================================== It takes about 15s to...
  12. skyplayer

    Get time more precise!

    How can I get current time within a second precision e.g. 10:59:19:001
  13. skyplayer

    Use a DLL function in Visual C++ MFC Application

    I made a DLL by MFC AppWizard(DLL) project, I would like to use that DLL's function in a MFC AppWizard(EXE) project, but how to import that DLL the project and use those functions in the DLL? Thank you for your attention.

Part and Inventory Search

Back
Top