Search found 18 matches: xvar

Return to advanced search

public variables yes or not

... the modified hbclass.ch if classes are going to be used ok Neu Osvaldo Ramirez 23:18 Uhr Just as a note: a static thread is: "STATIC <xVar>" and it will depend on whether that variable is public or private; it is said to be published when its declaration is outside of any procedure ...
by Otto
Wed Sep 23, 2020 7:27 am
 
Forum: mod_harbour
Topic: public variables yes or not
Replies: 0
Views: 271

Space Key on FW_SetUnicode(.T.)

... Mr Rao, I am using FWH version 20.07. if I use FW_Setunicode (.T.) then the space key does not run normally on variable reading @ x, y get oGet xvar of oDlg picture '@!' ..., but it works fine with the xbrowse EDIT_GET command this is only a small example, actually I use a fairly complex program: ...
by Mulyadi
Thu Sep 03, 2020 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Space Key on FW_SetUnicode(.T.)
Replies: 13
Views: 1383

xBrowse cell edit

... a request: when I digit some characters into one cell and than I click with mouse on another place of my program (lost focous) in makerep function xVar has no value. If a exit from cell using the keyboard has the value. How can I modify mo code in order to keep the entered value? Bye marco
by MarcoBoschi
Wed Dec 21, 2016 8:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse cell edit
Replies: 13
Views: 2140

Re: Clase TDb o TDatabase....cual usar?

... ),; ::lBlank := .t. ) METHOD Bof() INLINE ( ::nArea )->( BoF() ) METHOD Close() INLINE ( ::nArea )->( DbCloseArea() ) METHOD SetScope( n, xVar) INLINE ( ::nArea )->( OrdScope( n, xVar ) ) METHOD OrdKeyNo( n, xVar) INLINE ( ::nArea )->( OrdKeyNo() ) METHOD ClrScope( n ) INLINE ( ::nArea ...
by Compuin
Thu Feb 28, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TDb o TDatabase....cual usar?
Replies: 10
Views: 2796

Problem to read file Ini and Xbrowse

... GetIni( cFile, cSection, aEntry[nI]) }) next return aString FUNCTION GetIni( cIni, cSection, cEntry, xDefault ) LOCAL oIni LOCAL xVar := xDefault // DEFAULT cIni := oApp:cIniFile INI oIni FILE cIni GET xVar ; SECTION cSection ; ENTRY cEntry ; DEFAULT xDefault ; OF oIni ENDINI ...
by Eoeo
Sun Sep 16, 2012 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem to read file Ini and Xbrowse
Replies: 2
Views: 587

Problema Get

... " ", pero al solo precionar una tecla aparece "12345", para limpiarlo estoy utilizando. Quiero que parta en blanco nuevamente. xVar:=space(5) oObj:SetText(xVar) keyboard chr(0) inkey() clear typeahead oObj:SetFocus() oObj:SetPos( 0 ) oObj:SetSel( 0, 0 ) Se agradece cualquier ...
by jgayoso
Tue May 10, 2011 3:00 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Problema Get
Replies: 2
Views: 724

AYUDA CON REPORT PREVIEW

... oFont01 CAPTION NRP FOR I=1 TO LEN(COL) T:=TIT[I] D:=DAT[I] COLUMN TITLE &T; DATA &D NEXT ENDREPORT Pero yo quiero hacerlo de esta manera: xvar := '"' + 'Titulo1' + '", "' + 'Titulo2' + '"' REPORT oRpt PREVIEW; TITLE &xvar HEADER "Header1", "Header2" ...
by angstin
Fri Feb 06, 2009 4:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON REPORT PREVIEW
Replies: 3
Views: 469

