Search found 670 matches: skip

Return to advanced search

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() --------------- NOT SUPPORTED: ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 979

Re: RAO - refresh, xbrowser

he tratado de todas las maneras y no me funciona.

1) ::oQry:requery()

2) ::oQry:refresh()

::oBrw:skip()
::oBrw:refresh()
by goosfancito
Sat Jan 27, 2024 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO - refresh, xbrowser
Replies: 2
Views: 448

Re: Creating table with Trichedit

... local cFileName := "table.rtf" local oFile := FCreate(cFileName, 0) aTable := {} Do while (!oTemp4:Eof()) * If Empty(oTemp4:Nome) oTemp4:skip() Loop Endif ....................... c1:="Cartella n."+ Trim(oTemp4:codice) c2:=alltrim(oTemp4:nome) procedure to Create atable from ...
by Silvio.Falconi
Thu Jan 25, 2024 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Making GroupReport from Xbrowse

...  .t.,oRep))    //leject the problem I have and that I can't overcome is that when I print the group header it doesn't skip a line and the records are printed below too attached to the header as you can see in this figure https://i.postimg.cc/4N8fTmD1/yyy.jpg ...
by Silvio.Falconi
Mon Oct 30, 2023 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Making GroupReport from Xbrowse
Replies: 0
Views: 286

Re: enviar mensajes a whatsapp, ¿posible solucion?

... cuestion de ir probando. Espero que te sirva For versions prior to 2307, this approach is very nice. For sending Image Files like jpg,bmp,png,etc. skip these three lines [code]   oShell:SendKeys("{DOWN}") // Presiono flecha abajo    syswait(.2)  /code]
by nageswaragunupudi
Sat Oct 28, 2023 2:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4487

IMPRESION ARCHIVOS PDF

... COLOR CLR_HBLUE Font m->oFontFis ACTIVATE DIALOG oIndex NOWAIT CENTER do while !eof() xnum:=99->numero VTA1100PE() // Genera los pdf sele 99 skip xsay:="Socio: "+strzero(99->cliente,4)+" - Fac.: "+xlet+"-"+str(xemi,1)+"-"+strzero(99->numero,6) ...
by pedroluis
Mon Oct 02, 2023 3:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRESION ARCHIVOS PDF
Replies: 27
Views: 1612

Re: How to get libssl.lib and libcrypto.lib for MSC?

... dumpbin /exports %dll_file% > %exports_file% echo LIBRARY %lib_name% > %def_file% echo EXPORTS >> %def_file% for /f "skip=19 tokens=1,4" %%A in (%exports_file%) do if NOT "%%B" == "" (echo %%B @%%A >> %def_file%) lib /def:%def_file% /out:%lib_file% ...
by carlos vargas
Wed Jul 26, 2023 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 273

Re: Small Question about Word and FWH

... determine whether it's safe to call cWord:Quit(). d. If the document state returned from Application 1 indicates that a document is open in jWord, skip calling cWord:Quit() to avoid closing the shared document. Note that the exact implementation details may vary depending on the programming languages ...
by Antonio Linares
Mon Jul 17, 2023 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1151

Re: MariaDb delete

His question was about the behavior of our library. Whether after oRs:Delete() do we need to oRs:Skip() or not. That point is clarified. The point of using sql statement DELETE FROM <table> [ WHERE <cond>] was discussed in his other post. I say this ...
by nageswaragunupudi
Fri Jun 02, 2023 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 392

MariaDb delete

Hi all when you execute the delete command is also done skip ? oRs:gotop()do while .not. oRs:eof()    oRs:delete()  <----- the pointer on next record ?enddoor old way with DBFoRs:gotop()do while .not. ...
by mauri.menabue
Thu Jun 01, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 392

bsetup of Report

... simple and not double lines, a test on the left and the date and page number/pages on the right bSetUp := < |oRep, Brw, n | if n == 2 oRep:bSkip := {|| (IF(!oDbf:Eof(),oDbf:Skip(),nil),; IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.))} return nil endif return 2 > oBrw:Report("List", ...
by Silvio.Falconi
Wed Apr 26, 2023 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bsetup of Report
Replies: 1
Views: 159

PREVIEW Guardar nombre

... PREVIEW --> ¿ Como lo guardo ? do while !eof() oPrn:cmSay(08.90,03.30, alltrim(xnom)) oPrn:cmSay(08.90,15.00, alltrim(wbar)) l:=l+1 skip enddo ENDPRINT
by pedroluis
Thu Apr 20, 2023 2:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: PREVIEW Guardar nombre
Replies: 5
Views: 441

Re: ampersand

example:
select products
goto top
do while .NOT. eof()
cnaam=TRIM(products->naam) to transform in his real fieldname

select sales
append blank
replace sales->fieldname with ....

select products
skip 1

enddo
by jds
Mon Mar 27, 2023 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 1148

ampersand

... nalias=TRIM(products->alias) @ a,5 say cnaam OF oDlg FONT oFont @ b,12 get nalias OF oDlg SIZE 20,11 picture "999" FONT oFont skip 1 a=a+1 b=b+1.15 enddo
by jds
Tue Mar 21, 2023 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 1148

Help for xbrowse report bSetUp

... |oRep, Brw, n | bImage := {|oRep| oRep:SayBitmap(0.5, 7, cLogo)} bStart := {|oRep| oRep:bStartPage := bImage} bInit := {|| oBrw:oDbf:GoTop()} bSkip := {|| (IF(!oBrw:oDbf:Eof(),oBrw:oDbf:Skip(),nil),IF(oRep:nCounter % 2 =1 , oRep:lShadow :=.f.,oRep:lShadow :=.t.))} if n == 2 oRep:oShdBrush := ...
by Silvio.Falconi
Sat Mar 18, 2023 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 377
Next

Return to advanced search