Search found 89 matches: neterr

Return to advanced search

Hola tecnisoftware

a mi me esta pasando lo mismo, pero al parecer es la funcion
neterr()

http://fivetechsoft.com/forums/viewtopic.php?t=7316
by Patricio Avalos Aguirre
Tue Jun 26, 2007 7:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio please! problemas de bloqueo
Replies: 9
Views: 2466

Antonio please! problemas de bloqueo

... cAlias ) If lAppend nMode := MODE_APPEND Else nMode := MODE_RECORD EndIf Do While .T. Do Case Case nMode == MODE_APPEND DbAppend() If !NetErr() Return .T. Endif Case nMode == MODE_RECORD If RLock() Return .T. EndIf EndCase nCnt := nCnt + 1 SysWait(1) If nCnt > 5 If !MsgYesNo( "No ...
by TecniSoftware
Tue Jun 26, 2007 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio please! problemas de bloqueo
Replies: 9
Views: 2466

Problemas con NetErr()

... pero me he dado cuenta que no me esta funcionando con ADS LOCAL USE (cDbf) NEW ALIAS (cAlias) VIA "ADS" EXCLUSIVE if !NetErr() dbSetIndex( cIndex ) OrdSetFocus( 1 ) dbGotop() return( .t. ) endif MSgInfo( "Error ...
by Patricio Avalos Aguirre
Mon Jun 18, 2007 4:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con NetErr()
Replies: 0
Views: 827

Problemas en red domestica

... DirChange(OldDir) //Luego voy a abrir las tablas que estan en otro directorio llamado TABLAS Dbusearea(.t.,,'tablas\Clientes','Cli',.f.) If !Neterr() ? "Tablas abiertas...." Else ? "Error...." Endif Si ejecuto la aplicacion desde otro PC me da el error OPEN ERROR DOS 3 o sea que los ficheros ...
by jmua
Thu May 31, 2007 7:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas en red domestica
Replies: 3
Views: 1076

How to set up and Use an Access database

... ( FOREVER .OR. WAIT_TIME > 0 ) IF LOPENMODE USE ( CDATABASE ) via "DBFCDX" EXCLUSIVE ELSE USE ( CDATABASE ) via "DBFCDX" SHARED ENDIF IF .NOT. NETERR() RETURN(.T.) ENDIF INKEY(1) WAIT_TIME-- ENDDO * lock failed, ask to continue IF MsgYesNo( "Cannot lock " + CDATABASE + ", retry ?" ) ELSE EXIT ...
by Rick Lipkin
Mon Apr 02, 2007 8:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set up and Use an Access database
Replies: 40
Views: 10465

Pack y progress

... haciendo lo siguiente: Primero pack: *************** if lalb=.T. dbusearea(.f.,,Publicas:cUnidad+Publicas:cSubd+"\Albaran",,.f.) // Exclusiva if !neterr() pack treg+=(albaran->(reccount())*10) endif ****************** Después index **************** index on _field->Albaran tag "Albaran" ...
by JoseLuis
Sun Feb 04, 2007 11:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pack y progress
Replies: 6
Views: 1544

!!!! Como crear indices ¡¡¡¡

... static function Genera_index(oMeter, oMeter1,base,campo,indice) local cExpr local sw:=.t. nAvance:=0 nArch++ do while sw use &base IF NETERR() MSGBEEP();MSGBEEP();MSGBEEP() ALERT('!CUIDADO! Algun Usuario esta ocupando el archivo '+base) sw:=.t. else sw:=.f. endif enddo cExpr := base+campo ...
by prm_pedro
Tue Jan 23, 2007 8:56 pm
 
Forum: FiveWin para Pocket PC
Topic: !!!! Como crear indices ¡¡¡¡
Replies: 3
Views: 1639

... local lIsWinNT := IsWinNT() // by default, division by zero yields zero if ( e:genCode == EG_ZERODIV ) return 0 end // for network open error, set NETERR() and subsystem default if ( e:genCode == EG_OPEN .and. ; ( e:osCode == 32 .or. e:osCode == 5 ) .and. ; e:canDefault ) NetErr( .t. ) return .f. ...
by karinha
Mon Jan 22, 2007 9:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: To Antonio - GPF com MDICHILD + DIALOG
Replies: 5
Views: 1773

Consulta Twbrowse Maestro-Detalle en Red

... fichero bloqueado por usuario desde ya mucha gracias Fabian Databaselab2002@yahoo.com.ar sele 15 USE ARTICULO alias articulo shared if .not. neterr() index on upper(articulo->descri) to articulo set index to articulo else alert("archivo Bloqueado por otro usuario") endif REDEFINE LISTBOX ...
by Databaselab2002
Wed Oct 11, 2006 10:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Twbrowse Maestro-Detalle en Red
Replies: 2
Views: 1077

... y del propio usuario, pero igualmente podría ser una dbf vacia. Si el dbf ya esta abierto, aborta el programa. USE IMPRESOR EXCLUSIVE NEW IF NETERR() ALERT(" ¡¡¡ El programa está ya abierto") QUIT ENDI De esta manera, duplicar el exe en la misma carpeta, pero te permite aperturarlo desde ...
by Manuel Valdenebro
Thu May 18, 2006 4:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar cargar + de una vez la aplicación
Replies: 12
Views: 2921

Osvaldo, Prueba a NO llamar a NetErr(). No te hace falta, ya que si no se abriese la base de datos, Harbour generaría un error. Y tal vez ahí esté la pérdida de tiempo. Me equivoqué al indicarte implib.exe, ya que se generaría una LIB en ...
by Antonio Linares
Fri Dec 09, 2005 10:22 pm
 
Forum: FiveWin para Pocket PC
Topic: Problems con una funcion en C
Replies: 5
Views: 2512

... si estoy bien. Si no habro el indice es rapido, pero si lo abro el indice, se tarda siglos USE (ventas_dir+"05051207.DBF") ALIAS DIARIO NEW if ! NETERR() GO TOP USE ( files_dir+"ARTICUL.DBF") ALIAS ARTICUL NEW if ! neterr() SET INDEX TO ( files_dir+"ARTICUL3.NTX" ) GO TOP DEFINE WINDOW oWnd TITLE ...
by ramirezosvaldo
Fri Dec 09, 2005 1:36 am
 
Forum: FiveWin para Pocket PC
Topic: Problems con una funcion en C
Replies: 5
Views: 2512

fwh 2.4 NETERR()

Hy everybody.
Function NETERR() doesn't work. Has anybody got any solution?
Thanks a lot
Eugenio
by eugenio romeo
Sun Nov 27, 2005 3:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh 2.4 NETERR()
Replies: 0
Views: 709

Problem with application terminating

... cDvr = "DBFCDX" CASE UPPER(cDb)=="ARHOLD" cDvr = "DBFCDX" ENDCASE // Open.... DbUseArea( .T., cDvr, cDir+cDb, cAlias, ! lExclusive ) ENDIF IF NETERR() cErr := "You are not the only one in this Module." + CHR(13)+CHR(10) cErr += CHR(13)+CHR(10) cErr += "Everyone else must exit before you can ...
by cdmmaui
Fri Oct 28, 2005 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with application terminating
Replies: 1
Views: 1936
Previous

Return to advanced search