
Search found 10 matches
- Mon Feb 25, 2013 10:25 pm
- Forum: Tricks 'n' Tips
- Topic: FlatButtonEx Crossplattform
- Replies: 31
- Views: 9905
Re: FlatButtonEx Crossplattform
Thank you! 

- Mon Feb 25, 2013 6:20 pm
- Forum: Tricks 'n' Tips
- Topic: FlatButtonEx Crossplattform
- Replies: 31
- Views: 9905
Re: FlatButtonEx Crossplattform
An error in all buttons: The right bottom pixel is missing...?
- Sun Oct 21, 2012 8:27 pm
- Forum: Coding Questions
- Topic: Editable Grid
- Replies: 9
- Views: 4750
Re: Editable Grid
Hello,
sorry, I cannot give support in english, because my english is too bad. But I try to give support here, but only in german speech:
XProfan:
http://www.paules-pc-forum.de/forum/dlls-includes-units-prozeduren/
PureBasic:
http://purebasic.fr/german/viewforum.php?f=11
I think about to ...
sorry, I cannot give support in english, because my english is too bad. But I try to give support here, but only in german speech:
XProfan:
http://www.paules-pc-forum.de/forum/dlls-includes-units-prozeduren/
PureBasic:
http://purebasic.fr/german/viewforum.php?f=11
I think about to ...
- Sat Aug 25, 2012 12:06 pm
- Forum: Feature Requests and Wishlists
- Topic: Grouping function for user32-handles
- Replies: 8
- Views: 2778
Grouping function for user32-handles
Sometimes it would be nice if there was a uniform function for Windows-Controls. WindowID, GadgetID, StatusbarID and ToolbarID are basically the same things.
A function eg. ControlID (...) would be great, to handle all 4 ID-Types in only one function.
A function eg. ControlID (...) would be great, to handle all 4 ID-Types in only one function.
- Mon Jul 16, 2012 8:30 pm
- Forum: Game Programming
- Topic: PBSpotFX_Demivec v1.5
- Replies: 19
- Views: 11766
Re: PBSpotFX_Demivec v1.5
Thank you for sharing!!!


- Fri Feb 10, 2012 6:38 pm
- Forum: Feature Requests and Wishlists
- Topic: Tooltip over Command hint
- Replies: 1
- Views: 838
Wrap & balloon-style for tooltips
+ a flag for tooltips to wrap text over more than one line
+ a flag for tooltips to give them balloon-style
+ a flag for tooltips to give them balloon-style
- Wed Jul 06, 2011 5:53 pm
- Forum: Feature Requests and Wishlists
- Topic: More cursors for Canvas.
- Replies: 9
- Views: 2366
Re: More cursors for Canvas.
I need the two diagonal-cursors, too. Please build in.
- Mon May 23, 2011 2:47 pm
- Forum: Announcement
- Topic: PureBasic 4.60 Beta 1 released! (for real)
- Replies: 59
- Views: 46117
Re: PureBasic 4.60 Beta 1 released! (for real)
I'm getting, too. Just in Beta 3...Polo wrote:
I get this error from time to time in the IDE. Didnt manage to reproduce it on purpose so I can't help on debugging.
- Fri May 20, 2011 9:33 am
- Forum: Feature Requests and Wishlists
- Topic: Extending Scintilla structures
- Replies: 1
- Views: 951
Extending Scintilla structures
Please extend the Scintilla-Edit structures to newer versions of the dll. In structure SCNotification the following entries are absent:
Thank you! 
Code: Select all
...
int token; // SCN_MODIFIED with SC_MOD_CONTAINER
int annotationLinesAdded; // SC_MOD_CHANGEANNOTATION
int updated; // SCN_UPDATEUI

- Thu May 12, 2011 3:41 pm
- Forum: Feature Requests and Wishlists
- Topic: Pow() and Abs() for integers
- Replies: 16
- Views: 6308
Re: Pow() and Abs() for integers
3 years after and no Abs() for Integer ? :cry:
I think, it's an very elementar thing for a progam-language and easy to build in. Possible solution in Asm, 32 bit:
Abs proc uses edx dwNum:DWORD
mov eax, dwNum
mov edx, eax
and eax, 0F0000000h
cmp eax, edx
je @F
xor edx, 0F0000000h
xchg eax, edx ...
I think, it's an very elementar thing for a progam-language and easy to build in. Possible solution in Asm, 32 bit:
Abs proc uses edx dwNum:DWORD
mov eax, dwNum
mov edx, eax
and eax, 0F0000000h
cmp eax, edx
je @F
xor edx, 0F0000000h
xchg eax, edx ...