Page 1 of 1

[SOLVED] Windows GUI apps require calling the Win32 API?

Posted: Sat Aug 28, 2010 12:25 am
by littlebigman
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.

Re: Windows GUI apps require calling the Win32 API?

Posted: Sat Aug 28, 2010 12:42 am
by netmaestro
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.

Re: Windows GUI apps require calling the Win32 API?

Posted: Sat Aug 28, 2010 11:59 am
by Vera
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

Re: Windows GUI apps require calling the Win32 API?

Posted: Sat Aug 28, 2010 4:44 pm
by blueznl

Re: Windows GUI apps require calling the Win32 API?

Posted: Sun Aug 29, 2010 11:05 am
by littlebigman
Thanks everyone.