Tooltip Balloon

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

Tooltip Balloon

#1 Post by unixkd »

Hi all

Anybody with idea on how to implement the attached tooltip balloons in Xbase++ or better still how to use this Teebo tooltip balloon.

This control is available at: http://www.teebo.com/tssBalloonTip.htm

Thanks

Joe
Attachments
tooltips.png
tooltips.png (26.52 KiB) Viewed 12601 times

User avatar
hz_scotty
Posts: 107
Joined: Thu Jan 28, 2010 8:20 am
Location: Wr.Neustadt / Österreich

Re: Tooltip Balloon

#2 Post by hz_scotty »

Code: Select all

   @  2.0,20 DCGET ::dDatum ;
      POPUP {|d| DC_PopDate(d,,,@lOk,,.t.,2,{||ZeigFeiertag()},,,,,m->bIsHoliday,m->aColors)};
      POPCAPTION "v" ;
      POPFONT "10.Marlett" ;
      POPSTYLE DCGUI_POPUPSTYLE_IMBEDDED ;
      POPKEY xbeK_F1 ;
      OBJECT ::EdDATUM ;
      EDITPROTECT {|| ::lShow} ;
      GOTFOCUS  {| x,y,o | o:showBalloonTip(XBP_TIPINFO,'Buchungsdatum',"Datum der Belegbuchung" )}
best regards
Hans

User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

Re: Tooltip Balloon

#3 Post by unixkd »

No balloon tooltip displayed when I tested your code. I am using xbase++ version 1.90.350

Thanks

User avatar
hz_scotty
Posts: 107
Joined: Thu Jan 28, 2010 8:20 am
Location: Wr.Neustadt / Österreich

Re: Tooltip Balloon

#4 Post by hz_scotty »

i have 355sl1 - maybe you need that 355sl1

compile this - hope it help's
Attachments
BALLOON.rar
(6.42 KiB) Downloaded 739 times
best regards
Hans

User avatar
unixkd
Posts: 565
Joined: Thu Feb 11, 2010 1:39 pm

Re: Tooltip Balloon

#5 Post by unixkd »

Thanks.

I compiled your code and it works.

I discovered that it will only work when you execute with a manifest file. If you remove the manifest file, it will not show. I use codejock skinframework and do not distribute my application with a manifest file. Any work around will be appreciated.

Joe

User avatar
Auge_Ohr
Posts: 1414
Joined: Wed Feb 24, 2010 3:44 pm

Re: Tooltip Balloon

#6 Post by Auge_Ohr »

unixkd wrote:I discovered that it will only work when you execute with a manifest file. If you remove the manifest file, it will not show.
right.
Manifest is need for all Version 6.x Common-Controls
unixkd wrote:I use codejock skinframework and do not distribute my application with a manifest file. Any work around will be appreciated.
you can use Skinframework AND Manifest.
greetings by OHR
Jimmy

Post Reply