Search found 11 matches

by iostream
Sat Apr 23, 2011 11:57 am
Forum: Windows
Topic: [4.51 x86] SplitterGadget and ComboBoxGadget
Replies: 5
Views: 2802

Re: [4.51 x86] SplitterGadget and ComboBoxGadget

Same here on x64.

@breeze4me: If you use SetWindowLongPtr, use the correct GWLP_* constants.
by iostream
Sat Apr 16, 2011 4:45 pm
Forum: Linux
Topic: opposite of #PB_Event_ActivateWindow?
Replies: 11
Views: 2803

Re: opposite of #PB_Event_ActivateWindow?

TomS wrote:Doesn't work on Windows.
But under Windows you can use a callback.
by iostream
Mon Oct 18, 2010 12:26 am
Forum: Tricks 'n' Tips
Topic: Start Menu requester
Replies: 6
Views: 2544

Re: Start Menu requester

IMA at the following line:

Code: Select all

For i=0 To *GrpIconDir\idCount
But a nice align procedure :D
by iostream
Wed May 05, 2010 8:06 pm
Forum: Tricks 'n' Tips
Topic: Menu Icons (The easy way! Vista+)
Replies: 10
Views: 4145

Re: Menu Icons (The easy way! Vista+)

I think some code is missing in line 36?
by iostream
Thu Oct 22, 2009 11:29 pm
Forum: Off Topic
Topic: World of Goo
Replies: 16
Views: 3031

Re: World of Goo

My setup is a little unusual though, 2 screens running Windows 7x64. Hope they can fix it 'cause the game looks amazing.
Playing it since one week on Windows 7 x64, no problems.

It is a great game :mrgreen:
by iostream
Thu Jul 30, 2009 12:56 pm
Forum: Feature Requests and Wishlists
Topic: My wishlist for PureBasic 4.50
Replies: 103
Views: 26503

For me a important wish:
Support ExamineFTPDirectory() for servers with Windows OS.
by iostream
Tue Jun 09, 2009 10:36 am
Forum: PureFORM & JaPBe
Topic: PureCOLOR library : coloring gadgets (and much more)
Replies: 524
Views: 327698

Sorry, this is currently a limitation of PureCOLOR ; you can't have a menu and a popup menu with the same parent window.
Thanks for the info, your workaround works fine :wink:
by iostream
Sun Jun 07, 2009 2:49 pm
Forum: PureFORM & JaPBe
Topic: PureCOLOR library : coloring gadgets (and much more)
Replies: 524
Views: 327698

I think i found a bug...

When I use a window-menu and a popup-menu, they don't work together:
The 1st menutitle of the window-menu appears in the popup-menu.
This effect only appears when I create the popup first and the window-menu later.

Enumeration
#M
#MP
EndEnumeration

If OpenWindow(0, 0 ...
by iostream
Tue Apr 28, 2009 12:13 pm
Forum: Coding Questions
Topic: Scintilla & Popup-Menu
Replies: 2
Views: 1413

mrjiles wrote:

Code: Select all

ScintillaSendMessage(#Gadget, #SCI_UsePopUp, #False) 
thx.
by iostream
Mon Apr 27, 2009 8:00 pm
Forum: Coding Questions
Topic: Scintilla & Popup-Menu
Replies: 2
Views: 1413

Scintilla & Popup-Menu

By default a Scintilla-Gadget have a popup-menu, is it possible to disable this default-menu?
by iostream
Thu Jul 31, 2008 2:01 pm
Forum: Coding Questions
Topic: Code after KillProgramm()
Replies: 0
Views: 691

Code after KillProgramm()

Code: Select all

RunProgramm(...)
.
.
KillProgramm(...)
i have a questions:
i search a possibility to execute code in my programm which was killed by KillProgramm().
something like atexit() in C/C++ (http://www.cplusplus.com/reference/clib ... texit.html)