FWH provides the function FW_ValToExp( uVal ) Where is the function Fw_ValToExp_Mia() from? In what way it is different from the original FW_ValtoExp() function?
what is Code: :nEditTypes := { 1,1,1 } i "normal" knew Code: :nEditTypes := EDIT_GET so what is Array mean :?: oBrw:anydatas := uVal is a a short cut for AEval( oBrw:aCols, { |o| o:anydata := uVal } ) Note: anydatas = 'anydata' + 's' is plural of 'anydata' oBrw:anydatas ...
... además del método actual OrdScope() Sintaxis: SetScope() sin parámetros: No hay acción SetScope( nil ) // elimina todos los ámbitos SetScope( uVal ) // Establece los ámbitos superior e inferior en uVal SetScope( uTop, uBot ) // Ambito superior uTop y ámbito inferior uBot // Valor NIL elimina ...
... in addition to the present method OrdScope() Syntax: SetScope() with no params: No action SetScope( nil ) // clear all scopes SetScope( uVal ) // Set both top and bottom scopes to uVal SetScope( uTop, uBot ) // TopScope uTop and Bottom Scope uBot // NIL value removes that scope After ...
... ) static function CloseTag( cTag ) static function ImageType( cBuf ) static function IsBinaryData( cData, nLen ) static function MH_ValToHTML( uVal, cTag ) These functions are working well and are generic functions. If we see that there is some interest we will post the code for use by all. ...
... Thanks to many that have contributed to it: http://forums.fivetechsupport.com/viewtopic.php?f=6&t=32879&start=0 * GET: - New method Reset( uVal/bNewSetGet, [cPic] ) --> nil Allows to reset the get with a new variable of a different data type and optionally use a new picture.
* New: function FW_DBFLOOKUP( uVal, [cOrder], bcRetExprn ) --> uResult uVal : Value / Expression to be lookedup ( seek or locate ) cOrder : OrderName for seek. Or field name for locate. Omit if uVal is an expression bcRetExpr: codeblock/string: ...
... Solucionado. http://forums.fivetechsupport.com/viewtopic.php?f=6&t=39322&p=234654#p234654 * Función FWCheckExpression( cExpression, [uVal], [@uRet] ) --> lValid El tercer nuevo parámetro opcional por referencia contiene el resultado de la evaluación de la expresión. * xbrowser.prg: ...
... Now fixed. http://forums.fivetechsupport.com/viewtopic.php?f=6&t=39322&p=234654#p234654 * function FWCheckExpression( cExpression, [uVal], [@uRet] ) --> lValid Optional 3rd new param by ref contains the result on evaluation of the expression. * xbrowser.prg: Pressing Ctrl-E + ...
... la webcam. Muchas gracias a todas las personas que han contribuido a ello: viewtopic.php?f=6&t=32879&start=0 * GET: - Nuevo método ( uVal/bNewSetGet, [cPic] ) --> nil Permite restablecer el get con una nueva variable de un tipo de datos diferente y, opcionalmente, usar un nuevo ...
... Thanks to many that have contributed to it: http://forums.fivetechsupport.com/viewtopic.php?f=6&t=32879&start=0 * GET: - New method Reset( uVal/bNewSetGet, [cPic] ) --> nil Allows to reset the get with a new variable of a different data type and optionally use a new picture. * New class ...
Can you please modify xbrowse.prg as below and try? Please locate "static function XbrLbxLookUp( uVal, aBound, aText, lBlank )" in the xbrowse.prg. Inside this function locate this line: if ! Empty( uVal ) Please change it as: if .T. //! ...
... oRs := FW_OpenRecordSet( oCn, "select * from users" ) XBROWSER oRs FASTEDIT // Adding new record oRs:AddNew() oRs:Fields(...):Value := uVal .... .... oRs:Update() // This is necessary to save changes // oRs:Requery() // Do not use this. Not necessary
... paste to another record: oDbf:GoTo( nSrcRec ) ( oDbf:cAlias )->( DBGOTO( nNewRec ) ) oDbf:nBufRec := nNewRec oDbf:Save() - New Method LookUp( uVal, cOrder, bcRetExprn ) --> uValue - It is now possible to swap browse objects at runtime. - General dbf utility functions contained in database.prg ...
... := 15 but if I do with TdataRow I have a error . Es: oRec:NUMBER := 15 oRec:Save() I think that the problem is in METHOD dr_FieldPut( cnfld, uVal ) CLASS TDataRow ... if ::lReadOnly .or. ( Len( ::aData[ fld ] ) > 2 .and. ::aData[ fld, 3 ] == .f. ) ...