Search found 83 matches

by Dietmar Jahnel
Wed Aug 13, 2014 11:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: corrupt library
Replies: 4
Views: 585

Re: corrupt library

Surely you are not using a MSVC 98 (this is compatible with xhb.com) library. - I just installed FWH 14.3 and the libs that came with this build. Changed nothing (just tried again). You may need to create the import library from its DLL using VC98 implib.exe - Does this mean FHW is not compatible wi...
by Dietmar Jahnel
Wed Aug 13, 2014 8:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: corrupt library
Replies: 4
Views: 585

corrupt library

Just tried to update an existing application to FWH 14.3 with xHB (January 2014)
Now I'm getting this:
xLINK: fatal error: Corrupt library: 'C:\fwh\lib\libmysql.lib'.

What can be done?
thanks for help!
Dietmar
by Dietmar Jahnel
Thu Sep 29, 2011 12:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Web Apps
Replies: 8
Views: 1599

Re: Web Apps

I also would love to have FiveWeb by FiveTech.
But as I cannot wait any longer I tried AlphaFive (www.alphafive.com) with good success.
It supports DBFs and the functions are the same as in xHarbour. Their programming language is different, but a lot can be done without programming.
Dietmar
by Dietmar Jahnel
Sat Sep 18, 2010 6:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: Painting problem radio and checkbox
Replies: 3
Views: 564

Re: Painting problem radio and checkbox

Antonio Linares wrote:Dietmar,

Please add this function to your main PRG:

function IsAppThemed()

return .T.
Sorry, nothing changes,
not in our big application and not with my sample.
Dietmar
by Dietmar Jahnel
Fri Sep 17, 2010 10:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Painting problem radio and checkbox
Replies: 3
Views: 564

Painting problem radio and checkbox

Antonio, After changing from FWH 9.7 to 10.8 we have a serious painting problem with certain screens: our application is themed If theme is active, everything is ok If windows classic style is used, strange things happens: If you move the cursor over radio and checkbox, they dissapear: http://www.ri...
by Dietmar Jahnel
Sun Feb 07, 2010 10:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Re: Folder Itemsize

Thank Antonio,
The workaround ist working fine! :D
Dietmar
by Dietmar Jahnel
Thu Feb 04, 2010 8:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Re: Folder Itemsize

REDEFINE Folder SuchFolder ID 210 OF sDlg UPDATE;                 Prompts " Entscheidungen/Literatur " , " Gesetzessuche ", " Kommentare " ;                 DIALOGS "Suchschirm2", "Gesetzessuche", "Kommentare";                 OPTION 1;   ...
by Dietmar Jahnel
Wed Feb 03, 2010 4:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Re: Folder Itemsize

Is the line still erased ? Please post a screenshot, thanks
here it is, at the buttom is is not grey but white

Image
by Dietmar Jahnel
Wed Feb 03, 2010 1:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Re: Folder Itemsize

   oFolder:nFdHeight += 5

try with different values there, thanks :-)
This one does not change the itemsize but the last 5 pixel at the bottom of the folder are not painted..
D.
by Dietmar Jahnel
Wed Feb 03, 2010 12:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Re: Folder Itemsize

Code: Select all

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 10:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

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:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

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 lines of the code above) The problem is that the folders are only painted correct...
by Dietmar Jahnel
Tue Feb 02, 2010 1:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

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
Sun Jan 31, 2010 3:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3456

Folder Itemsize

Antonio, I want to increase the height of the tab control items using SetItemsize when themes are active. It is working fine as long as the transparent clause is not used. Please see the difference in the modified testfld4.prg below once compiled with TRANSPARENT once without (with themes in RC-file...
by Dietmar Jahnel
Tue Aug 11, 2009 12:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Blue in bmp turns grey
Replies: 8
Views: 1043

Re: Blue in bmp turns grey

Yes, though it is much more complex than that. You can check Class TWindow, TListBox and TComboBox and see how Method DrawItem() are implemented. - I'm sure about that. But for FWH-users it will be something like one more parameter, I guess - that's why we all like to work with FWH :D Please try thi...