Search found 6 matches

by Thorn
Sat Nov 12, 2005 1:46 pm
Forum: Coding Questions
Topic: [Help] LinkedList
Replies: 2
Views: 1109

[Help] LinkedList

Hi
In what way i can used them?
I don understand where they can be useful...

thanks
by Thorn
Wed Nov 09, 2005 6:51 pm
Forum: Coding Questions
Topic: work with the numbers
Replies: 4
Views: 1626

I find the Val() command in my Basic' book some minutes ago :P
Anyway thanks a lot for the answer.
by Thorn
Wed Nov 09, 2005 6:12 pm
Forum: Coding Questions
Topic: work with the numbers
Replies: 4
Views: 1626

work with the numbers

Hi
What can i do for work directly with the numbers?

for example:

Code: Select all

number=input()

if number=10
printn ("ten!")
if number=20
printn("twenty")
....
thank
by Thorn
Mon Oct 31, 2005 5:36 pm
Forum: Coding Questions
Topic: HELP Logical Operator
Replies: 2
Views: 791

HELP Logical Operator

What the different between [Bitwise AND] and [&], [Bitwise OR] and [|]?
What the means [Bitwise]?

thank
by Thorn
Tue Oct 25, 2005 9:03 pm
Forum: Coding Questions
Topic: Help bad parameter
Replies: 7
Views: 1446

Thanks folks!
Once i used Qbasic language, now i'm trying to convert Qb examples in to PureBasic code, and i have some problems.
by Thorn
Tue Oct 25, 2005 7:57 pm
Forum: Coding Questions
Topic: Help bad parameter
Replies: 7
Views: 1446

Help bad parameter

Hi! I'm PureBasic's newbie

I'm writing an easy example for calculate the age, but i have an error when try to compiling.

"Line 10:bad parameter type: a string is expected"


OpenConsole()

Print("Your birth date: ")
birthday.s= Input()

age.w=Val("Right(Date() ,4)") - Val("Right(birthday.s ,4 ...