Search found 493 matches: exact

Return to advanced search

Frank, The Windows API dialogboxes management has a different way to consider coordinates when creating a dialogbox. If you want to have exact coordinates, you may place the controls from the ON INIT clause of the dialogbox: ACTIVATE DIALOG oDlg ; ON INIT PlaceControls( oDlg ) ... ...
by Antonio Linares
Mon Feb 13, 2006 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAY pixel position
Replies: 1
Views: 550

A question regarding TDialog

Antonio, what was the exact reason why you commented out the following statement from TDialog?

// 28/06/05 AL
// ::nResult:LostFocus() // updates related variable

EMG
by Enrico Maria Giordano
Wed Feb 08, 2006 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question regarding TDialog
Replies: 0
Views: 382

Richtext printing

... with SetSel() or it is just not the function I need. I still need to implement justification (npad above) and how to continue printing at the exact position that the last char was printed, but I'll get to that later. Right now, I only need to solve the setsel() problem. Please help. Reinaldo.
by reinaldocrespo
Tue Feb 07, 2006 8:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext printing
Replies: 11
Views: 3008

Enrico;

Thank you for your reply.

Added the line #include "dll.ch" at the top of the file, but I still get the exact same errors.


Reinaldo.
by reinaldocrespo
Thu Feb 02, 2006 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLL32 STATIC FUNCTION...
Replies: 5
Views: 1330

More on _hb_stack

... in my code to stack. I did a complete search of the code to be sure. My program compiled beautifully with FWH 2.5 plus October xHarbour. The same exact script now will not link because of the _hb_stack issue. A utility program that does not use FWH builds just fine ! So ... what should we check ...
by TimStone
Wed Jan 25, 2006 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour builder Feb 2006
Replies: 16
Views: 4832

Grumpy:

But there is it. The exact link is:

http://www.vikthor.com.mx/fivewin/files ... apture.zip

Regards,
by DanielPuente
Fri Jan 13, 2006 11:24 pm
 
Forum: FiveWin for CA-Clipper
Topic: Change title of another window created with Run
Replies: 6
Views: 1705

... found this runtime error in the previous xharbour build that you published : " " = "" is true for Clipper " " = "" is false for xHarbour when SET EXACT ON. This is a very important incompatibility between Clipper code and xHarbour code. You can tell me "it's easy to replace with the function Empty()", ...
by Badara Thiam
Mon Oct 31, 2005 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved external _hb_stack
Replies: 10
Views: 4580

Re: ASC bug - re: Barbara THIAM's post

... several code lines, to be sure xHarbour has no others very important bugs. Today i can't continue my tests because " " is not equal to "" when Set Exact is On, with the version of xHarbour i use. I could give you others informations to debug xHarbour today, if the latest update was in my pc. It's ...
by Badara Thiam
Mon Oct 17, 2005 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954

Re: ASC bug - re: Barbara THIAM's post

From your sample

*************
FUNCTION TEST()
**********
LOCAL cName := SPACE(10)
SET EXACT ON
IF cName = ""
? "OK : This work like Clipper"
ELSE
? "STOP : This work bad"
ENDIF
INKEY(0)
RETURN NIL

I get

"OK : This work like Clipper"

using the latest xHarbour from CVS.

EMG
by Enrico Maria Giordano
Sat Oct 15, 2005 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954

Re: ASC bug - re: Barbara THIAM's post

No error message now.

When there is SET EXACT ON, a cVariable with space(s),
like cVar := " ", is not equal to "" for xHarbour.
When SET EXACT OFF, it's ok, " " = "".
With Clipper, " " = "", always.

Badara
by Badara Thiam
Sat Oct 15, 2005 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954

Re: ASC bug - re: Barbara THIAM's post

What is the exact error message you get?

EMG
by Enrico Maria Giordano
Sat Oct 15, 2005 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954

Re: ASC bug - re: Barbara THIAM's post

This works fine for me:

*************
FUNCTION TEST()
**********
LOCAL cName := SPACE(10)
SET EXACT ON
IF cName = ""
? "OK : This work like Clipper"
ELSE
? "STOP : This work bad"
ENDIF
INKEY(0)
RETURN NIL

EMG
by Enrico Maria Giordano
Sat Oct 15, 2005 8:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954

Re: ASC bug - re: Barbara THIAM's post

Thanks Enrico. Now i can run the program, but this code work bad : ************* FUNCTION TEST() ********** LOCAL cName := SPACE(10) SET EXACT ON IF cName = "" MessageBox("OK : This work like Clipper") ELSE MessageBox("STOP : This work bad") ENDIF RETURN NIL This is too hard... (But i confirm, ...
by Badara Thiam
Fri Oct 14, 2005 11:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASC bug - re: Barbara THIAM's post
Replies: 23
Views: 10954
Previous

Return to advanced search