Search found 45 matches: cvarname

Return to advanced search

drop to GET how ?

... .AND. nCol <= oObj:nLeft + oObj:nWidth                  // drop to GET                  IF cVALTYPE = "A"                     oObj:cVarName := aFiles[1]                  ELSE                     oObj:cVarName := aFiles                  ENDIF                  oObj:refresh()  ...
by Jimmy
Wed May 24, 2023 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: drop to GET how ?
Replies: 5
Views: 241

Re: FOLDEREX ON PAINT -> TFolderEx() how ?

... nOption, bPopUp, lStretch, ; cLayOut, bBmpAction, nBright, lAnimate, nSpeed, oFontDefault, ; lTransparent, aDialogs, lBorder, nClrPane, cVarName ) so ON PAINT TAB  -> bClrTabs ON PAINT TEXT -> bClrText
by Jimmy
Fri May 19, 2023 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FOLDEREX ON PAINT -> TFolderEx() how ?
Replies: 2
Views: 200

Re: Child OF oWnd

...   x :=  hb_valToExp(oMain:aControls[ii]) __itemSetObj( __itemSetRef( {{HWND, 394868}, {NOLDPROC, 4294903408}, {CCAPTION, }, {CVARNAME, oSayActive}, {NID, 102}, {TWINDOW:NTOP, 864}, {TWINDOW:NLEFT, 10}, {NBOTTOM, 893}, {NRIGHT, 649.00}, {NSTYLE, 1342177280}, {NCLRPANE, 16777215}, ...
by Jimmy
Thu Nov 10, 2022 5:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Child OF oWnd
Replies: 7
Views: 341

Re: Mem Files

... 0, 2) Fseek(nMemHandle,0) nCount := 1 Do While Fseek(nMemHandle, 0, 1)+1 < nMemLength nMemWidth:= space(18) Fread( nMemHandle, @nMemWidth, 18 ) cVarName := Left( nMemWidth, At( Chr(0) , nMemWidth ) -1 ) cVartype := Substr( nMemWidth, 12, 1 ) cVarRec := Bin2w( Right( nMemWidth, 2 ) ) nMemCount:= ...
by Silvio.Falconi
Fri Oct 08, 2021 7:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mem Files
Replies: 11
Views: 713

Re: tScrollPanel and Pelles C

My mistake, you have to call it this way:

// Class TPanel Method Redefine( nId, oWnd, lDesign, cVarName, lBorder )

oPanel := TScrollPanel():Redefine( 101, oDlg )

Also, you have to call oPanel:SetFont( oDlg:oFont ) from the ON INIT clause of the ACTIVATE DIALOG
by Antonio Linares
Wed May 05, 2021 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tScrollPanel and Pelles C
Replies: 7
Views: 1148

Re: TGet class difference FWH11.08 and 20.04 help please ...

DATA cVarName of any control/window is expected to store the name of the variable representing the control/window. But in case of TGet, it was storing the name of the variable being edited. This was fixed in FWH1207, but resulted ...
by nageswaragunupudi
Mon Mar 01, 2021 2:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet class difference FWH11.08 and 20.04 help (Solved) ...
Replies: 3
Views: 720

Re: TGet class difference FWH11.08 and 20.04 help please ...

Yes. In version 11.08, both oGet:cVarName and oGet:oGet:Name contained the symbolic name of the variable being edited. This was correct. The behavior of Gets created from source code as well as from resources was the same. But this change ...
by nageswaragunupudi
Sat Feb 20, 2021 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet class difference FWH11.08 and 20.04 help (Solved) ...
Replies: 3
Views: 720

Re: Random -> Error BASE/1004 Message not found

Thank you Antonio, I'm waiting for it! Here's another issue. I noticed that the new TWindow class and most of inherited classes uses a :cVarname variable. Now, what if this variable is another Class Variable? I try to explain in the following example: #ifdef HARBOUR32    ::oWnd := ...
by chiaiese
Tue May 05, 2020 10:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Random -> Error BASE/1004 Message not found
Replies: 5
Views: 748

Re: resize a position with fw_drawimage

... nHeight, cResName, cBmpFile, lNoBorder,; oWnd, bLClicked, bRClicked , lScroll, lStretch, oCursor,; cMsg, lUpdate, bWhen, lPixel, bValid, lDesign, cVarName ) CLASS TImage regards Uwe :D Uwe, Sorry on BTnBMP is possible to place sub-images inside on any position of the button you must make obtn:bPainted ...
by Silvio.Falconi
Thu May 16, 2019 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: resize a position with fw_drawimage
Replies: 12
Views: 1565

Re: resize a position with fw_drawimage

... nHeight, cResName, cBmpFile, lNoBorder,; oWnd, bLClicked, bRClicked , lScroll, lStretch, oCursor,; cMsg, lUpdate, bWhen, lPixel, bValid, lDesign, cVarName ) CLASS TImage regards Uwe :D
by ukoenig
Thu May 16, 2019 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: resize a position with fw_drawimage
Replies: 12
Views: 1565

Re: How to implement a scrolling message?

... DATA lBox INIT .t. METHOD New( nRow, nCol, nWidth, nHeight, cText, oWnd, oFont, ; nSpeed, nClrText, nClrBack, lHoriz, lPixels, lDesign, cVarName, lBox ) CLASS TScrollMsg DEFAULT ... ... lBox := .t. METHOD Paint() CLASS TScrollMsg if ::lBox ::oWnd:Box( ::nTop - 1, ::nLeft - 1, ::nBottom ...
by ukoenig
Wed Apr 24, 2019 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement a scrolling message?
Replies: 21
Views: 4742

A problem with < oCtrl:cVarName > from TRadio and TDatepick

Hello, I noticed a problem using < oCtrl:cVarName > that returns the object-name. The function shows all infos of a object on focus http://www.pflegeplus.com/IMAGES/Focus2.jpg because of the error ( NIL ) I replaced the info ...
by ukoenig
Fri Mar 29, 2019 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem with < oCtrl:cVarName > from TRadio and TDatepick
Replies: 0
Views: 418

Re: funciones de FWH y Harbour en un archivo .txt

... ReadInsert(<lToggle>)->lCurrentMode ReadKey()->nReadkeyCode ReadModal(<aGetList>)->Nil ReadVar()->cVarName RecCount()->nRecords RecNo()->nRecord RecSize()->nBytes RemAll(<cString>,[<xChar>])->cResult RemLeft(<cString>,[<xChar>])->cResult ...
by rubenfernandez01
Sun Oct 22, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

Re: funciones de FWH y Harbour en un archivo .txt

... ReadInsert(<lToggle>)->lCurrentMode ReadKey()->nReadkeyCode ReadModal(<aGetList>)->Nil ReadVar()->cVarName RecCount()->nRecords RecNo()->nRecord RecSize()->nBytes RemAll(<cString>,[<xChar>])->cResult RemLeft(<cString>,[<xChar>])->cResult ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

Re: several get's in a loop

René,

> I get all classnames, but how to retrieve the name of the class (Like oGet1, oGet2...)

If you mean the name of the object:

oControl:cVarName

if you mean its class name:

oControl:ClassName()
by Antonio Linares
Thu Nov 24, 2016 10:22 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: several get's in a loop
Replies: 3
Views: 1088
Next

Return to advanced search