Search found 8 matches

by MrCoder
Fri Jun 04, 2004 12:33 pm
Forum: General Discussion
Topic: Balloon Tips on systray icon
Replies: 0
Views: 1144

Balloon Tips on systray icon

Hi Everyone.
I'm having a bit of trouble with this code, the weird thing is it did work and when I went to work on it the next day it didn't work and I dont remember changing anything, which is really annoying. I even have a working exe of the code. The code should add a little balloon icon to the ...
by MrCoder
Mon May 03, 2004 6:30 pm
Forum: Tricks 'n' Tips
Topic: Get the version of a Windows DLL
Replies: 2
Views: 1775

Yeah, it says on MSDN that pretty much all of the MS ones do. Not sure how to add it too your own DLL's, I'll have a look.
From MSDN:

This function is not an application programming interface (API). It is exported by name from each DLL that implements it. Currently, most of the Windows Shell and ...
by MrCoder
Mon May 03, 2004 5:47 pm
Forum: Tricks 'n' Tips
Topic: Get the version of a Windows DLL
Replies: 2
Views: 1775

Get the version of a Windows DLL

Code updated for 5.20+

You can use this find the version of a Windows DLL.

; Get the version of a Windows DLL.
; Made by Chris Way (03/05/2004)


dll.DllVersionInfo\cbSize = SizeOf(DllVersionInfo)
OpenLibrary(0,"Shell32.dll") ; The DLL to get the version of
CallFunction(0,"DllGetVersion",@dll ...
by MrCoder
Tue Apr 06, 2004 2:52 pm
Forum: Coding Questions
Topic: MB_ICONINFORMATION, MB_ICONQUESTION etc.
Replies: 2
Views: 1767

These are the ones that are listed in the programme API Guide:
Specify one of the following flags to display an icon in the message box:
MB_ICONEXCLAMATION,
MB_ICONWARNING
An exclamation-point icon appears in the message box.
MB_ICONINFORMATION, MB_ICONASTERISK
An icon consisting of a lowercase ...
by MrCoder
Mon Apr 05, 2004 3:45 pm
Forum: Coding Questions
Topic: WinXP pop up balloons
Replies: 4
Views: 1487

Bit of a bump here. hehe :)
I've been trying to get this to work but have had no luck so if anyone does know it would be quite helpful.

Thanks :roll:
by MrCoder
Sat Apr 03, 2004 7:30 pm
Forum: Coding Questions
Topic: WinXP pop up balloons
Replies: 4
Views: 1487

Sorry to post about this again but does anybody know how to get them to go with an icon in the SYS TRAY like the automatic updates etc use.
There is this MSDN Page about tool tips with a bit about balloon tool tips for tray icons but I have no idea how to get them to work in PB.
IF anyone knows a ...
by MrCoder
Fri Apr 02, 2004 7:14 pm
Forum: Coding Questions
Topic: WinXP pop up balloons
Replies: 4
Views: 1487

Thanks Fred that was helpful. Here is the code just incase anyone else needs it.

Procedure BalloonTip(WindowID, Gadget, Text$ , Title$, Icon)

ToolTip=CreateWindowEx_(0,"ToolTips_Class32","",#WS_POPUP | #TTS_NOPREFIX | #TTS_BALLOON,0,0,0,0,WindowID(WindowID),0,GetModuleHandle_(0),0)
SendMessage ...
by MrCoder
Fri Apr 02, 2004 4:24 pm
Forum: Coding Questions
Topic: WinXP pop up balloons
Replies: 4
Views: 1487

WinXP pop up balloons

Does anyone know how to use the pop up balloons in Windows like the one that is shown when you connect to the internet and it shows your connection speed. Any help appreciated.

PB Rocks!! :D