Page 2 of 3

Posted: Mon Apr 14, 2008 2:59 am
by nageswaragunupudi
With the latest xhb demo, I have added xbrowse.prg and helpchm.prg to the project and the programs are working fine.

For xhb, I think the libray can be rebuilt by replacing xborwse.obj with recompled xbrowse.obj and adding helpchm.prg to the library

Posted: Mon Apr 14, 2008 11:26 am
by Richard Chidiak
Antonio

I wonder why helpchm.prg is not in the standard fivewin library :? , i do not like rebuilding the library (might miss programs or functions)

Richard

Posted: Mon Apr 14, 2008 11:41 am
by nageswaragunupudi
Richard Chidiak wrote:Antonio

I wonder why helpchm.prg is not in the standard fivewin library :? , i do not like rebuilding the library (might miss programs or functions)

Richard

It is a part of Standard Five win library for harbour and xharbour.

Posted: Mon Apr 14, 2008 11:57 am
by Antonio Linares
Richard,

Our mistake, sorry. We are uploading it again.

It will be available in just few minutes, thanks

Posted: Mon Apr 14, 2008 2:58 pm
by Richard Chidiak
Antonio

I have just downloaded, still not in the library

Richard

Posted: Mon Apr 14, 2008 3:54 pm
by Robert Frank
I found another strange problem with my application.
With new version of FWH i get GPF error when i do
oWnd:End().

When I use 8.03 application works correctly.
Any suggestion?

R.

Posted: Mon Apr 14, 2008 3:57 pm
by nageswaragunupudi
Mr Robert

So far I have not faced it in my test applications. But one of my main applications is invoking windows debugger on some machines ( not all ). This is enough to scare the users. I dont know what could be the reason.

Are you getting GPF everytime? Or occassionally ?

( I am using bcc55 and latest xharbour )

Posted: Mon Apr 14, 2008 4:28 pm
by Robert Frank
nageswaragunupudi wrote:Mr Robert

Are you getting GPF everytime? Or occassionally ?

( I am using bcc55 and latest xharbour )


Mr Nageswaragunupudi
Everytime on every computer. I guess its becouse I use xHarbour 1.0.0

R.

Posted: Tue Apr 15, 2008 4:20 pm
by Robert Frank
Where I can find source of xHarbour 1.1.0 ?
Producers of my SQL driver ask me about it. Maybe they'll make new version for me if I'll get they source of xHarbour which is used in FWH8.04

Posted: Tue Apr 15, 2008 4:26 pm
by Richard Chidiak
Robert

instead of ownd:end() , try ownd:PostMsg(WM_CLOSE)

HTH

Richard

Posted: Tue Apr 15, 2008 4:39 pm
by Robert Frank
Richard Chidiak wrote:Robert

instead of ownd:end() , try ownd:PostMsg(WM_CLOSE)

HTH

Richard


Thanks Richard for your idea, but I got the same error.

Posted: Tue Apr 15, 2008 4:51 pm
by Richard Chidiak
Robert

In my case on a main mdi window i also had a gpf calling ownd:end()

This was fixed by replacing with

oWND:PostMsg(WM_CLOSE)
oWND := NIL

Do you have the problem on a main mdi, mdichild or a sdi window ?

HTH

Richard

Posted: Tue Apr 15, 2008 5:06 pm
by Robert Frank
Richard Chidiak wrote:Robert
Do you have the problem on a main mdi, mdichild or a sdi window ?
Richard


Main mdi

oWND:PostMsg(WM_CLOSE) generates GPF

Posted: Tue Apr 15, 2008 8:13 pm
by nageswaragunupudi
After seeing the above posts. I checked again. I am using FWH 8.04 and latest xHarbour ( bcc55 ) provided by FWH. I am not getting any errors on "any" oWnd:End(). ( MDIchild or MDI Main or SDI ). My regular applications are running in the office with the latest version.

Posted: Tue Apr 15, 2008 8:28 pm
by Robert Frank
nageswaragunupudi wrote:After seeing the above posts. I checked again. I am using FWH 8.04 and latest xHarbour ( bcc55 ) provided by FWH. I am not getting any errors on "any" oWnd:End(). ( MDIchild or MDI Main or SDI ). My regular applications are running in the office with the latest version.


Which version do you use?
R.