Search found 76 matches: lregistered

Return to advanced search

tOutLook2003 sobre mdichild

... encontre que se define en el método Register de la clase tWindow METHOD Register( nClsStyle ) CLASS TWindow local hUser DEFAULT ::lRegistered := .f. // XBPP workaround if ::lRegistered return nil endif #ifdef __CLIPPER__ hUser = GetModuleHandle( "user.exe" ...
by fgondi
Fri Dec 19, 2008 10:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tOutLook2003 sobre mdichild
Replies: 2
Views: 626

... TImage FROM TBitmap DATA nProgress DATA hBitmap (<----- New string DATA hDib (<---- New string DATA hPalette (<----- New String CLASSDATA lRegistered AS LOGICAL METHOD New( nTop, nLeft, nWidth, nHeight, cResName, cBmpFile, lNoBorder,; oWnd, bLClicked, bRClicked, lScroll, lStretch, oCursor,; ...
by Softlog86
Thu Dec 11, 2008 10:15 am
 
Forum: FiveWin for CA-Clipper
Topic: Error TIMAGE:_HDIB
Replies: 11
Views: 4982

Silvio,

You also need:

CLASSDATA lRegistered AS LOGICAL

in Class TBox
by Antonio Linares
Tue Dec 02, 2008 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: I WANT UNDERSTAND HOW !!!!!!!!!!!!!!
Replies: 7
Views: 1280

... CLASS TBar FROM TControl DATA nGroups, nMode DATA nBtnWidth, nBtnHeight DATA l3D, l2007 DATA nRGB1, nRGB2 //FranciscoA: Agosto 31/2008 CLASSDATA lRegistered AS LOGICAL /* METHOD New( oWnd, nBtnWidth, nBtnHeight, l3D, cMode, oCursor, l2007 ) CONSTRUCTOR METHOD NewAt( nRow, nCol, nWidth, nHeight, ...
by FranciscoA
Wed Oct 15, 2008 12:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: No encuentro las mejoras hechas a xbrowse por franciscoA ??
Replies: 17
Views: 4564

... static oTimer, aTimer := {} //----------------------------------------------------------------------------// CLASS TDSay FROM TControl CLASSDATA lRegistered AS LOGICAL DATA l3D DATA cPicture DATA aCaption DATA bGet DATA lShaded, lBox, lRaised DATA nDTop, nDLeft DATA nTTop, nTLeft DATA aRect, ...
by karinha
Tue Sep 23, 2008 7:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Karinha
Replies: 17
Views: 3745

... //----------------------------------------------------------------------------// CLASS TRectang FROM TControl DATA l3D DATA nRGB1, nRGB2 CLASSDATA lRegistered AS LOGICAL METHOD New( nRow, nCol, nHeight, nWidth, oWnd, l3D, nRGB1, nRGB2, cTitle, oFont, nStyle ) CONSTRUCTOR METHOD Display() INLINE ...
by FranciscoA
Sat Sep 20, 2008 3:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pintar Cuadritos de Colores en un dialogo ( Folder )
Replies: 10
Views: 2164

... Nil, Nil } Static nLapsus //----------------------------------------------------------------------------// CLASS TSBrowse FROM TControl CLASSDATA lRegistered AS LOGICAL CLASSDATA aProperties AS ARRAY ; INIT { "aColumns", "cVarName", "nTop", "nLeft", "nWidth", "nHeight" } CLASSDATA lVScroll, lHScroll ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5543

... > What difference are between CLASSDATA and DATA CLASSDATA are properties _shared_ by all objects that belong to a Class. i.e.: CLASSDATA lRegistered AS LOGICAL is a logical value (only one shared item!) used by all objects of that Class. A DATA is a property that just belongs to an object. ...
by Antonio Linares
Wed Aug 27, 2008 10:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Simple RSS reader for your applications...
Replies: 55
Views: 14264

> CLASSDATA lRegistered AS LOGICAL It is needed for new control Classes that are not Windows estandard. Windows API requires to "register" a control class name. It has to be registered only once. That DATA controls that. Estandard ...
by Patrick Mast
Mon Aug 18, 2008 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

Patrick, > CLASSDATA lRegistered AS LOGICAL It is needed for new control Classes that are not Windows estandard. Windows API requires to "register" a control class name. It has to be registered only once. That DATA controls that. Estandard ...
by Carles
Mon Aug 18, 2008 9:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

Antonio Linares wrote:BTW, you are missing this important code in your class header:

CLASSDATA lRegistered AS LOGICAL

that code is a must for user defined control classes.

[Learning mode]
What is "CLASSDATA lRegistered AS LOGICAL" doing for the class? Why exactly is it needed?
[/Learning mode]

;-)

Patrick
by Patrick Mast
Mon Aug 18, 2008 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

Dear Antonio. There wasn't any error after I add the "CLASSDATA lRegistered AS LOGICAL" Code. But the HandleEvent did not run. Attached is my source code. #include "Fivewin.ch" #define MM_WOM_OPEN 955 /* waveform output */ #define MM_WOM_CLOSE ...
by oknbs
Mon Aug 18, 2008 3:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

Thank you for your answer Antonio.

I added "CLASSDATA lRegistered AS LOGICAL" and the problem go away.

Tahnk you.

oknbs.
by oknbs
Thu Aug 14, 2008 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

BTW, you are missing this important code in your class header:

CLASSDATA lRegistered AS LOGICAL

that code is a must for user defined control classes.
by Antonio Linares
Thu Aug 14, 2008 7:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wave Function CALLBACK HandleEvent
Replies: 18
Views: 3232

... reviewing the user defined control Class implementation for now. Silvio's proposal to create a new control Class is the way to go. > CLASSDATA lRegistered AS LOGICAL It is needed for new control Classes that are not Windows estandard. Windows API requires to "register" a control class name. ...
by Antonio Linares
Mon Jul 28, 2008 11:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate
Replies: 94
Views: 17930
PreviousNext

Return to advanced search