Search found 19 matches: netuse

Return to advanced search

uso de make de bcc al crear una libreria

... +.\obj1\YESNO2.obj +.\obj1\SAVEENV.obj +.\obj1\GINKEY.obj +.\obj1\BLANK4.obj +.\obj1\RAND.obj +.\obj1\SHADOWB.obj +.\obj1\BOXTITLE.obj +.\obj1\NETUSE.obj Como hago para que me lo deje en una sola linea, asi +.\obj1\COLORSET.obj +.\obj1\COLORS.obj +.\obj1\COLORPAL.obj +.\obj1\YESNO2.obj +.\obj1\SAVEENV.obj ...
by ruben Dario
Wed Oct 04, 2023 1:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: uso de make de bcc al crear una libreria
Replies: 4
Views: 560

Re: james

...  /*   oCust:=TDatabase():Open( , "customer", "DBFCDX", .T. )   oCust:setorder(1)   oCust:Gotop()   */   IF NetUse( "CUSTOMER", .T. )      OrdListAdd( "CUSTOMER", "FIRST", "LAST", "STREET" )  ...
by Silvio.Falconi
Sun Dec 12, 2021 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: james
Replies: 8
Views: 809

Re: TDatabase Class

James SELECT 9 IF NETUSE( xVol+"\DBTMP\"+CustDbf+".DBF", .T.,5) Index on CustName TAG CustName Set Order to Tag CustName ELSE CLOSE DATABASES FERASE( xVol+"\DBTMP\"+CustDbf+".DBF") FERASE( xVol+"\DBTMP\"+CUSTDBF+".CDX") ...
by Rick Lipkin
Wed May 19, 2021 5:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2121

Re: Sample for Lan network

... archive a class and connected to another class (txdata) which in turn is encapsulated in the tdatabase class. In dos in the old clipper I used the netuse () function successfully and all these problems have never been there because you can not use a similar function even in the window? Maybe in ...
by Silvio.Falconi
Tue Nov 06, 2018 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sample for Lan network
Replies: 8
Views: 1842

Re: dbfs on Network : wich performance method?

... 86 and then I purchased the Clipper Summer 87 ( I also have the 4 original floppy dishes 5 1/4) of Nuntucket. On dos it seem too easy I used Netuse made from super lib or Platet lib or another lib I not remember good and it run ok on Network with no problems When moving to FWHon 1992 (I purchade ...
by Silvio.Falconi
Tue Oct 30, 2018 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfs on Network : wich performance method?
Replies: 26
Views: 5506

Re: questions manage dbf

... I never trusted to manage the archives in a local network for the countless problems that there are... It's not so easy . I created a "Netuse" type function but a little different management in order to open a dbf in specific folders I have a difficult situation. it's not easy ...
by Silvio.Falconi
Wed Oct 03, 2018 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions manage dbf
Replies: 17
Views: 3896

Re: Error DBFCDX/1010 Read error

... )  Also ( and some people may argue with me ) .. when I open a .dbf I specify it with the clause via "DBFCDX"  Here is my Netuse() function that works quite well for me .. not as sophisticated as yours but perhaps you can review and consider how I am opening a dbf. Also ...
by Rick Lipkin
Fri May 24, 2013 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: [Solved]Error DBFCDX/1010 Read error
Replies: 32
Views: 9345

Unrecoverable error 1010

... Terminated at: 2012.05.20 17:45:58 Unrecoverable error 1010: hb_cdxIndexPageRead: Read index page failed. Called from DBUSEAREA(0) Called from NETUSE(1803) in client2.prg Called from OPEN_DB(214) in client2.prg what could have contributed to this kind of unpredictable error ? Kindly help. Thanks ...
by cllow208
Mon May 21, 2012 8:28 am
 
Forum: FiveWin for Pocket PC
Topic: Unrecoverable error 1010
Replies: 5
Views: 2941

Re: strange (DOS Error 32) DBFCDX/1006 ¿bug?

... tables I would use this syntax use ( "table.dbf" ) via "DBFCDX" .. you left out the via clause 3) I supplied a function called NetUse() and you can easily adapt it to open your databases in either Shared or Exclusive mode. In a multi-user network environment you will also need ...
by Rick Lipkin
Mon Feb 13, 2012 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange (DOS Error 32) DBFCDX/1006 ¿bug?
Replies: 21
Views: 4314

Re: convert program to a network version

Dear MR.Harvey, How do I use an alias with netuse() ? You will have to modify the Function NetUse() to accept one more parameter cAlias. After that you may modify the following code in the NetUse()      IF LOPENMODE    ...
by anserkk
Tue Jul 21, 2009 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5553

Re: convert program to a network version

Dear Mr.Otto, Normally I don't use Select while opening a DBF, instead I use the clause NEW in the Function NetUse() which is very much similar to what Mr.Rick has already posted above in this post. Using NEW clause will avoid errors of Selecting a workarea which is already used ...
by anserkk
Tue Jul 21, 2009 6:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5553

Re: convert program to a network version

Thanks for the useful info.

How do I use an alias with netuse() ?

I open file
Use name.dbf alias name new
by hag
Tue Jul 21, 2009 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5553

Re: convert program to a network version

... regular xBase command to open the Dbf For eg: Select 1 Use Customer Select 2 Use Invoice You should open the Dbf in shared mode using the Function NetUse() (the second parameter should be .F.) select 1if netuse( "Customer.dbf", .f.,5 ) // database, .t. for exclusive lock, .f. ...
by anserkk
Tue Jul 21, 2009 5:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5553

Re: convert program to a network version

... use the associated function(s) whether I use it on a network or on a local machine that is a single user. Here is a set of functions you can use : NetUse() Addrec() RecLock() // netuse select 1 if netuse( "test.dbf", .f.,5 ) // database, .t. for excluse lock, .f. for shared, 5 for time-out ...
by Rick Lipkin
Mon Jul 20, 2009 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5553

Re: Error DBCMD/1010

if NetUse("\ml2004\unidad",.t. ) ****aca me da el error en esta linea OrdListAdd("\ml2004\unidad","codigo","familia") DATABASE oDbfFp oDbffp:Load() else MsgStop( "Fichero UNIDAD ...
by elmoiquique
Thu May 28, 2009 11:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error DBCMD/1010
Replies: 2
Views: 407
Next

Return to advanced search