Search found 15 matches

by two_bits
Tue Feb 24, 2004 6:14 pm
Forum: Coding Questions
Topic: new comer
Replies: 1
Views: 944

Hi there!! I can tanswear all of your questions as i havent used the 3d commands but I can give you general info.
Blitzbasic is a great language for doing what its designed to do, ie blitz3d for writing 3d games and blitz plus for writing 2d media based applications, but i would go so far to say ...
by two_bits
Tue Feb 24, 2004 2:46 am
Forum: Coding Questions
Topic: Multple Window Screens
Replies: 2
Views: 1066

OK then, thanks for that
James
by two_bits
Tue Feb 24, 2004 2:45 am
Forum: Coding Questions
Topic: reversing a text file line by line - problem
Replies: 5
Views: 1725

Hi there, I think ive solved your problem, you didnt close the file after opening it the first time. Heres the new code:

Ive indented it, added some comments and removed (hopefully) redundant debug stuff.


Procedure reverseFile(inputFile.s,outputFile.s)

result= ReadFile(0,inputFile)

If result ...
by two_bits
Tue Feb 24, 2004 2:33 am
Forum: Coding Questions
Topic: Busy Mouse Cursor Problem
Replies: 2
Views: 1097

I think I know what your problem is, add this line of code somewhere in your main loop:

Code: Select all

event = windowevent ()
you can then check event againt such events as #PB_event_closewindow.
Hope this helps!!
James
by two_bits
Tue Feb 24, 2004 1:42 am
Forum: Coding Questions
Topic: Multple Window Screens
Replies: 2
Views: 1066

Multple Window Screens

Hi everyone, is it possible to use the openwindowedscreen multiple times on different windows in the same program?
Basically Im writing an editor to test a simple ray casting engine, and i would like to draw the 2d veiw to one window and the 3d view to another.
Many thanks
James
by two_bits
Sun Feb 22, 2004 12:33 am
Forum: Feature Requests and Wishlists
Topic: Being able to have a list within a UDT
Replies: 1
Views: 1020

Being able to have a list within a UDT

Hi, I think it would be good if we could have a list inside of a user defined type, so something like the following would be valid.

Code: Select all

type order
    list items.item()
endtype

newlist orders.order ()
The syntax is probabally wrong but im sure you get the general idea.

Cheers
James
by two_bits
Sat Feb 21, 2004 2:36 pm
Forum: Coding Questions
Topic: #PB_ Event Constant List
Replies: 5
Views: 1715

OK thanks you all :D
by two_bits
Sat Feb 21, 2004 2:14 am
Forum: Coding Questions
Topic: #PB_ Event Constant List
Replies: 5
Views: 1715

#PB_ Event Constant List

Hello everyone, is there a list of all pb constants out there? Im particuly interested in the event constants, many thanx
James
by two_bits
Sat Feb 21, 2004 1:25 am
Forum: Coding Questions
Topic: Dynamically creating windows and recieving events from them
Replies: 2
Views: 1098

Thanks a bunch m8y :D
by two_bits
Mon Feb 16, 2004 11:47 pm
Forum: Coding Questions
Topic: Dynamically creating windows and recieving events from them
Replies: 2
Views: 1098

Dynamically creating windows and recieving events from them

Hello everyone, what i would like to do is something similar to what msn messenger does.
Every time someone pms you it will open another window similaer to every other chat window.
Now what I would like to know is how to do it? Is it possible to create an unknown number of windows and deal with ...
by two_bits
Wed Jan 21, 2004 11:51 pm
Forum: Coding Questions
Topic: an array of pointers
Replies: 2
Views: 1215

Thanx a lot dude :)
by two_bits
Wed Jan 21, 2004 10:37 pm
Forum: Coding Questions
Topic: an array of pointers
Replies: 2
Views: 1215

an array of pointers

Hi everyone, how would i have a multidimensial array of pointers to my custom data type? Ive searched the forums and cant anything.
by two_bits
Sun Jan 04, 2004 7:20 pm
Forum: Coding Questions
Topic: A list of lists
Replies: 4
Views: 1463

OK - thanx mate - i think i can just about understand how its done with the help of Babelfish :)
by two_bits
Sun Jan 04, 2004 4:55 pm
Forum: Coding Questions
Topic: A list of lists
Replies: 4
Views: 1463

A list of lists

Lo everyone, is it possible to have a list of lists?
Or create a structure that contains a list?

something like:

structure JinglBells
newlist BatMansmells ()
endstructure
by two_bits
Sun Dec 07, 2003 3:55 am
Forum: Coding Questions
Topic: Vertical text
Replies: 0
Views: 1029

Vertical text

Hi - i was wondering if it were possible to draw verticle text onto an image that I am sending to the printer.
Thanks