Search found 12 matches: lresize16

Return to advanced search

Dialogos dentro de un Folder (Resize16)

... INIT ( oDlg:Move( nHeight + 2, 3 ) ) ; VALID .f. // to avoid exiting pressing Esc !!! #else if ::oWnd:IsKindOf( "TDIALOG" ) if ! ::oWnd:lResize16 ACTIVATE DIALOG oDlg NOWAIT ; ON INIT oDlg:Move( nHeight - 1, 1 ) ; VALID .f. // to avoid exiting pressing Esc !!! else ACTIVATE DIALOG oDlg ...
by cnavarro
Tue Dec 04, 2012 9:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos dentro de un Folder (Resize16)
Replies: 0
Views: 372

Re: Deshabilitar botón

El botón HELP (?) se que se quita así: oDlg:lHelpIcon:=.F.

La clase DIALOG tiene ademas estas otras datas: lResize16, lCentered, lModal, lModify

Aunque he probado esto y funciona: DEFINE WINDOW soWnd TITLE "..." MDI ICON soIco STYLE 255 quita el botón [X].
by JmGarcia
Wed Oct 20, 2010 3:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Deshabilitar botón
Replies: 9
Views: 1092

Re: TGET, ACTION, VALID problem?

... = .T. // .T. so the GET VALID is not fired when the button is focused if Upper( ::oWnd:ClassName() ) == "TDIALOG" .and. ::oWnd:lResize16 ::oBtn:nWidth = ::nHeight - 5 ::oBtn:nHeight = ::nHeight - 2 ::oBtn:nLeft = ( ::nWidth * 1.167 ) - ::nHeight+iif(::nWidth>200,1,2) // By ...
by dutch
Fri Mar 26, 2010 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGET, ACTION, VALID problem?
Replies: 2
Views: 625

Re: FWH/xHarbour Menus

... AS LOGICAL DATA cResName, cResData DATA hResources DATA lCentered, lModal, lModify DATA bStart DATA lHelpIcon // Windows 95 help icon pressed DATA lResize16 // resize 32 bits resources to look like 16 bits ones DATA lTransparent // transparent controls when using bitmaped brushes METHOD New( nTop, ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 7757

Re: Resource Editor problem with TGET (GetBtn)

Dear Antonio, ::lResize16 is Dialog DATA. It is not exist in TGET. If I'm not wrong, Dialog will be resize all object in DIALOG ACTIVATE. How can TGET will know ::lResize16? Regards, Dutch Dutch, We can implement your fix this way: ...
by dutch
Sun Feb 08, 2009 1:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resource Editor problem with TGET (GetBtn) *Worked OK now*
Replies: 12
Views: 1906

Marco,

You have to modify Class TFolder Method LoadPages to admit a third parameter:

METHOD LoadPages( aResNames, bRedefineControls, lResize16 ) CLASS TFolder

and then issue an ACTIVATE DIALOG oDlg ... RESIZE16 if lResize16 is true
by Antonio Linares
Fri Jun 08, 2007 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oFld:LoadPages and RESIZE16
Replies: 1
Views: 591

Michel,

You may change the Class TDialog and set ::lResize16 as .T. by default, so you don't have to modify your source code
by Antonio Linares
Thu Feb 15, 2007 5:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Layout of resources
Replies: 3
Views: 928

... i have modified any fwh classes :D A modification creates the problem, ok, but which? I have modified: 1) In Dialog.prg in Activate Method default lResize16 is .T. 2) In ErrorSys.prg many modifications 3) In Folder.prg I have added the management lResize16 4) In Tget and MGet I have insert the ...
by Ugo
Sat Feb 03, 2007 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TreeView problem
Replies: 17
Views: 6253

sample error

... bytes Time from start: 0 hours 0 mins 0 secs Error occurred at: 12/08/06, 00:53:38 Error description: Error BASE/1004 Message not found: TWINDOW:LRESIZE16 Args: [ 1] = O Object Stack Calls =========== Called from: => __ERRRT_SBASE(0) Called from: => TWINDOW:ERROR(179) Called from: source\rtl\tobject.prg ...
by Ehab Samir Aziz
Thu Dec 07, 2006 10:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sample error
Replies: 1
Views: 585

Your Class TWindow may be missing the DATA lResize16. Please add it.


Surprisingly it is missing. Adding it and initializing it to false solved the issue. Thanks.

BTW, I'm using FWH 2.8 Nov, the latest built
by hua
Wed Dec 06, 2006 1:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error BASE/1004 Message not found: TWINDOW:LRESIZE16
Replies: 4
Views: 1235

Your Class TWindow may be missing the DATA lResize16. Please add it.

Probably you are mixing different FWH versions source code.
by Antonio Linares
Tue Dec 05, 2006 8:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error BASE/1004 Message not found: TWINDOW:LRESIZE16
Replies: 4
Views: 1235

Error BASE/1004 Message not found: TWINDOW:LRESIZE16

Testing the following code, I got an error as mentioned above. Where did I go wrong? #include "FiveWin.ch" static oWnd //----------------------------------------------------------------------------// function Main() local oFld1 USE Numbers INDEX ON Str( Numbers->Number, ...
by hua
Tue Dec 05, 2006 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error BASE/1004 Message not found: TWINDOW:LRESIZE16
Replies: 4
Views: 1235

Return to advanced search