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!

ADOCE

Status
Not open for further replies.

wallywojo

Programmer
Aug 30, 1999
36
US
Whenever I attempt to use the DESKTOPTODEVICE function, the program always ends up not responding. Any help would be appreciated.(here is the code:)

Dim result As Long, sPath As String, sTableList As String
sPath = "c:\Program Files\wilson\history.mdb"
sTableList = "tblUPC.."
'Export table to remote device.
result = DESKTOPTODEVICE(sPath, sTableList, False, False, "")
If result = 0 Then
MsgBox "Transfer Successful"
Else
MsgBox "An error occurred transferring the data: " & result
Exit Sub
End If
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top