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. penney

    Accessing Unix Files Via VB or VBA

    Does anyone know of a way to access Unix files for read/write from within a VB or VBA application such that I do not have to first FTP the file. Ideally I would like to establish a session of some sort and then just use the normal file open / read / write / close commands and then close the session.
  2. penney

    remove duplicates from a data table

    oops change the second ItemId = dt.Rows(i)(ItemCol) to ItemId = dt.Rows(i - 1)(ItemCol)
  3. penney

    remove duplicates from a data table

    'Hopefully this solves your problem 'I dont know which col your item resides so I used 'a constant called ItemCol which you can set. If dt.Rows.Count > 0 Then ItemId = dt.Rows(0)(ItemCol) Q = 0 For i = 1 To dt.Rows.Count If ItemId = dt.Rows(i-1)(ItemCol) Then...
  4. penney

    Accessing Unix Files

    Is it possible without using FTP to open and read files that reside on a Unix server through VB or VBA running under a Windows 2000 PC? If so can you tell me what I need to know (what information I need and the steps I need to perform) in order to accomplish this - Is it performed through ADO...

Part and Inventory Search

Back
Top