Search found 150 matches: dietmar

Return to advanced search

Re: Folder Itemsize

Dietmar,

oFolder:nFdHeight keeps the height value of the tabs but does not modify it. That value is used to place the top margin of the contained dialogs.

Is the line still erased ? Please post a screenshot, thanks
by Antonio Linares
Wed Feb 03, 2010 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar, Then it means that DrawPBack() is not erasing that line. Lets modify oFolder:nFdHeight which holds the height of the tabs to position the contained dialogs:    REDEFINE FOLDER oFolder             ;        ID 102   ...
by Antonio Linares
Wed Feb 03, 2010 12:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Code: Select all  Expand view

function DrawPBack()
return nil
 

This way no fill painting will be done and we can check if the line is visible. Thanks for your feedback :-)


Sorry, same result, the line is not visible,
Dietmar
by Dietmar Jahnel
Wed Feb 03, 2010 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar, When clause TRANSPARENT is used on the folder, it sets all the contained dialogs to call DrawPBack() to fill each dialog surface. This function may be erasing that line. To check it, please add this dummy function ...
by Antonio Linares
Wed Feb 03, 2010 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

with 19 the painting is ok, but this is standard size.
In our case 25 would look a lot better. We use this in another folder, where transparent is not needed.
The TRANSPARENT-clause seems to erase the line under the folders??
Can this be fixed?
Dietmar
by Dietmar Jahnel
Wed Feb 03, 2010 10:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar, Ok, Now I see what you mean, thanks :-) Using 20, instead of 25, seems to improve it     ACTIVATE DIALOG oDlg CENTER;       On INIT IIF(IsThemeActive(), oFolder:SetItemsize( ,20 ), ) //---> ...
by Antonio Linares
Wed Feb 03, 2010 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar, The method that you have to use is already implemented in FWH Class TFolder :-)     ACTIVATE DIALOG oDlg CENTER ;       ON INIT oFolder:SetItemSize( 200, 30 )  Antonio, I know and use this method. (see last ...
by Dietmar Jahnel
Wed Feb 03, 2010 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar,

The method that you have to use is already implemented in FWH Class TFolder :-)
Code: Select all  Expand view

    ACTIVATE DIALOG oDlg CENTER ;
       ON INIT oFolder:SetItemSize( 200, 30 )
 
by Antonio Linares
Wed Feb 03, 2010 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar,

You could easily test it doing:
Code: Select all  Expand view

SendMessage( oFolder:hWnd, TCM_SETPADDING, 0, nMakeLong( 20, 20 ) )
 
by Antonio Linares
Wed Feb 03, 2010 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

Dietmar, We are reviewing Windows include\commctrl.h where all styles and messages for folders are defined. Maybe this message could help: TCM_SETITEMSIZE http://msdn.microsoft.com/en-us/library/bb760635(VS.85).aspx ...
by Antonio Linares
Wed Feb 03, 2010 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: Folder Itemsize

To make things clearer, this it the result:

Image

Without transparent clause, the folders are painted ok.

How can this be fixed?
Dietmar
by Dietmar Jahnel
Tue Feb 02, 2010 1:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Folder Itemsize

... below once compiled with TRANSPARENT once without (with themes in RC-file) I'm using FWH 9.07. How can this be fixed? Thanks for help, Dietmar #include "fivewin.ch"PROCEDURE main()    LOCAL oDlg, oFolder    LOCAL cContrato:=space(13)  ,;          cNombre:=space(30) ...
by Dietmar Jahnel
Sun Jan 31, 2010 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3541

Re: FWH as web application ?

Hi Dietmar,

Would it be possible to send it to me too please?

peterh (at) plsoft (dot) co (dot) uk

Regards,

Pete
by PeterHarmes
Tue Aug 11, 2009 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH as web application ?
Replies: 20
Views: 4082

Re: FWH as web application ?

Hi Dietmar,

Can you please send me a copy as well.....

jeff (at) can-soft (dot) net
by Jeff Barnes
Tue Aug 11, 2009 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH as web application ?
Replies: 20
Views: 4082

Re: Blue in bmp turns grey

... work with FWH :D Please try this: oBitmap:lTransparent = .F. - sorry, no changes. For a quick solution I change the first pixel of the bitmap... Dietmar
by Dietmar Jahnel
Tue Aug 11, 2009 12:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Blue in bmp turns grey
Replies: 8
Views: 1129
PreviousNext

Return to advanced search