Hello
I'd like to write a small Windows GUI application in Purebasic. I didn't see the answer in the FAQ: Am I correct in guessing that PureBasic is a text-based language, and if I want to write a Windows application, I'll need to call the Win32 API, eg. CreateWindow(), etc.?
Thank you.
[SOLVED] Windows GUI apps require calling the Win32 API?
-
- User
- Posts: 12
- Joined: Sat May 29, 2010 4:11 pm
[SOLVED] Windows GUI apps require calling the Win32 API?
Last edited by littlebigman on Sun Aug 29, 2010 11:05 am, edited 1 time in total.
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Re: Windows GUI apps require calling the Win32 API?
Not at all. You only need the Windows API if you want one of the gadgets to do something that Purebasic doesn't support natively. You can write quite a robust and powerful application with no API at all.
BERESHEIT
Re: Windows GUI apps require calling the Win32 API?
Hello littlebigman,
Wellcome on Board
if you like to see some GUI applications with pure PureBasic than open & run e.g. some of the gadget-examples you'll find in the purebasic/examples/sources folder.
greetings ~ Vera
Wellcome on Board

if you like to see some GUI applications with pure PureBasic than open & run e.g. some of the gadget-examples you'll find in the purebasic/examples/sources folder.
greetings ~ Vera
Two growing code-collections: WinApi-Lib by RSBasic ~ LinuxAPI-Lib by Omi
Missing a download-file on the forums? ~ check out this backup page.
Missing a download-file on the forums? ~ check out this backup page.
Re: Windows GUI apps require calling the Win32 API?
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
-
- User
- Posts: 12
- Joined: Sat May 29, 2010 4:11 pm
Re: Windows GUI apps require calling the Win32 API?
Thanks everyone.