Search found 142 matches

by Frank Demont
Thu Jan 26, 2006 8:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with 2.7 and xhb , februar build
Replies: 5
Views: 1325

Problems with 2.7 and xhb , februar build

Hello I can build and run a big aplication ( Thanks antonio , text.obj seems to work) , but have problems with samples from FW So , i tryed alaska.prg , with his asociated rc-file When xrc is called , i receive ton's off errors and warnings , to much to include ( 66.000 bytes) Am i missing something...
by Frank Demont
Wed Jan 25, 2006 4:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xhb feb release , fw27 , unresolves external _hb_stack
Replies: 5
Views: 1477

Alex,

Maybe it is not important for you , but i use xbroxse from ozlib.

In the build file was a obj , derived from a c-module . So i had to replace this obj module with the c-module

Frank
by Frank Demont
Wed Jan 25, 2006 12:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: fw2.7 : GPF with xbrowse again
Replies: 1
Views: 578

fw2.7 : GPF with xbrowse again

hello, After installing fw2.6 , i got a gpf in xbrowse (from ozlib). Antonio sended me a obj-file. Linking in text.obj , and it is ok . Now , in fw2.7 , the error is there again . It obvious that i can't link test.obj again Offset : 000c9dd3 code : 0xc0000005 Address : 0x00000000004c9dd3 How can the...
by Frank Demont
Wed Jan 25, 2006 12:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xhb feb release , fw27 , unresolves external _hb_stack
Replies: 5
Views: 1477

Ok , i found it , an obj-file derived from a c-file in one from the lib's.

Next problem : see new thread
by Frank Demont
Wed Jan 25, 2006 11:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: xhb feb release , fw27 , unresolves external _hb_stack
Replies: 5
Views: 1477

xhb feb release , fw27 , unresolves external _hb_stack

Hello,

I try to build an fw aplication .

I have rebuild all the obj's and lib's mentioned in the xbp-file , but i have still this external.

I have no idea which module is the guilty.

Frank
by Frank Demont
Fri Jan 13, 2006 3:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Question about CaptureWindow()
Replies: 6
Views: 1592

oDlg:aControls is a array with all the controls

Frank
by Frank Demont
Fri Dec 23, 2005 5:04 pm
Forum: FiveWin for CA-Clipper
Topic: Focus oWnd
Replies: 23
Views: 8596

Try with SetActiveWindow(oWnd:hWnd)


Frank
by Frank Demont
Sat Nov 05, 2005 3:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with msgMeter
Replies: 7
Views: 2960

Antonio I am using a debugging tool , and got as information : 00690063 605cba00 605cb800 605cb600 605cb400 henfwxcc!ARRNEDMAAND+0xd093 I have no idea how to use it , i know only that ARRNEDMAAND is not a procedure or function , it is a global var , but it has nothing to do with the indexexpression ...
by Frank Demont
Fri Nov 04, 2005 8:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with msgMeter
Replies: 7
Views: 2960

Antonio, I am using xhb , last build , but this error has always be present. It is the first time i give it attention . I hope that in the next week(s) i can change a big clipper aplication in a fw aplication , we are in the last stage from testing Note that without msgmeter it works , so for me it ...
by Frank Demont
Fri Nov 04, 2005 7:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with msgMeter
Replies: 7
Views: 2960

Gpf with msgmeter

Antonio

> Do you index the DBF meanwhile it is visible (shown on a browse,
> dialog fields, etc.) ?

No , i do it :

1) The main mdi window , init clausule

Or

2) Menu option , one dbf can be choosen in a list

Both have the same result

Frank
by Frank Demont
Thu Nov 03, 2005 12:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with msgMeter
Replies: 7
Views: 2960

GPF with msgMeter

Hello, I made a routine to index or reindex the dbf's with msgmeter , which is called for each indextag in a cdx-file This works in all cases , except one (with 12 tag's , the last one gives a gpf when MsgMeter is called) MsgMeter( { | oMeter, oText, oDlg, lEnd | ; BCdxIndex( oMeter, oText, oDlg, @l...
by Frank Demont
Wed Nov 02, 2005 9:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: Date Picker
Replies: 9
Views: 3092

Dtepicker

Stefan,

Yes, i know this.

But it seems that i have not the same dtepicker (fw2.5 on release)

I think that there be made changes afterwards

Frank
by Frank Demont
Wed Nov 02, 2005 6:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: Date Picker
Replies: 9
Views: 3092

Date picker , empty date

In the first versions from dtepicker , there was no possibility to have a empty date I think that in fw 2.5 , there was a possibilty to have a checkbox that indicates that the date is empty (not sure) For me : i have two problems with dtepicker : 1) Can not have empty date 2) When the user go to the...
by Frank Demont
Sun Oct 30, 2005 7:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to restart an app
Replies: 6
Views: 2719

I not tryed , but :

Start the aplication with a batch file with as content :

YourExe.exe
CALL YoutBatch.bat

Then you have the possibilty to change YourBatch.bat from in the aplication and after that close the aplication

Frank
by Frank Demont
Thu Oct 27, 2005 8:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: Array of gets
Replies: 11
Views: 4711

You can try :


FOR EACH xKey in hHash:Keys
? xKey, hHash[ xKey ]
NEXT

or

FOR EACH xVal IN hHash:Values
? xVal
NEXT