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 SkipVought 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. baileyhp

    How can I detect the key press "Tab" in a textbox?

    I don't know if this will help but here is some code I use to check for the "enter" key should only need to change a little for tab. This is in the keypress event If KeyAscii = 13 Then KeyAscii = 0 SendKeys "{tab}" End If
  2. baileyhp

    visual basic and ms access

    What version of VB are you using? IF it is 6.0 you need to update the service pack. I had this same error on a new XP machine. It worked on the old but not the new. Needed to update service pack.
  3. baileyhp

    How to add an OCX

    If you use WIN NT or Greater you can run regsvr32 from the command prompt in directory where you have OCX located. Best located in system32 directory.
  4. baileyhp

    Error saving .dwg file on network

    I use Autocad Lt as well. Save the file to youe C drive move it to your network and the next timwe you open it open it the network file. This is how I do it.
  5. baileyhp

    Click to fill in text field?

    I am using Adobe 5.0. I have a form where I ahve inserted several text boxes. I would like on the mouse down command (or mouse up) to have it put select characters in the text box. ie a 8:00. I can see no way to do this. Help!!
  6. baileyhp

    Disabling close button

    If UnloadMode = vbFormControlMenu Then Cancel = True End If This is easy hb
  7. baileyhp

    Need help with printing Crystal Report into a .pdf file from VB

    Crystal Reports 8.5 and later has an export to PDF. Just need to add report in VB (VB6.0) program and then run it.
  8. baileyhp

    Creating a custom paper size

    I looked in the XP Help and fooud the following. It states for NT but the XP has the same settings. Creating a Custom Form To create a custom form for printing to a non-standard paper size in follow these steps: NOTE: You cannot create a custom form unless you have first installed a printer...
  9. baileyhp

    Multi parameter data searches

    johnwm Thanks worked like a dream hb
  10. baileyhp

    I neded to fax Crystal Report using

    Quick and dirty, you may need to use Crystal ocx and Print to the fax program. hb
  11. baileyhp

    Multi parameter data searches

    I tried the code you reccemmended still gives me eror 3075 missing operator Here is code?: SQL$ = "Select * FROM ClaimsDataEntry where VendorNumber = '" & Form19.Text1.Text & "' And where Dateofservicefrom = #" & Form19.DTPicker1.Value & "#" msgbox shows proper date...
  12. baileyhp

    Multi parameter data searches

    Ok my old age may beginning early. Somewhere in the past few years I created a SQL search in VB for multiple parameters. I just can't find the old code. I want to search for data that has two(2) user input searches. ie table where lastname = strentry and where firstdate = thisdate strentry...
  13. baileyhp

    VB6 and Crystal Reports 8.5

    You might try to put the same line of code in your form load "Report.PrinterSetup Me.hwnd" hb
  14. baileyhp

    Acrobat vs. Crystal Reports

    You might try the Crystal Report 8.5 version. It has a built in "export" to PDF. ( you do not need adobe acrobat). It will export to a pdf file that you can save, emai etc. h bailey
  15. baileyhp

    Question about using .pdf files in Vis Basic 6

    Do you have Adobe Acrobat ver 4 or 5 (not the reader but full program?) If so in VB r click on toolbar and select "components" click on "insertable objects" click on "Adobe Acrobat Document" Then load a new form load the adobe ocx onto it select the "PDF&quot...
  16. baileyhp

    Can your own icons be installed if you use PD Wizard?

    I suggest that you build a Folder on the desktop and place all of the icons in it then you can copy the folder for different users. (all need to have same programs) hb
  17. baileyhp

    Listbox with Vscrollbar and Hscrollbar at the same time ????

    try to use a combo box and set the width in design. The vertical scroll bar should auto show as you have the combo1.additem "Item". I use it all of the time.
  18. baileyhp

    Problems creating new record

    What type of field is this? 'tblBruker.BrukerID'
  19. baileyhp

    Disconnecting users for database updates - Help please

    I had a similar problem. Only 1 database however and less than 50 users. But the databse needed the data upgraded on a weekly basis and I needed to be able to access the program for updates. (people would minimize program and walk away). I put a timer on the program that began when the program...
  20. baileyhp

    How to print PDF-files from within a VB application...?

    Sorry to take so long. You simply need to input the reference to the acrobat page in your vb. create the form in vb, select the page you wish to view, the use the vb code to view the form.

Part and Inventory Search

Back
Top