Search found 38 matches: avars

Return to advanced search

Re: An advice needed to save same variables and its value to mem

field->memo := hb_serialize( aVars )

...

aVars := hb_deserialize( field->memo )
by Antonio Linares
Tue Dec 29, 2020 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: An advice needed to save same variables and its value to mem
Replies: 7
Views: 848

Re: Without Microsoft Office

no found METHOD Merge( cFileNew, aFields, aVars, cAlias ) CLASS TRichEdit5
by Silvio.Falconi
Wed Jun 10, 2020 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Without Microsoft Office
Replies: 4
Views: 610

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

... } ) si nAt es distinto de cero, entonces algún 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: 1330

New FTDN May/Mayo 2016 (FWH 16.05)

... Many thanks to Angel! * New: TRichEdit5 DATA lShowPageBreak METHOD Merge( cFileNew, aFields, aVars, cAlias ) METHOD HidePageBreak() // First test METHOD ImportExcel( nOp, nH ) METHOD ImportWord( nOp ) METHOD SaveAs( cFile ) METHOD SetNotModify() ...
by Antonio Linares
Mon Jul 04, 2016 10:11 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2016 (FWH 16.05)
Replies: 0
Views: 1458

Re: Mi primer programa Fivetouch para crear usuarios

... PRIVATE aSay :={"ID" ,"Nombre","Fecha"} PRIVATE aVars:={"cId","cName" ,"dDate"} MSGINFO(cId_User) IF !Empty(cId_User) MsgAlert(cId_User) GO TOP LOCATE FOR FIELD->USR_ID=cId_User ...
by xfood
Mon Oct 12, 2015 3:52 pm
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2353

Re: Avances con FiveTouch

... cId:=SPACE(03),cName:=SPACE(100),dDate:=DTOC(DATE()),lActive:=.T. PRIVATE aSay :={"ID" ,"Nombre","Fecha"} PRIVATE aVars:={"cId","cName" ,"dDate"} IF !Empty(cId_User) MsgAlert(cId_User) GO TOP LOCATE FOR FIELD->USR_ID=cId_User cId ...
by jnavas
Sat Apr 04, 2015 11:48 am
 
Forum: FiveTouch
Topic: Avances con FiveTouch
Replies: 16
Views: 7239

Re: Inspector de Objetos

... PRIVATE aSay :={"ID" ,"Nombre","Fecha"} PRIVATE aVars:={"cId","cName" ,"dDate"} IF !Empty(cId_User) MsgAlert(cId_User) GO TOP LOCATE FOR FIELD->USR_ID=cId_User cId ...
by jnavas
Sat Apr 04, 2015 5:15 am
 
Forum: FiveTouch
Topic: Inspector de Objetos
Replies: 1
Views: 811

Mi primer programa Fivetouch para crear usuarios

... PRIVATE aSay :={"ID" ,"Nombre","Fecha"} PRIVATE aVars:={"cId","cName" ,"dDate"} IF !Empty(cId_User) MsgAlert(cId_User) GO TOP LOCATE FOR FIELD->USR_ID=cId_User cId ...
by jnavas
Fri Apr 03, 2015 4:47 am
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2353

New FTDN August 2014 (FWH 14.08)

... source: \fwh\source\function\fwdecode.prg * Enhancement: MsgGet( cTitle, cText, aData ) Now MsgGet can handle arrays also. (a) Simplest usage: aVars := { Space(40), CToD(""), .f., 0.00 } lModified := MsgGet( "TEST", "Edit Values", aVars ) (b) Provide Prompts lModified ...
by Antonio Linares
Sat Sep 06, 2014 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August 2014 (FWH 14.08)
Replies: 2
Views: 1843

Re: Problems with xBrowse

Thanks for the tips. I just found why the footers were missing. The first line displayed has character value " " in lieu of 0. So the AEval( oBrw1:aCols, { |o| o:cDataType := 'N' }, aVars[ 1 ] + 2 ) should resolve.
by ADutheil
Sun Jul 21, 2013 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with xBrowse
Replies: 5
Views: 1525

Re: bug in FW 13.04 combobox

André,

Please change this line in your code:

REDEFINE COMBOBOX aGets[ 1 ] VAR aVars[ 1 ] ITEMS aArea ID 101 STYLE CBS_DROPDOWN OF oDlg
by Antonio Linares
Fri May 10, 2013 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug in FW 13.04 combobox
Replies: 82
Views: 29086

PROBLEMAS CON COMUNICACION SERIE

... me llega otra cosa diferente (&wq78Ç), algunos valores del peso pero otros no llegan y caracteres extraños. FUNCTION CapPes_Des(aAlias,aVars) LOCAL cCad cCad := "" // abre puerto IF !AbrePu_Des() RETURN (NIL) ENDIF f_info("Ahora ponga el articulo en la bascula") ...
by maruan14
Mon Aug 06, 2012 9:46 am
 
Forum: FiveWin para CA-Clipper
Topic: PROBLEMAS CON COMUNICACION SERIE
Replies: 10
Views: 5610

Re: hash with (x)harbour - knowledge base

... think I would want to risk using a hash table without knowing the answer to how collisions are handled. Also, I found that syntax used by Marizio (aVars) confusing. This normally represents an array and yet here it is holding a hash table which I have also seen refered to as an object in the literature. ...
by James Bott
Wed Sep 22, 2010 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash with (x)harbour - knowledge base
Replies: 20
Views: 7814

Re: hash with (x)harbour - knowledge base

So aVars := {=>} is an array of hashes? No, it is a single hash, that is essentially an array indexed by strings instead of numeric values. And can you also explain this syntax? aVars[FIELDNAME(nX)] := FieldGet(nX) I am ...
by Enrico Maria Giordano
Wed Sep 22, 2010 5:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash with (x)harbour - knowledge base
Replies: 20
Views: 7814

Re: hash with (x)harbour - knowledge base

Enrico, No, it is the regular syntax required to initialize an empty hash (ie. similar to aVars := {} for arrays). So aVars := {=>} is an array of hashes? And can you also explain this syntax? aVars[FIELDNAME(nX)] := FieldGet(nX) I am guessing that it is creating ...
by James Bott
Wed Sep 22, 2010 4:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash with (x)harbour - knowledge base
Replies: 20
Views: 7814
Next

Return to advanced search