Tooltips

This forum is for eXpress++ general support.
Message
Author
User avatar
rdonnay
Site Admin
Posts: 4722
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Tooltips

#11 Post by rdonnay »

Also - copied in the last changes you provided to _dcjdhlp.zip:
No - the tooltip is still not shown on the right position
I find this difficult to understand.
My test programs work on 2 monitors now.
The eXpress train is coming - and it has more cars.

edv-rudrich
Posts: 33
Joined: Wed Jan 27, 2010 10:23 pm

Re: Tooltips

#12 Post by edv-rudrich »

Hi ..
okay, I will try it this morning and let you know..

Did you change something on the calulation for the tooltips?
I would need a fix for my own created tooltips on browsecolumns also (you remember) - so
if you can tell me what you've changed it would help me to fix mine..
Thanks in advance

- Michael

User avatar
rdonnay
Site Admin
Posts: 4722
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Tooltips

#13 Post by rdonnay »

Did you change something on the calulation for the tooltips?
I would need a fix for my own created tooltips on browsecolumns also (you remember) - so
if you can tell me what you've changed it would help me to fix mine..
Yes, I did.
You can compare the new _DCJDHLP.PRG to the version in build 253 to see what I did.
Your browse tooltips use the same basic engine, so this change should fix them too.

It just occurred to me that you may not be using the Tooltip engine originally modified by Jack Djuif and that may be why my changes do not work for you. I have now made this change in the tooltip system in _DCFUNCT.PRG (attached).
DC_ToolTipThread(1) uses the tooltip system in _DCFUNCT.PRG.
DC_ToolTipThread(2) uses the tooltip system in _DCJDHLP.PRG.
Attachments
_dcfunct.zip
_dcfunct.prg
(33.16 KiB) Downloaded 799 times
The eXpress train is coming - and it has more cars.

edv-rudrich
Posts: 33
Joined: Wed Jan 27, 2010 10:23 pm

Re: Tooltips

#14 Post by edv-rudrich »

Thanks a lot

253 looks good so far.. no crashes 'till now
keep on testing..

- Michael

edv-rudrich
Posts: 33
Joined: Wed Jan 27, 2010 10:23 pm

Re: Tooltips

#15 Post by edv-rudrich »

Roger:

Can you tell me how I can set aOptions[64] in the PrintOptions to
force the DCPRINT to combine the EXCEL sheets?

thks
- Michael

User avatar
rdonnay
Site Admin
Posts: 4722
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Combine Excel Sheets

#16 Post by rdonnay »

I will add this to DCPRINT.CH tomorrow. Right now I am tired.

Here's a workaround:

Code: Select all

DCPRINT OPTIONS .. TO aOptions
ASize( aOptions, 64 )
aOptions[63] := .t.
aOptions[64] := .t.
The eXpress train is coming - and it has more cars.

edv-rudrich
Posts: 33
Joined: Wed Jan 27, 2010 10:23 pm

Re: Tooltips

#17 Post by edv-rudrich »

Fine--

good night!

- MIchael

Post Reply