Search found 109 matches: varget

Return to advanced search

Re: How to implement GETACTIVE()?

... sample run OK Valid clause not allow move to second GET if GetVar() is empty If you use xHarbour, you may have to use (GetActive (oDlg): oGet: VarGet ()) in case of GETs controls No, it doesn't work either, sorry. EMG Yes, yes, run OK, loo https://i.postimg.cc/YC0scBJ8/enrico03.gif
by cnavarro
Tue Oct 27, 2020 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement GETACTIVE()?
Replies: 31
Views: 1909

Re: How to implement GETACTIVE()?

... sample run OK Valid clause not allow move to second GET if GetVar() is empty If you use xHarbour, you may have to use (GetActive (oDlg): oGet: VarGet ()) in case of GETs controls No, it doesn't work either, sorry. EMG
by Enrico Maria Giordano
Tue Oct 27, 2020 3:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement GETACTIVE()?
Replies: 31
Views: 1909

Re: How to implement GETACTIVE()?

... sample run OK Valid clause not allow move to second GET if GetVar() is empty If you use xHarbour, you may have to use (GetActive (oDlg): oGet: VarGet ()) in case of GETs controls
by cnavarro
Tue Oct 27, 2020 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement GETACTIVE()?
Replies: 31
Views: 1909

Re: New FTDN February 2020 (FWH 20.02)

... de contraseñas, la configuración de SET INSERT se respeta para insertar / sobrescribir. - En los "gets" de contraseñas, los valores de :VarGet(), :cText son los esperados cuando son consutados en el bloque de código bChange. - Los "gets" de contraseñas: Los puntos planteados ...
by Antonio Linares
Fri Feb 28, 2020 7:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2020 (FWH 20.02)
Replies: 1
Views: 4614

New FTDN February 2020 (FWH 20.02)

... as picture clause "@!" - In password gets, setting of SET INSERT is respected for insert/overwrite. - In password gets, Values of :VarGet(), :cText are as expected when queried in bChange block - Password Gets: The points raised in http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38415 ...
by Antonio Linares
Wed Feb 26, 2020 10:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2020 (FWH 20.02)
Replies: 1
Views: 4614

Re: Quisiera empezar a probar LetoDB

Hola, Hola José Vicente, rescato este viejo post para preguntarte qué tal te fue con LetoDb. Indagando he visto un usuario en GitHub que lo mantiene bastante actualizado : https://github.com/elchs/LetoDBf Gracias, Esta és la mejor version que hay, pero piensa en bajarte la última version 3.2...
by Carles
Fri Feb 01, 2019 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Quisiera empezar a probar LetoDB
Replies: 6
Views: 1187

Re: XBROWSE bEditValid bug? updated!

Thanks, what are the difference between oGet:varget() and eval( oGet:bSetGet) ?

The second bug is definitive!
if :lAutosave := .T. for this column, the bEditValue is evaluated twice if i leave the column with ENTER but when leaving with mouse sometime runtime-error nLastkey == NIL.
by byte-one
Wed Jan 16, 2019 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE bEditValid bug? updated!
Replies: 5
Views: 963

Re: Como saber si se cambio un dato de un dialogo con 50 Vars

... GET cambió Si las 50 variables pertenecen a un array, entonces puedes hacer: nAt = AScan( aVars, { | uValue, nIndex | oDlg:aControls[ nIndex ]:VarGet() != uValue } )
by Antonio Linares
Sat Aug 18, 2018 7:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como saber si se cambio un dato de un dialogo con 50 Vars
Replies: 6
Views: 1310

tTimePick

... is disabled as expected , the checkbox must be checked . Msginfo shows current time Disabling the checkbox : tTime has value 00:00:53 ALso oTime:Varget() shows this value when the dialog is closed. How can we know that the time is checked or not ? 00:00:53 can be a real time !!! Frank
by Franklin Demont
Fri Aug 17, 2018 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tTimePick
Replies: 0
Views: 458

Re: Ads..por favor

Saludos Giovany Mira este Trozo de Codigo   oDs_CepSql:DataLoad()   Do While !oDs_CepSql:Eof()     ?oDs_CepSql:VarGet("CEP")+" "+oDs_CepSql:VarGet("CIDADE")       ?oDs_CepSql:CEP  //+" "+oDs_CepSql:CIDADE     oDs_CepSql:Skip()     oDs_CepSql:DataLoad() ...
by ruben Dario
Thu Aug 31, 2017 12:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ads..por favor
Replies: 44
Views: 7171

change a font on line

... SPINNER MIN 6 MAX 99 ; MESSAGE "Changes the font size of the selection" oFonts:bChange := { || WndChild(): SetFont ( oFonts:varget() ), ; WndChild():SetFocus() } the WndChild() function return the oControl SAY active ( lactive) on dialog it make error because not found hfont ...
by Silvio.Falconi
Wed Feb 08, 2017 11:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change a font on line
Replies: 3
Views: 905

Re: METHOD SaveToFile of trichedit is wrong ?

... oSize VAR nSize OF oWnd:oBar ; FONT oFont SIZE 20, 19 PICTURE "99" ; SPINNER MIN 6 MAX 99 ; ON CHANGE ( WndChild():SetFontSize( oSize:VarGet() ), WndChild():SetFocus() )
by Silvio.Falconi
Mon Apr 25, 2016 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SaveToFile of trichedit is wrong ?
Replies: 2
Views: 589

ComboBox DropDown modificacion a clase

... ) ) .or. nKey == VK_RETURN // mi modificacion ************** if ::bChange != nil // estas son la lineas que se agregaron, Eval( ::bChange, Self, ::VarGet() ) // ahora funciona a la perfeccion endif // sin ocasionar problemas ************** ::oWnd:GoNextCtrl( ::hWnd ) return 0 else if nKey == VK_TAB ...
by ratazul
Mon Apr 18, 2016 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ComboBox DropDown modificacion a clase
Replies: 2
Views: 709

Re: Input form

... set. What am I missing? Thanks, Vytas FUNCTION Test_Chk(oSpec_Nu1_1,oGenus1_1,oSpecies1_1,oVariety1_1,oPercent1_1,oEdit,aLookup) Sp := oSpec_Nu1_1:varGet() Loc := ASCAN(aLookup, {|aVal| aVal[1] == Sp}) IF Loc > 0 oGenus1_1:VarPut(aLookup[Loc,2]) oSpecies1_1:VarPut(aLookup[Loc,3]) oVariety1_1:VarPut(aLookup[Loc,4]) ...
by Vytas
Wed Aug 05, 2015 5:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Input form
Replies: 8
Views: 1700

Re: XBROWSE exclude or control ARROW keys in edit mode

... the producitid. If the user cancels the operation, return nil. Edit validations function is like this: function valid ...( oGet, oCol ) if oGet:VarGet() is not valid oGet:cText := oCol:Value // restore the original value oCol:lBtnActopm := .t. // Indiacate to xbrowse to automaticall run help ...
by nageswaragunupudi
Sat Nov 29, 2014 7:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE exclude or control ARROW keys in edit mode
Replies: 13
Views: 5263
Next

Return to advanced search