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: *

  • Users: JimGE
  • Order by date
  1. JimGE

    AS/400 CPYTOIMPF Help Needed

    For a tab delimited file, first you have to copy the physical file to a stream file in the document library. Notice no STMFCODPAG(*PCASCII). CPYTOIMPF FROMFILE(BRANDNEW/CARCODE) TOSTMF('QIBM/CARCODE') RCDDLM(*CRLF) DTAFMT(*DLM) STRDLM('"') FLDDLM(X'05') DECPNT(*PERIOD) MBROPT(*ADD)...
  2. JimGE

    Is it possible to use a 'file list' dialog box?

    Brian, You're welcome, but props here go by Votes. [2thumbsup] Jim
  3. JimGE

    Is it possible to use a 'file list' dialog box?

    I use Windows open file dialog API, instead of the file open dialog Extra has available. The following code should be saved as a Header File: File Open Header.ebh ============================================================ Type OPENFILENAME lStructSize As Long hwndOwner As Long...
  4. JimGE

    Attachmate Macro to read data from Excel

    Here is an example of creating/updating excel worksheet, range, whatever via ADO run w/Attachmate EXTRA! 7.0 Object Library & Microsoft DAO 3.6 Object Library. Sub Main Dim adoConn as object Dim TableRS as object Dim FieldRS As Object Dim strConString as string Dim FileName...
  5. JimGE

    Printing to the network printer

    Save VB Code below as header file: Default Printer.ebh Declare Function RegOpenKeyEx Lib "advapi32.dll" Alias "RegOpenKeyExA" _...

Part and Inventory Search

Back
Top