Search found 11 matches

by rolstra
Thu Dec 03, 2009 9:25 pm
Forum: Announcement
Topic: PureBasic - A Beginner's Guide : Free to download and adapt!
Replies: 83
Views: 314982

Re: PureBasic - A Beginner's Guide : Free to download and adapt!

Thank you very much Kyle,

I bought your book moths ago, which was more than worth ... and I not only was impressed by your knowledge, but also of your clear expression. I think, no translation in another language could be better.

CU,
Roland (Austria, German native)
by rolstra
Thu Apr 10, 2008 8:48 pm
Forum: Coding Questions
Topic: Beginner's question
Replies: 4
Views: 4523

Thank you,

where do I have to place this code - in whicht section of what file? I can see that VD creates 2 files, but how can I make an EXE of those files?
Bye,
Roland
by rolstra
Sun Apr 06, 2008 7:49 pm
Forum: Coding Questions
Topic: Beginner's question
Replies: 4
Views: 4523

Beginner's question

I am an absolute beginner with Visual Designer and do not have much experience with PB so far. I started my first project:

I created a blank new window with two text gadgets ("The hostname is:" and "The IP-Adress is: ") and two string gadgets (containing hostname and IP-adress). After that the code ...
by rolstra
Tue Apr 01, 2008 10:40 pm
Forum: The PureBasic Form Designer
Topic: Manual for beginners
Replies: 0
Views: 3119

Manual for beginners

Hi everybody,
is there a manual or so which teachs a beginner how to work with the visual designer. The help.chm so far ist not suitable because it does not contain very much information.
Thank you very much.
R.
by rolstra
Fri Mar 28, 2008 9:06 pm
Forum: The PureBasic Form Designer
Topic: Visual Designer.chm
Replies: 8
Views: 7712

By the way: In my PB v4.10 copy there is Visual Designer v3.95 build 1485 included - not an alpha version of v4. And v3.95 came without a help file.
by rolstra
Fri Mar 28, 2008 8:48 pm
Forum: The PureBasic Form Designer
Topic: Visual Designer.chm
Replies: 8
Views: 7712

There is NO help file!

I have the same problem: I just bought/downloaded PB v4.10 and there is NO help file for the visual designer. I reported that to the support by mail.
Regards
by rolstra
Fri Mar 28, 2008 6:44 pm
Forum: Coding Questions
Topic: Variable: float
Replies: 3
Views: 1054

:-))

tricky, tricky .... :P

Thanks a lot.
by rolstra
Fri Mar 28, 2008 6:29 pm
Forum: Coding Questions
Topic: Variable: float
Replies: 3
Views: 1054

Variable: float

How can I display a floating variable (with decimales?):

zahl.f = Val(InputRequester("Input number: ", "Input number: ", ""))
MessageRequester("The number is: ", Str(zahl))

If I input e.g. 3.14 (or 3,14) the result is 3. But it should be 3.14 (or 3.14). Why does PB returns an integer?

Thanks ...
by rolstra
Thu Mar 27, 2008 10:49 pm
Forum: Coding Questions
Topic: How to inbound DLL?
Replies: 1
Views: 886

How to inbound DLL?

Beginner's question: How can I inbound a DLL in an executable? Does the DLL have to be in the same directory as the .pb file when compiling it? Or does purebasic know automatically where the DLL files are?
Thank you - Roland.
by rolstra
Tue Mar 25, 2008 8:38 am
Forum: Coding Questions
Topic: Input/Print
Replies: 4
Views: 1707

Thank you very much,
that was exactly what I wanted to know.
Roland.
by rolstra
Mon Mar 24, 2008 10:47 pm
Forum: Coding Questions
Topic: Input/Print
Replies: 4
Views: 1707

Input/Print

Hi everybody,
I am an absolute beginner - so far. What I did not find out in studying the manual: How can I INPUT numeric data and how can I PRINT numeric data. The INPUT/PRINT statements so far seem to be only for string data. E.g. I want to:

INPUT number1
INPUT number2
x = number1 + number2
PRINT ...