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 TouchToneTommy 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. dragnut

    Defaults for VB6

    If you have the addin MZTools, there is an option in there somewhere that can do it too. Shawn
  2. dragnut

    Beep doesn't hear

    A straight up beep, either api or vb's SHOULD at least give you a noise of some sort. Do you have the volume turned up? Stupid question, but.... Shawn
  3. dragnut

    Vb using resource file?

    Good point cclint!
  4. dragnut

    Vb using resource file?

    You shouldnt need to use rc, just use the resource editor add-in in vb. You can add pretty much anything in a resource file. look up loadresdata, loadresstring, loadrespicture in msdn and it will tell you all you need to know (mostly) Shawn
  5. dragnut

    Cleaning up Unsed Code Entries

    I have been using mztools since version 2 and it has never failed me Shawn
  6. dragnut

    I want to learn visual basic...

    The on-line auction sites usually have vb really cheap
  7. dragnut

    Tell me how they did this!

    Try this one out... http://www.ebaumsworld.com/trigrid.html Shawn
  8. dragnut

    ?Convert VB3 to VB6

    Api calls and custom controls will be your biggest problem. You will have to change all 16 bit apis & controls to 32 bit. The api's should be no major problem, but you minght not be able to find some of the more weird controls in 32 bit.
  9. dragnut

    Opening IE 6 with a specific url.

    Use the shellexecute api
  10. dragnut

    add-in

    I have been using mztools since forever. Oh well, guess I have to use the tab key and do some work :) Shawn
  11. dragnut

    add-in

    I know that, but hey, i'm lazy :)
  12. dragnut

    add-in

    Can anyone recommend a good add-in that automatically indents your code? (preferably free)
  13. dragnut

    API guide

    And I third it...motion carried! :)
  14. dragnut

    how resourse file work (.RES)

    Loadrespicture, Loadresdata, Loadrestring. looking for one or all of these will get you started.
  15. dragnut

    Beeps, sounds, and the old Play function

    Or you could use the beep api... if you have win2k (?) and above
  16. dragnut

    how to copy a file in vb app

    lets see the code then
  17. dragnut

    URGENT PLEASE HELP - VB QUESTIONS

    You are not doing anything to it except opening and closing it. what do you want to happen exactly?
  18. dragnut

    BAT Files

    One thing about streams to consider, the batch file strongm mentioned will be 0 bytes long. if someone deletes it, your stream, and therefore your batch file will be gone.
  19. dragnut

    Label Caption Blink or Flash off and on

    you can flash a label with this in a timer also... label1.visible=not label1.visible
  20. dragnut

    kernel32.dll in VB 3 and making a program wait inside a subroutine

    for the first part, you cant use 32 bit with vb3, you have to use the 16 bit version. for the second part, try this... Sub Pause(Seconds) Dim PauseTime, Start PauseTime = Seconds ' Set duration. Start = Timer ' Set start time. Do While Timer < Start + Seconds DoEvents...

Part and Inventory Search

Back
Top