Search found 83 matches
- Wed Aug 13, 2014 11:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: corrupt library
- Replies: 4
- Views: 611
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...
- Wed Aug 13, 2014 8:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: corrupt library
- Replies: 4
- Views: 611
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
Now I'm getting this:
xLINK: fatal error: Corrupt library: 'C:\fwh\lib\libmysql.lib'.
What can be done?
thanks for help!
Dietmar
- Thu Sep 29, 2011 12:29 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Web Apps
- Replies: 8
- Views: 1659
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
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
- Sat Sep 18, 2010 6:08 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Painting problem radio and checkbox
- Replies: 3
- Views: 599
Re: Painting problem radio and checkbox
Sorry, nothing changes,Antonio Linares wrote:Dietmar,
Please add this function to your main PRG:
function IsAppThemed()
return .T.
not in our big application and not with my sample.
Dietmar
- Fri Sep 17, 2010 10:10 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Painting problem radio and checkbox
- Replies: 3
- Views: 599
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...
- Sun Feb 07, 2010 10:10 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
Thank Antonio,
The workaround ist working fine!
Dietmar
The workaround ist working fine!
Dietmar
- Thu Feb 04, 2010 8:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
REDEFINE Folder SuchFolder ID 210 OF sDlg UPDATE; Prompts " Entscheidungen/Literatur " , " Gesetzessuche ", " Kommentare " ; DIALOGS "Suchschirm2", "Gesetzessuche", "Kommentare"; OPTION 1; ...
- Wed Feb 03, 2010 4:32 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
here it is, at the buttom is is not grey but whiteIs the line still erased ? Please post a screenshot, thanks
- Wed Feb 03, 2010 1:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
This one does not change the itemsize but the last 5 pixel at the bottom of the folder are not painted..oFolder:nFdHeight += 5
try with different values there, thanks
D.
- Wed Feb 03, 2010 12:21 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
Sorry, same result, the line is not visible,This way no fill painting will be done and we can check if the line is visible. Thanks for your feedbackCode: Select all
function DrawPBack() return nil
Dietmar
- Wed Feb 03, 2010 10:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
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
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
- Wed Feb 03, 2010 10:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
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...
- Tue Feb 02, 2010 1:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
Re: Folder Itemsize
To make things clearer, this it the result:
Without transparent clause, the folders are painted ok.
How can this be fixed?
Dietmar
Without transparent clause, the folders are painted ok.
How can this be fixed?
Dietmar
- Sun Jan 31, 2010 3:24 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Folder Itemsize
- Replies: 20
- Views: 3603
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...
- Tue Aug 11, 2009 12:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Blue in bmp turns grey
- Replies: 8
- Views: 1118
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...