Hello Friends,
I have the following error:
" Error DbfNtx/1004 Create error: net:c:\hmgproject\demo\class.dbf (Dos error 123)"
When i run the following code:
FUNCTION test()
local aStru:={{"Name","C",20,0},{"Age","n",4,0}}
NETIO_CONNECT("127.0.0.1", 2941) //connects ok
dbCreate("net:c:\hmgproject\demo\class.dbf",aStru,rddsetdefault())
return Nil
The idea is to test how to create a dbf on a remote pc using NetIo. When i replace the DbCreate() line with the line
dbCreate("c:\hmgproject\demo\class.dbf",aStru,rddsetdefault()), the file creates correctly, but the idea of a remote pc is lost
Does NetIo support the dbCreate() function or am i missing something?
Kindly assist.