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 Wanet Telecoms Ltd 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: *

  • Users: JPBURBE
  • Content: Threads
  • Order by date
  1. JPBURBE

    ADO CONTROL

    using an ado data control, how can i get it so that when i edit a record and hit save, it adds a new record, doesn't edit the old one but adds a new one?
  2. JPBURBE

    DT PICKER

    Using a date picker how can i set it to default to the system date evberytime the program is entered. Automatically add 1 month from the date selected and input it to another dtpicker....and send it to a database? Thank you in advance Boulay
  3. JPBURBE

    DIRECTING OUTPUT

    Is there any way to direct the ouput from a VB6 program to a printer that is located on the server and not in the list of printers?
  4. JPBURBE

    Automatically Generate

    Is there any way under a command button, to have a form generated with textboxes & labels, etc? I am planning on using variables to pass the info for the labels.....any ideas anyone? I know i could do it manually but would prefer to have it generated for me......Thanks in advance
  5. JPBURBE

    Print to File

    Is there any way to print to file in vb?
  6. JPBURBE

    Postscript Conversion

    Is there any way to convert a file to postscript in vb before sending it to the printer?
  7. JPBURBE

    VB Printing

    I am trying this to print a PDF file to a specific printer over a network.....it works great for text files but when i try it with PDF files it just prints out as garbage..It prints the file where i want but the PDF document isn't ledgible.....the pdf image does not show up.....just the text...
  8. JPBURBE

    VB and PCL

    How can i retrieve the data that is sent back from the following? Private Sub Command1_Click() Dim fnum As Integer, s As String, t As String fnum = FreeFile Open "lpt1" For Binary As #fnum s = Chr$(27) & "%-12345X@PJL DINQUIRE RESOLUTION " & Chr$(27) &...
  9. JPBURBE

    sending PCL to Printer

    How do you send PCL codes to the printer?
  10. JPBURBE

    PCL

    How do i send PCL codes to the printer from VB
  11. JPBURBE

    PCL in VB

    Does anyone know how to use PCL in a visual basic program? here is the PCL i want to use but i don't know how to incorporate it into VB..... <Esc>%-12345X@PJL INFO PAGECOUNT <Esc>%-12345X thanks Patrick
  12. JPBURBE

    PCL/PJL

    Is there any way to use PCL/PJL commands in VB? I need to change the paper bin using PCL commands. Help please Thanks Patrick
  13. JPBURBE

    Winsock or internet transfer control

    Would it be easier to use the Internet transfer control? Here is what i am trying to do. Oracle sends data to a network card ip instead of the printer, i retrieve the data, bring it into a vb form, merge it with a pre-created pdf form, and send it to a fax machine..... Any ideas?
  14. JPBURBE

    winsock

    Can anyone explain to me how to retrieve data from an ip address? Oracle sends it to an ip address....vb using winsock picks it up and imports it into vb? Is this possible? Can anyone help?
  15. JPBURBE

    connecting to oracle?

    How do i connect to an oracle database? Never used it not to sure?
  16. JPBURBE

    Retrieving information from network card IP

    How can i retrieve information sent to a specific network card ip address and import it into vb?
  17. JPBURBE

    Format

    How can i format a field so it has the following: ########-# This is what i tried but it doesn't work!Help please num = 999999999 numStr = new String(num); newStr = numStr.substring(0,numStr.length-1)+'-'+numStr.substring(numStr.length-1)
  18. JPBURBE

    Formatting a field

    How can i format a PDF field with javascript to look like 99999999-9 Thanks
  19. JPBURBE

    Printing to NT

    How can i select a printer to print to in NT 4.0 from my VB app? I don't want to use the default. i need to specify a printer because some of the users do not have a printer setup in their profile. Can anyone help?

Part and Inventory Search

Back
Top