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

    Disallow pressing spacebar in a textbox

    Why don't You use the onChange event of the textbox? if you put his in Textbox.text = trim(textbox.text) hitting the spacebar won't affect the text. A copy and paste-operation would let a space in though, it kind of depends on how idiot-proof you want to build your program.
  2. Topic973

    I can't pass dates to Oracle

    the date formats do not match! 12-12-2002 <> 12/12/2002!!! HTH ;-)
  3. Topic973

    Convert excel .prn file to txt file through WordPad or Word using Vb

    Do You know the printerdriver that has created the prn-file? A prn-file is basicaly an image that can be interpreted by a specific printer that works with a specific driver. If you know how the prn-file is made, you might have a better way of reversing the process.
  4. Topic973

    STARTING MS-WORD EXCLUSIVELY FOR MY APPLICATION

    ' When I use the folowing code in a VB6-app ' (and having the correct references in my VB6 project) Dim WdApp as Word.application Set WordApp = CreateObject(&quot;Word.Application&quot;) WordApp.Caption = &quot;THIS IS MY CAPTION&quot; WordApp.Visible = False ' THIS HAPPENS : ' I Start...

Part and Inventory Search

Back
Top