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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dugbel

  1. dugbel

    Validate one field based on two other fields?

    txtField3_LostFocus() If nz(txtField3,&quot;&quot;)=&quot;&quot; AND _ txtField1 <> txtField2 then 'nz tests for Null and &quot;&quot; msgbox strMsg txtField3.SetFocus endif
  2. dugbel

    Validate one field based on two other fields?

    txtField3_LostFocus() If nz(txtField3,&quot;&quot;)=&quot;&quot; AND _ txtField2 <> txtField2 then 'nz tests for Null and &quot;&quot; msgbox strMsg txtField3.SetFocus endif
  3. dugbel

    Access to AS400

    I have solved part of the problem. AS400 didn't want a semicolon at the end of the SQL. Anyone know what I can do about the File DSN?
  4. dugbel

    How do I import .cvs data to access.

    You can set up the csv as a linked Table or you can create a Schema.ini and link to it on the fly and pull the data in. There are quite a few articles in the MS Knowledge Base on Schema.ini files.
  5. dugbel

    Access to AS400

    I am trying to connect to an As400 from Access to retrieve a recordset. I am using: Set ws=dbEngine.CreateWorkspace(&quot;ODBCWorkspace&quot;,&quot;&quot;,&quot;&quot;,dbUseODBC) stDNS=&quot;Name of DNS&quot; 'Set up using ODBC Admin aplet Set db=ws.OpenDatabase(&quot;tempDB&quot;, , ...

Part and Inventory Search

Back
Top