Lubin, Para codificar : fmimeenc([archivo in],[archivo out]) xvar:=memoread([archivo out]) despues :query("update .... set xcampo='"+xvar+"'") :update() Para descodificar xvar:= :xcampo memowrite([carchivo temp],xvar) fmimedec([carchivo temp],[carchivo ...
by Lautaro
Mon Dec 01, 2008 6:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: dificil guardar Rtf en campo memo (dbf) o campo de Mysql??
Replies: 14
Views: 5536

Ayuda Mysql

... Else cDescripcion += SubStr( cDescrip, i, 1 ) End Next i End Else cDescripcion := '' End oSay : Refresh() Return 0 Function Value(oRs,nPos) Local xVar := oRs:Fields(nPos):Value // ------------------------------------------ // // vemos de que tipos es y lo pasamos a string // ------------------------------------------ ...
by horacio
Tue Nov 18, 2008 2:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Mysql
Replies: 0
Views: 850

... {|| IF(EMPTY(aResult:=SELECEMPRE(@uBuffer)),.F.,.T.)} con aResult no estas haciendo nada ya que esa variable toma el valor de FUNCTION SELECEMPRE( xVar ), has que esta funcion COMP0101( @xVar ) te retorne el Objeto window MDICHILD bValid := {|| IF(EMPTY(oWndEmp:=SELECEMPRE(@uBuffer)),.F.,.T.)} ...
by Daniel Garcia-Gil
Thu Oct 30, 2008 11:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ANTONIO AYUDA CON SETFOCUS A UN MDI
Replies: 9
Views: 1520

... ENDIF ENDIF ENDDO NEXT nCol //la funcion SELECEMPRE() me llama a otra funcion es la que me arma //la ventana MDI de empresas: FUNCTION SELECEMPRE( xVar ) LOCAL aRetorno aRetorno := COMP0101( @xVar ) RETURN aRetorno // esta funcion la uso para darle el focus al windows por el ctitle FUNCTION WndSetFocus(cTitle,oWnd) ...
by angstin
Thu Oct 30, 2008 2:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ANTONIO AYUDA CON SETFOCUS A UN MDI
Replies: 9
Views: 1520

... := .T. ACTIVATE DIALOG oDlg CENTERED return nil I thinked to insert oLbx:bEdit := { || Editar() } Function Editar( oLbx, aMat ) LOCAL xVar LOCAL lSeguir IF oLbx:nColAct == 1 RETURN .F. ENDIF xVar := aMat[ oLbx:nAt, oLbx:nColAct ] lSeguir := oLbx:lEditCol( oLbx:nColAct, @xVar, "@!" ...
by Silvio
Sun Jun 08, 2008 5:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SomeOne can help me ?
Replies: 6
Views: 1285

... DATA cPicMask, cPicFunc, nMaxLen, lEdit, lDecRev, lPicComplex DATA nDispLen, nDispPos, nOldPos, lCleanZero, cDelimit, nMaxEdit DATA lMinusPrinted, xVarGet DATA lDispLen INIT .F. DATA lUndo INIT .F. DATA lLeftJust INIT .F. // to "@B" mask DATA lDispLenChanged INIT .F. // to "@X", "@C", "(" and ")" ...
by zazibr
Thu Mar 13, 2008 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xharbour cvs + fivewin 8.01 = GPF ?
Replies: 9
Views: 4136

... gracia esta en el evento que edita la celda, que recibe como parametro POR REFERENCIA la variable que deseas editar: oBrw:lEditCol(oBrw:nColAct,@xVar,cPict,bValid,RGB(0,0,0),Rgb(255,255,255)) @xVar es el valor que tu quieres editar, puedes hacer por ejemplo xVar := 0 o bien xVar := SPACE(20) ...
by thefull
Fri Oct 13, 2006 4:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Browse con Combobox
Replies: 7
Views: 2455

... gracia esta en el evento que edita la celda, que recibe como parametro POR REFERENCIA la variable que deseas editar: oBrw:lEditCol(oBrw:nColAct,@xVar,cPict,bValid,RGB(0,0,0),Rgb(255,255,255)) @xVar es el valor que tu quieres editar, puedes hacer por ejemplo xVar := 0 o bien xVar := SPACE(20) ...
by R.F.
Tue Oct 10, 2006 5:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Browse con Combobox
Replies: 7
Views: 2455
Next

Return to advanced search