Search found 374 matches: goto

Return to advanced search

Re: Soporte a mariaConnect ?

... hasta ahora.. tablas, TarrayData y rowSet... tienen metodos de navegacion y ordenaminento,,,, Navigation: Supports all methods of TDatabase like GoTop,GoBottom,GoTo,Skip,Eof,Bof,LastRec, RecCount,KeyCount,KeyGoTo, etc Also supports aliased methods compatible with ADO MoveFirst,MoveLast,Move,BookMark,AbsolutePosition, ...
by russimicro
Wed Nov 20, 2024 11:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Soporte a mariaConnect ?
Replies: 11
Views: 350

Re: twebview2

... Windows 9X/NT/200X/ME/XP/Vista/7/8/10 넴 ECHO 읕컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴켸? ECHO  賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽賽? if A%1 == A GOTO :SINTAX if NOT EXIST %1.prg GOTO :NOEXIST SET xhbdir=c:\xhb SET fwhdir=c:\fwh24_09 ECHO Compiling... %xhbdir%\bin\xhb %1 /n /w /p /i%fwhdir%\include;%xhbdir%\include;%xhbdir%\c_include ...
by russimicro
Sun Nov 10, 2024 3:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: twebview2
Replies: 18
Views: 649

Re: DBF How to obtain an array containing record number

... If table is opened only by this test program the speed is the same 0.06 seconds USE reads the DBF file, similar to memoread(). The record pointer (GOTO) is moved by an offset, which is determined by the definition of the header and fields to set the starting point. The pointer is then shifted by ...
by Otto
Thu Oct 10, 2024 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 487

Re: DBF How to obtain an array containing record number

Great, but it's you who had the idea about using GOTO.
by Enrico Maria Giordano
Thu Oct 10, 2024 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 487

Re: DBF How to obtain an array containing record number

Very interesting Enrico! Karinha I want an array containing all record numbers because the real speed of a cycle that FOR i := 1 TO LEN( aRec ) GOTO aRec[ i , 1 ] NEXT i and not by this one that is very slow if cdx is opened by other person DO WHILE !EOF() SKIP ENDDO But I would hope that by reading ...
by MarcoBoschi
Wed Oct 09, 2024 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 487

Re: xHarbour 64 bits y xbScritp

... xbscript /n /p /i%C:\FWH64\INCLUDE;C:\XHARBOUR64\INCLUDE;C:\BORLAND7764\INCLUDE% -D__HARBOUR__ > LOGFILE.TXT IF ERRORLEVEL 1 GOTO ERROR >> LOGFILE.TXT ECHO *************** Todo bien *************** >> LOGFILE.TXT ECHO... >> LOGFILE.TXT @ECHO ****** Con los ...
by Cgallegoa
Sat Sep 14, 2024 10:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xHarbour 64 bits y xbScritp - (Solucionado)
Replies: 49
Views: 1898

Re: problem with 24.07

... ECHO ˙ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß if A%1 == A GOTO :SINTAX if NOT EXIST %1.prg GOTO :NOEXIST ECHO Compiling... if "%FWDIR%" == "" set FWDIR=c:\fwh if "%XHDIR%" == "" ...
by kajot
Fri Aug 16, 2024 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with 24.07
Replies: 12
Views: 1920

Re: Ayuda con DLL

... DBF1,CDX1 DBF1:=CurDrive()+":\"+Curdir()+"\CONFPIPE.DBF" USE &DBF1 NEW DATABASE oDbf oDbf:bEoF=nil oDbf:bBoF=nil oDbf:GoTop() RutaDat :=ALLTRIM(oDbf:RUTADATOS) SerRemoto:=oDbf:REMOTO DBCLOSEALL() // PARA UTILIZAR INDICES CDX REQUEST DBFCDX RddSetDefault("DBFCDX") ...
by Jorge Jaurena
Tue Jun 04, 2024 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 582

Re: RAO advice on using Mysql

... is ready for use. At the same time it also gets the total row count. If user uses GoBottom() it reads the last 100 records. If the user wants oRs:GoTo( 123040 ), then it reads 100 records around the row number 123040. As a result the class always provides the record the programmer wants without ...
by nageswaragunupudi
Wed Feb 07, 2024 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 1962

Re: RAO advice on using Mysql

METHODS: RecCount(), LastRec(), KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() or End() --------------- ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 1962

Re: DBF . Commit

... be saved I can append the data or edit the data and the last thing I do with dbfcdx is to move the record pointer after I write to the disk with GoTo Recno() ADO is a bit different with SQL .. Recordsets can be added to or edited one record at a time and when a committ is made all I do is issue ...
by Rick Lipkin
Tue Oct 24, 2023 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

Re: DBF . Commit

Goto Recno() works the same .. physically moves the record pointer back to itself thereby flushing and writing the buffers

Rick Lipkin
by Rick Lipkin
Fri Oct 20, 2023 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

Re: Error sending email

... have you try oMailItem:Send() does it "send" or goto "out Basket" :?: Does anyone know where I can find TOLEAUTO.PRG source file? as i can say it is Part of harbour and include in hbwin
by Jimmy
Sat Aug 12, 2023 8:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error sending email
Replies: 18
Views: 1425

Ruta no especificada al compilar

... Y este el el buildh if A%1 == A GOTO :SINTAX if NOT EXIST %1.prg GOTO :NOEXIST if "%FWDIR%" == "" set FWDIR=c:\fwh2304 if "%HBDIR%" == "" set ...
by EASYSOFT
Wed Jul 12, 2023 7:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ruta no especificada al compilar
Replies: 3
Views: 284

Re: Error al leer un dll

... ECHO ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß if A%1 == A GOTO :SINTAX if NOT EXIST %1.prg GOTO :NOEXIST ECHO Compiling... if "%FWDIR%" == "" set FWDIR=c:\fwh2212 if "%XHDIR%" ...
by jpcavagnaro
Sun Apr 23, 2023 9:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al leer un dll
Replies: 19
Views: 2493
Next

Return to advanced search

cron