forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Changing a registry value
Goto page Previous  1, 2
 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
vdsalchemist
Admin Team


Joined: 23 Oct 2001
Posts: 1448
Location: Florida, USA

PostPosted: Thu Mar 06, 2008 7:31 pm    Post subject: Reply with quote

vtol,
What version of the common controls DLL do you have on your machine. Ballon style Tool Tips did not appear until version 5.8 and they came with IE 5.0... If you have recently installed a program that replaced the common controls DLL on your machine then you may not be able to show ballon tool tips. Take a look at this MSDN page for information about the different versions of the common controls DLL http://msdn2.microsoft.com/en-us/library/bb776779(VS.85).aspx

Also have you tried compiling without the Manifest file? Your manifest may not be setup to use the 6.x version of the common controls library.

_________________
Home of

Give VDS a new purpose!
Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger MSN Messenger
vtol
Valued Contributor
Valued Contributor


Joined: 05 Feb 2004
Posts: 642
Location: Eastern Indiana

PostPosted: Thu Mar 06, 2008 8:33 pm    Post subject: Reply with quote

All my machines have v6IE
But I wanna check that out anyways.

My VDS5 programs allways worked fine, whats really bad is I dont even have Tooltips or BalloonTips in my VDS6 programs.
It might be something to do with the VDS6 LIST box and MULTI style.
If I remove the MULTI style, VDS6 works good.

Thanks
Back to top
View user's profile Send private message Visit poster's website
vdsalchemist
Admin Team


Joined: 23 Oct 2001
Posts: 1448
Location: Florida, USA

PostPosted: Thu Mar 06, 2008 8:41 pm    Post subject: Reply with quote

vtol wrote:
whats really bad is I dont even have Tooltips or BalloonTips in my VDS6 programs.


I'm sorry vtol I thought you were saying that tooltips were not working? What exactly is not working?

_________________
Home of

Give VDS a new purpose!
Back to top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger MSN Messenger
ShinobiSoft
Professional Member
Professional Member


Joined: 06 Nov 2002
Posts: 790
Location: Knoxville, Tn

PostPosted: Fri Mar 07, 2008 2:05 am    Post subject: Reply with quote

Johnny,

He's tying to use baloon tips with a VDS 6 app that has 3 list boxes with the
MULTI style. I'm guessing with tooltip text already set, or using the new
set tooltip command for setting the tooltip text for the list boxes. With the
MULTI style the baloon tips are NOT showing, but without the MULTI style
the baloon tips display correctly.

From programming at the API level in C, when I've encountered symptoms
such as these, it's always ended up being a conflicting #define for a
window or controls style bits.

But hey, I'm just a broke down carpenter, what do I know Insane Laughing

_________________
Bill Weckel
ShinobiSoft Software

"The way is known to all, but not all know it."
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger
vtol
Valued Contributor
Valued Contributor


Joined: 05 Feb 2004
Posts: 642
Location: Eastern Indiana

PostPosted: Fri Mar 07, 2008 2:55 am    Post subject: Reply with quote

I'm sorry
FIRST
What I was trying to say all along in other better words ie:
At first I noticed in VDS6 IEv6 that my homemade VDS6 programs tooltips(hints) never worked in my LIST box's with MULTI style.

NEXT
I thought maybe if I added the VDS6 BALLOONTIPS to my main DIALOG that that would be better than nothing at all.
But then I noticed that BALLOONTIPS would not work either while MULTI style and LIST box's.

In other words niether one ever worked here with VDS6 LIST's and MULTI style.

AND
I have several computers here, some AMD some Intel, same problem with VDS6 only.

ALSO
I never had this problem with VDS5 and its tooltips(hints).

OS testing
Windows XP Pro (and different computers)
Windows XP Home (and different computers)
I didnt waste my time testing it on VISTA Ultimate(yuk)

Heres the program reduced to hardly nothing, and still has all the same problems mentioned above:
DIALOG CREATE,testing,-1,0,200,100
DIALOG ADD,LIST,test,10,10,180,70,I can not see this tooltip hint in VDS"6",MULTI
DIALOG SHOW
:Evloop
wait event
goto @event()
:close
EXIT


my Common Controls Libary version
comctl32.dll 5.82.2900.2982
5.82 Comctl32.dll = Windows XP and Windows Vista
my shell32
shell32.dll 6.0.2900.3241
6.0 Shell32.dll = Windows XP and Windows Vista
my Light weight
Shlwapi.dll 6.0.2900.3268
6.0 Shlwapi.dll = Windows XP and Windows Vista
I dont want to sound like I'm bashing VDS6, I think its just some little bug that will be found and fixed, you can blame VISTA and all this new security updates more than likely.
Insane
Back to top
View user's profile Send private message Visit poster's website
Aslan
Valued Contributor
Valued Contributor


Joined: 31 May 2001
Posts: 589
Location: Memphis, TN USA

PostPosted: Fri Mar 07, 2008 1:42 pm    Post subject: Reply with quote

Back to the origonal question:

Did the change API stuff work?

If not, try the code below.

Code:
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v StartButtonBalloonTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v EnableBalloonTips /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v FolderContentsInfoTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ShowInfoTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v Tips /t REG_DWORD /d 0x1 /f
Back to top
View user's profile Send private message Send e-mail
vtol
Valued Contributor
Valued Contributor


Joined: 05 Feb 2004
Posts: 642
Location: Eastern Indiana

PostPosted: Fri Mar 07, 2008 10:44 pm    Post subject: Reply with quote

Naa, the below never helped a bit, but I really appreciate that, and sorry I interupted your post so rudly Embarassed

Code:
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v StartButtonBalloonTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v EnableBalloonTips /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v FolderContentsInfoTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ShowInfoTip /t REG_DWORD /d 0x1 /f
runh reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v Tips /t REG_DWORD /d 0x1 /f

DIALOG CREATE,testing,-1,0,200,100
DIALOG ADD,LIST,test,10,10,180,70,I can not see this tooltip hint in VDS"6",MULTI
DIALOG SHOW
:Evloop
 wait event
 goto @event()
:close
EXIT
Would disabling Windows messager have anything that would bother VDS?
Thats the only thing I can think of that I might have done to my
computer(s) and forgotton about awhile back when fighting a virus or something maybe.

Oh yeah, I tested it on my VISTA ultimate machine today, same problem.
But VDS5 keeps on tic'n Laughing

The only other thing I think I change on all my computers is the XP STYLE with some CLASSIC STYLE.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group