Search found 4910 matches: value

Return to advanced search

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

For n= 1 to len(aFilters)b:= {|n|        @ nRow, nCol CHECKBOX aCheck[n] VAR aFilters[n][1]  ;               PROMPT aFilters[n][2]  OF  oBox[1] SIZE 150,15 PIXEL;                 ON CHANGE Filtrare( n, oBrw, oDbf,oBox )      }...
by Silvio.Falconi
Fri May 10, 2024 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 4
Views: 85

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

For n= 1 to len(aFilters)b:= {|n|        @ nRow, nCol CHECKBOX aCheck[n] VAR aFilters[n][1]  ;               PROMPT aFilters[n][2]  OF  oBox[1] SIZE 150,15 PIXEL;&...
by paquitohm
Fri May 10, 2024 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 4
Views: 85

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

Yes
But the valute Is the Number of object
On your test there was allways oget[1]
I have oget[n]
by Silvio.Falconi
Fri May 10, 2024 6:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 4
Views: 85

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

... as expected. Let me show why: Wrong code: for n := 1 to 20 @ n * 20, 50 GET aVar[ n ] OF oWnd <clauses> next n After this loop the present value of " n " is 21. When the dialog is activated and controls are to be shown, the value of "n" is 21 and naturally we get runtime ...
by Antonio Linares
Fri May 10, 2024 2:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 4
Views: 85

passing a value through a for..next loop

If I have a loop For ..Next and on this cicle I have create checkboxes ...and on change I call a function passing the value of n of for..next loop but the n is allway 3  For n= 1 to len(aFilters)        @ nRow, nCol CHECKBOX aCheck[n] VAR aFilters[n][1] ...
by Silvio.Falconi
Thu May 09, 2024 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 4
Views: 85

Re: hb_getEnv("PRGPATH")

... the variable PRGPATH, you can do it there with "New". In a DOS window (Command.com) you do this with SET <environment variable>=value e.g. set fwh=c:\fwh - then this environment variable applies to this one DOS session. If it is set under System/Environmental Variables then this ...
by alerchster
Tue May 07, 2024 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_getEnv("PRGPATH")
Replies: 8
Views: 147

hb_getEnv("PRGPATH")

... seem to come directly from my machine... I tried what ChatGPT suggested to me ... but echo %PRGPATH" in the command prompt did not display a value. Please allow another question... is there a way to wrap something around hb_getEnv() to get in return all the possible standard-arguments ...
by Ruth
Tue May 07, 2024 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_getEnv("PRGPATH")
Replies: 8
Views: 147

xbrowse (likely a custom table) whose contents change dynam

... adjusting the table's view based on selected criteria. Each filter change triggers a real-time update, sending the selected filter states and values to the server for precise data processing. To achieve what you want, you need to call a JavaScript function each time the filter inputs are changed. ...
by Otto
Sat May 04, 2024 7:42 am
 
Forum: mod_harbour
Topic: xbrowse (likely a custom table) whose contents change dynam
Replies: 0
Views: 61

Dynamic Table Filter Control

... <label class="d-flex align-items-center gap-1"> <input type="radio" name="age-status" value="20"> 20 </label> <label class="d-flex align-items-center gap-1"> <input type="radio" name="age-status" ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 156

Re: ayuda con uso de hb_xfree

... en 0, lo que indica que no se ha asignado memoria adicional para la cadena. Se asigna un valor especial a pItem->item.asString.value utilizando HB_UNCONST(hb_szAscii[nLen? (unsigned char) szText[0] : 0]). Esto parece ser un arreglo de cadenas ASCII predefinidas, y se selecciona ...
by Antonio Linares
Mon Apr 29, 2024 6:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con uso de hb_xfree
Replies: 6
Views: 190

New FTDN April 2024 (FWH 24.04)

... focus rect using different colors and penstyles. - New DATA nClrFocusRect. Programmer can use any solid color for drawing the focusrect. If the value -1 is assigned, Windows API function DrawFocusRect() is used like other styles of btnbmp. - New DATA nPenFocusRect: DEFAULT PS_SOLID. Programmer ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 392

Re: Cambiar ALT+INTRO de Excel a Intro en campo memo.SOLUCIONADO

A mi me ha funcionado poniendo así:

vconcepto:=strtran(alltrim(oHoja:Cells( nrow, 5 ):Value),chr(10),CRLF)

Espero que le sirva a quien lo necesite.

Un saludo
by Garbi
Mon Apr 22, 2024 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar ALT+INTRO de Excel a Intro en campo memo.SOLUCIONADO
Replies: 2
Views: 90

Cambiar ALT+INTRO de Excel a Intro en campo memo.SOLUCIONADO

... pasarlo de la siguiente mamera a un campo memo en el fichero dbf lo hace obviando el intro (ALT+INTRO) vconcepto:=alltrim(oHoja:Cells( nrow, 5 ):Value) y queda así: "RETIRADA DE PAVIMENTO. Demolición del pavimento, capa de nivelación e impermeabilización existentes. Incluye formación de ...
by Garbi
Mon Apr 22, 2024 2:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar ALT+INTRO de Excel a Intro en campo memo.SOLUCIONADO
Replies: 2
Views: 90

Acuse d e entrega y acuse de lectura en un mail.

... manera de reproducir el acuse de entrega. En mi código utilizo: oMsg:Fields:Item( "urn:schemas:mailheader:disposition-notification-to" ):Value = cFrom oMsg:Fields:Item( "urn:schemas:mailheader:return-receipt-to" ):Value = cFrom oMsg:Fields:Update() He encontrado varia documentación ...
by FiveWiDi
Sat Apr 06, 2024 7:34 pm
 
Forum: Off Topic / Otros temas
Topic: Acuse d e entrega y acuse de lectura en un mail.
Replies: 2
Views: 1547

FWHMYSQL Insert failing

Dear Friends, I'm having a huge problem with Insert/MySql. I have a Decimal field where I'm tryng to save the value 1(one), but it's saved as 0(zero). Bellow i'm showing a little sample where the problem is happening. function Main()LOCAL oCn, oAnt,nValInss,nValIn13,aVal,cvd_500  ...
by vilian
Fri Apr 05, 2024 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 432
Next

Return to advanced search