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.
'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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.