Search found 25 matches
- Sat Aug 15, 2015 7:13 am
- Forum: Announcement
- Topic: Mobile-inspired Toggle Switches
- Replies: 12
- Views: 9663
Re: Mobile-inspired Toggle Switches
Thanks, dige. I totally overlooked that. I updated the code with the fix you pointed out, but no, there is no other update to report as it did everything I needed it to do at the time. After these, I moved on to working on some new code to make nice looking pie charts, doughnut charts, etc, but I ...
- Tue Aug 11, 2015 6:31 am
- Forum: Applications - Feedback and Discussion
- Topic: WinAPI Library (1163 example codes)
- Replies: 57
- Views: 95477
Re: WinAPI Library (1.052)
Awesome contribution, RSBasic. This is will be really handy. Thanks!
- Tue Feb 10, 2015 8:39 pm
- Forum: Off Topic
- Topic: All hail the robot-animal-thing...
- Replies: 9
- Views: 4262
Re: All hail the robot-animal-thing...
Poor little robot. They shouldn't give it a cute name because now I kinda feel bad for it when they kick it. This video is definitely going to piss off future generations of sentient robots and lead to the great robot uprising. Please spare me, future robot overlords! :D
http://i.imgur.com/cf20eBv ...
http://i.imgur.com/cf20eBv ...
- Mon Jan 19, 2015 3:03 am
- Forum: Coding Questions
- Topic: Error msg: "default target" has no main source file .
- Replies: 18
- Views: 5491
Re: Error msg: "default target" has no main source file .
Hi Vera,
I think Vmars edited his code in the forum text box after pasting it and introduced additional errors as the code he posted didn't work for me either at first, even as two separate files.
To me it is crazy to have the main pb-file catching the event-types to send them to the pbf-file ...
I think Vmars edited his code in the forum text box after pasting it and introduced additional errors as the code he posted didn't work for me either at first, even as two separate files.
To me it is crazy to have the main pb-file catching the event-types to send them to the pbf-file ...
- Sat Jan 17, 2015 8:18 pm
- Forum: Coding Questions
- Topic: Error msg: "default target" has no main source file .
- Replies: 18
- Views: 5491
Re: Error msg: "default target" has no main source file .
Hi Vern,
Here's the corrected code for you. When associating an event procedure with a button using the form designer, add it in the "Event procedure" field without any parameters or parentheses:
http://i.imgur.com/1kpjNUm.jpg
The generated code for that will say Declare button_clicked(EventType ...
Here's the corrected code for you. When associating an event procedure with a button using the form designer, add it in the "Event procedure" field without any parameters or parentheses:
http://i.imgur.com/1kpjNUm.jpg
The generated code for that will say Declare button_clicked(EventType ...
- Tue Jan 13, 2015 11:22 pm
- Forum: Off Topic
- Topic: PB Wallpaper
- Replies: 17
- Views: 9749
Re: PB Wallpaper
@yoxola
Here is one with a dark background color in 1920x1080: http://i.imgur.com/N74MxUy.jpg
Here is one with a dark background color in 1920x1080: http://i.imgur.com/N74MxUy.jpg
- Thu Jan 08, 2015 10:38 pm
- Forum: Off Topic
- Topic: PB Wallpaper
- Replies: 17
- Views: 9749
Re: PB Wallpaper
Bananenfreak:
The images in the first post are now high-quality jpg files rather than png. This will keep windows from doing the conversion itself and adding artifacts along the way.
Sorry, but a Windows or Mac Logo on my Linux desktop is a no-go
I've added a link to the SVG file so you can now ...
The images in the first post are now high-quality jpg files rather than png. This will keep windows from doing the conversion itself and adding artifacts along the way.
Sorry, but a Windows or Mac Logo on my Linux desktop is a no-go
I've added a link to the SVG file so you can now ...
- Thu Jan 08, 2015 5:16 am
- Forum: Off Topic
- Topic: PB Wallpaper
- Replies: 17
- Views: 9749
Re: PB Wallpaper
Hi Bananenfreak, glad you like it! The 1920x1080 image is not upscaled, there shouldn't be any artifacts there. Just make sure you downloaded the from the correct link for that size: http://i.imgur.com/Sx2f11Q.png.
If there's still problems, I'll try to upload the original vector file tomorrow.
If there's still problems, I'll try to upload the original vector file tomorrow.
- Wed Jan 07, 2015 4:05 am
- Forum: Off Topic
- Topic: PB Wallpaper
- Replies: 17
- Views: 9749
PB Wallpaper
Just a simple PureBasic wallpaper I threw together. If you need a different size or something, let me know!
Preview:
http://i.imgur.com/KPHnCgP.png
1366x768
1440x900
1920x1080
SVG File
Edit Jan 8, 2015:
Links updated. Added SVG file so you can change any colors/sizes yourself. File ...
Preview:
http://i.imgur.com/KPHnCgP.png
1366x768
1440x900
1920x1080
SVG File
Edit Jan 8, 2015:
Links updated. Added SVG file so you can change any colors/sizes yourself. File ...
Re: PB & J
Also, my printer doesn't peanut butter all the damn time!Bananenfreak wrote:What's the difference between peanut butter and jam?

Re: PB & J
Update:
I do feel something now... I think it's diabetes

I do feel something now... I think it's diabetes
Oh, now you tell me!Zach wrote:You fool, you are using Jam and not Jelly!

PB & J
Why do I always hear people say PB & J go so well together? I'm halfway through the jar of jelly but still don't feel any more productive or anything. Will I feel something soon?


- Mon Jan 05, 2015 10:14 pm
- Forum: Coding Questions
- Topic: Rip van Winkle feeling
- Replies: 32
- Views: 12552
Re: Rip van Winkle feeling
My reaction when I stumbled into this thread:
http://i.imgur.com/B81mikc.gif
On a more serious note.. Yes, there are certainly some issues with PB which probably stem from having such a small development team but I think that fact is also what's allowed PB to become as good as it is while still ...
http://i.imgur.com/B81mikc.gif
On a more serious note.. Yes, there are certainly some issues with PB which probably stem from having such a small development team but I think that fact is also what's allowed PB to become as good as it is while still ...
- Thu Dec 18, 2014 6:37 pm
- Forum: Coding Questions
- Topic: Anyway to query hot keys?
- Replies: 14
- Views: 4554
Re: Anyway to query hot keys?
The api function RegisterHotkey and PB's addkeyboardShortcut do two different things. You cannot use the success or failure of a call to RegisterHotkey to determine if the same keys were already used with AddKeyboardShorcut.
You can exclusively use RegisterHotkey instead of AddKeyboardShortcut and ...
You can exclusively use RegisterHotkey instead of AddKeyboardShortcut and ...
- Wed Dec 17, 2014 2:27 am
- Forum: Coding Questions
- Topic: What window does a gadget belong to?
- Replies: 5
- Views: 1919
Re: What window does a gadget belong to?
There's currently no built in PB command to do this but there is some nice code by mestnyi in the feature request board that does what you're asking. See here: http://www.purebasic.fr/english/viewtop ... =3&t=59431