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 strongm 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. 173234

    Program to distinguish changes in code

    I use and enjoy Beyond Compare. (www.scootersoftware.com) I've found it quite useful for both file and folder comparisons. It allows editing and merging as well. They have an eval version that runs for 30 days or so. Runs about $30. RS
  2. 173234

    SetFocus function call errors

    You will also want to make sure that the form (the one hosting the control or the one you are trying to .Hide) is Enabled. Otherwise, the 'invalid procedure call' message will ensue. RS
  3. 173234

    Tools you can't live without

    Beyond Compare - side-by-side comparison of file and folder contents www.scootersoftware.com
  4. 173234

    Drag and Drop Outlook msg directly into a VB app

    Although it's been awhile since your post, this URL may be of some assistance. The thread has provided benefit to some, but not all: http://www.codeguru.com/Cpp/I-N/internet/email/article.php/c3381 Good luck, RS
  5. 173234

    Enter behavior..?

    You may also want to try this... window.document.onkeydown = convertEnterToTab; function convertEnterToTab() { if (window.event.keyCode == 13) { window.event.keyCode = 9; } }
  6. 173234

    Help Reading File Summary Info via FSO

    Have you tried the native Open/Input statements in VB? Open &quot;c:\myfile.exe&quot; For Binary Access Read As #<filenumber> Input(<# of chars>, #<filenumber>) Good luck, RS
  7. 173234

    Focus Problem (Tab order) please help

    Have you tried: if i=10 then textbox2.visible=true textbox2.SetFocus else textbox2.visible=false textbox3.SetFocus end if ...leaving the TabOrder...
  8. 173234

    Converting a Word document into a .tif file

    Informatik also offers a TIFF print driver. A trial version is available on their website. (There are other companies with similar products.) Once the driver is installed, you can configure a printer to use it, then programmatically print your documents to that printer using Word or Excel COM...

Part and Inventory Search

Back
Top