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 bkrike 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 MKoda

  1. MKoda

    Launching a .bat file from VB

    You can create a VB app with cmd button. The command button shells out to a PIF file, the PIF file contains a command line to run the BAT.
  2. MKoda

    Using Vb to send email

    http://freevbcode.com/ShowCode.Asp?ID=109
  3. MKoda

    visual basic 5 where can I get it

    VB Control Creation Edition (VB 5) http://msdn.microsoft.com/vbasic/downloads/tools/cce/default.asp
  4. MKoda

    calculation problem

    a test for negative numbers should resolve that problem like if x<0 as for no decimals: Dim MyNumber MyNumber = Int(99.8) ' Returns 99. MyNumber = Fix(99.2) ' Returns 99. MyNumber = Int(-99.8) ' Returns -100. MyNumber = Fix(-99.8) ' Returns -99. MyNumber = Int(-99.2) ' Returns -100...
  5. MKoda

    Problem with variables

    Did you declare it as Public?

Part and Inventory Search

Back
Top