Search found 3886 matches: endif

Return to advanced search

Re: also for obrw nheight

... // Calculate the total height of the activated boxes for nIndex := 1 to Len(aFilters) if aFilters[nIndex, 1] nVisibleBoxHeight += nBoxHeight endif next // Adjust the height of the XBROWSE based on the height of the activated boxes oBrw:nBottomMargin+= nBoxHeight oBrw:refresh()
by Silvio.Falconi
Thu May 16, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 320

Re: also for obrw nheight

...           oBox[2]:show()              oDlgx:= oBox[2]              oBrw:nBottomMargin += oBox[2]:nTop-2           Endif chapGpt tell me this For n= 1 to Len(aFilters) IF aFilters[ nIndex, 1 ] IF nBox <= len(oBox) oBox[nIndex+1]:show() oDlgx:= oBox[nIndex+1] nbox++ ...
by Silvio.Falconi
Thu May 16, 2024 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 320

Re: Send Emails from Fivewin application

... ) IF !EMPTY( cSender ) cFrom := ["] + cSender + ["] + " <" + cFrom + ">" //Traza( 1, ":" ) ENDIF oMsg:DSNOptions := 14 /// <<<<<<<<<<<<<<<< AQUÍ ESTÁ !!!!!! :P :P :P :P :P :P :P VOY A CELEBRARLO ...
by karinha
Wed May 15, 2024 7:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 1154

Re: Send Emails from Fivewin application

... ) IF !EMPTY( cSender ) cFrom := ["] + cSender + ["] + " <" + cFrom + ">" //Traza( 1, ":" ) ENDIF oMsg:DSNOptions := 14 /// <<<<<<<<<<<<<<<< AQUÍ ESTÁ !!!!!! :P :P :P :P :P :P :P VOY A CELEBRARLO ...
by FiveWiDi
Wed May 15, 2024 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 1154

Re: passing a value through a for..next loop

I use tdatabase and I have modify if Empty( cFilter ) oDbf:Clearfilter() else odbf:dbsetfilter( cFilter) endif But Not work It should be simple to change and make it work. I made these 6 minor changes and it works well. #include "fivewin.ch"REQUEST DBFCDXfunction ...
by nageswaragunupudi
Mon May 13, 2024 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 511

tdtabase and filter

... filter ( ru nok I put as 3) local cState:= space(25) If nIndex=3 Selection_State( @cstate ) cFilter:= 'STATE='+ "'"+cState+"'" endif see the code pls #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local oDlg, oBrw   local cFilter  := ""   local ...
by Silvio.Falconi
Mon May 13, 2024 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tdtabase and filter
Replies: 0
Views: 52

Re: passing a value through a for..next loop

... aFilters ), oDlg:Update() }      aCheck[ n ]:lTransparent := .t.      nCol  += 150      if n == 3         EXIT      endif   next   @  80, 40 SAY { || "FILTER : " + cFilter } SIZE 400, 25 PIXEL OF oDlg CENTER UPDATE   @ 115, 40 XBROWSE oBrw SIZE ...
by Silvio.Falconi
Mon May 13, 2024 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 511

Re: CODIGO DE BARRAS. ERROR CON FILLRECT()

... AGE SayBitmap(01.20,00.50,01.40,01.50,"logocoop.bmp",oPrn) oPrn:cmSay(2.50,14.00,"FACTURA",oFnt11) endif oPrn:cmSay( 3.30,14.00, "Período: "+subs(1->mes_liq,6,2)+"/"+; subs(1->mes_liq,1,4),oFnt3) oPrn:cmSay( 3.70,14.00, "Emisión: ...
by pedroluis
Sun May 12, 2024 8:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CODIGO DE BARRAS. ERROR CON FILLRECT()
Replies: 31
Views: 626

Re: len an array

... { "one" } I not Know how I Have on String now I made aLines := hb_ATokens( cString,"|" ) if empty(aLines[1] ) alines:= {} Endif
by Silvio.Falconi
Mon May 06, 2024 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: len an array
Replies: 5
Views: 234

Re: how to change the size of an xbrowse in runtime

Otto wrote:Static function changeBrw(oBrw,lmarried)
IF lmarried
oBrw:nBottomMargin -= 40
else
oBrw:nBottomMargin += 40
endif
oBrw:refresh()
return nil


use the test I published
by Silvio.Falconi
Thu May 02, 2024 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 425

Re: how to change the size of an xbrowse in runtime

Static function changeBrw(oBrw,lmarried)
IF lmarried
oBrw:nBottomMargin -= 40
else
oBrw:nBottomMargin += 40
endif
oBrw:refresh()
return nil
by Otto
Thu May 02, 2024 9:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 425

how to change the size of an xbrowse in runtime

I not Know How change the height of a xbrowse I tried with

Static function changeBrw(oBrw,lmarried)
IF lmarried
oBrw:nHeight -= 40
else
oBrw:nHeight += 40
endif
oBrw:refresh()
return nil

but not happen nothing
by Silvio.Falconi
Thu May 02, 2024 4:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 425

Re: Asignar impresora por terminal?

... a imprimir IF cImpFac == "S" IMPRIMIR(cFilImp,"") else IMPRIMIR(cFilImp,"2") ... // IMPRIMIR(cFilImp,"3") endif FUNCTION IMPRIMIR(cFilImp,cNroImp)    LOCAL cNomRem := ""         IF cNroImp == "3"  // REMOTA X RESTAURANTES .. COMO ...
by russimicro
Tue Apr 23, 2024 3:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignar impresora por terminal?
Replies: 16
Views: 552

Re: Problem with valid email refresh btnbmp

... Error E0030 Syntax error "syntax error at 'LIKE'" karinha.prg(134) Error E0014 ELSE does not match IF karinha.prg(143) Error E0010 ENDIF does not match IF 3 errors No code generated.
by Silvio.Falconi
Fri Apr 05, 2024 3:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2704

Re: Hide/show search system on a dialog - Resolved

... oBrw:nHeight:= oBar:ntop-40 else oSay[1]:hide() oSay[2]:hide() oGet:hide() oBrw:oSortCbx:hide() oBrw:nTop:=2 oBrw:nHeight:= oBar:ntop-40 Endif for n=1 to Len(aBtn) aBtn[n]:ntop:= oBar:ntop-40 aBtn[n]:refresh() next return nil
by Silvio.Falconi
Mon Mar 25, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1283
Next

Return to advanced search