Search found 109 matches: varget

Return to advanced search

Re: New FTDN March/Marzo 2010 (10.3)

... oBrw:lFormulaEdit := .t. ( default .f. ) Notes: This feature is still under development. oCol:bEditValid can not contain screen i/o and oGet:VarGet can be used only once. oGet:VarPut() can not be used. * Enhancement: XBrowse: K_F2 also triggers edit, similar to Excel. Enter key triggers Edit ...
by Antonio Linares
Thu Apr 01, 2010 2:41 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2010 (10.3)
Replies: 3
Views: 2691

Re: Finding out an Edit field has been updated

I use :

oGet:bGotfocus := {||Mem:=oGet:Varget() }

Mem can then be compared with the new varget()

Frank
by demont frank
Sat Mar 20, 2010 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding out an Edit field has been updated
Replies: 6
Views: 837

Re: error on get value compiling from clipper

I try with varput and varget and also with oEdit:oGet:=uVar not run !!! If I try with If ValType(uVar)<>"L" oEdit:varput(uVar) Endif MAKE THIIS ERROR Application =========== Path and name: C:\work\prg\fsdi2006\prg\testhil.Exe ...
by Silvio
Wed Mar 17, 2010 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error on get value compiling from clipper
Replies: 5
Views: 1091

Re: sobre combobox

oCombo:varGet()
by James Bott
Thu Dec 31, 2009 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sobre combobox
Replies: 3
Views: 441

Re: ** ListBox column in the XBROWSE

... := { |oCol,uOldVal| oBrw:Dis:Value := ( oCol:Value != 0 ), ; oBrw:MakeTotals(), oBrw:RefreshFooters() } :bEditValid := { |oGet,x| x := oGet:oGet:VarGet(), ( x >= 0 .and. x <= 99 ) } END // need to add bEditValid for other numeric columns also WITH OBJECT oBrw:Dis :SetCheck() :bOnChange ...
by shri_fwh
Mon Dec 21, 2009 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ** ListBox column in the XBROWSE
Replies: 4
Views: 1700

Re: Problemas con TRichEdit

... := "Zoom" @ .27, 52.5 COMBOBOX oItem VAR cFont ITEMS aFonts ; SIZE 170, 100 FONT oFont ; ON CHANGE ( oRTF:SetFontName( oItem:VarGet() ), oRTF:SetFocus() ) ; OF oWnd:oBar oItem:cToolTip := "Font Name" @ .38, 74.2 GET oSize VAR nSize OF oWnd:oBar ; FONT oFont SIZE ...
by triumvirato
Fri Dec 11, 2009 7:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con TRichEdit
Replies: 13
Views: 4781

COMBOBOX CBS_SIMPLE

... ID 800 OF oCitas UPDATE The combobox when introducing a new element in the list, the variable "cOtrosBenef" I get empty, and also Oget: VarGet (), not how to recover the value entered in the combobox, besides if I use the mouse to move the combobox loses the value entered. There is another ...
by Blessed
Thu Nov 19, 2009 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX CBS_SIMPLE
Replies: 5
Views: 840

Re: COMBOBOX CBS_SIMPLE

... tratando con un combobox Simple, con una arreglo en memoria, cuando selecciono un elemento de la lista no tengo problema, la variable, y el Combo:VarGet(), me proporcionan el dato, para yo guardarlo en una tabla, para posterior uso. El problema lo tengo al agregar uno nuevo al combobox, ambas ...
by Blessed
Thu Nov 19, 2009 6:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMBOBOX CBS_SIMPLE
Replies: 1
Views: 309

COMBOBOX CBS_SIMPLE

... oCitas UPDATE  El combobox cuando se introduce un nuevo elemento en la lista, la variable "cOtrosBenef" me aparece vacia, y tambien oGet:VarGet(), no se como recuperar el valor introducido en el combobox, ademas si uso el mouse para movilizarme del combobox pierde el valor introducido. ...
by Blessed
Wed Nov 18, 2009 6:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMBOBOX CBS_SIMPLE
Replies: 1
Views: 309

Re: Propiedades del GET

... que hago de él necesito saberlo, después necesitaría saber el valor original del get antes de su edición, el buffer lo puedo saber por oGet:Varget(), que contiene el valor después de la edición. Por ponerte un ejemplo, imagina un albarán que al hacerlo se le cambian algunos datos que vienen ...
by Pedro
Mon Nov 09, 2009 3:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Propiedades del GET
Replies: 8
Views: 1556

Re: puedo ocupar DBCOMBO para ingresar informacion tipo GET (ok)

... ITEMFIELD "CODI_REGION" para obtener el valor de lo que el usuario digito en la busqueda hice esto cbusqueda := oCbx:VarGet() y esto ya lo puedo buscar en la tabla para ver si es un registro nuevo... Gracias...
by VPOZO
Sat Oct 03, 2009 3:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: puedo ocupar DBCOMBO para ingresar informacion tipo GET
Replies: 3
Views: 611

Re: enviar emails desde fwh

... Static Function fAddAttach( oGet ) Local cFile, ; cAttach := oGet:VarGet() cFile := cGetFile( "*.*", "Selecciona el archivo" ) If ! Empty( cFile ) cAttach := Lower( PadR( AllTrim( cAttach ) + If( ...
by FranciscoA
Wed Feb 25, 2009 2:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar emails desde fwh
Replies: 44
Views: 21016

Re: To Antonio: ReadVar()

Hi Anser No. oGet:VarGet returns the contents of the get. (e.g. "Smith") oGet:Name returns the name of the GET's variable (e.g. "Surname"). My suggested changes to FWH code are no big deal and there are usually ...
by Colin Wisbey
Sat Jan 24, 2009 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: ReadVar()
Replies: 10
Views: 2472

Re: To Antonio: ReadVar()

Dear Mr.Colin
Are you talking about the substitute of oGet:VarGet(). Correct me if I am wrong. I could not understand the advantage

Regards

Anser
by anserkk
Sat Jan 24, 2009 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: ReadVar()
Replies: 10
Views: 2472

Euclides,

I'm not sure exactly what you are doing, but nKey is the last key entered.

Are you using oGet:varGet() to get the contents of the field?

Regards,
James
by James Bott
Fri Dec 05, 2008 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Virtual Keyboard
Replies: 20
Views: 4139
PreviousNext

Return to advanced search