Search found 17 matches

by The seperator
Thu Jun 10, 2004 6:38 pm
Forum: Coding Questions
Topic: Encrypting Media?
Replies: 1
Views: 1056

Program an enryption algoritme. The more you rethink and refine your
algoritme the more difficult it is to break.

After that you can decrypt your data (with the decryption key asked)
in the memory and play your movie from the memory.
by The seperator
Wed Jun 09, 2004 8:31 pm
Forum: Game Programming
Topic: Can any one solve this problem?
Replies: 5
Views: 2211

You mean you want to turn an object around a turning object,... ?

Else I dont't know what you mean (smoked to much :P ).
by The seperator
Wed Jun 09, 2004 8:14 pm
Forum: Game Programming
Topic: How easy is PureBasic to learn for game programming?
Replies: 20
Views: 7605

Well you can forget writing descent 3d games on your one. You'll have to
work in a team. And if you are going to use purebasic you are limited to
the OGRE egine, but you can write your one engine of course.

Not to forget that you'll have to learn how to create meshes and
terain and the most ...
by The seperator
Thu Jun 03, 2004 3:14 pm
Forum: Feature Requests and Wishlists
Topic: Procedures that can return structures
Replies: 9
Views: 2436

I allready know this, It's just a request for future releases. :)
by The seperator
Thu Jun 03, 2004 3:12 pm
Forum: Coding Questions
Topic: Need help with making a picture screensaver
Replies: 3
Views: 1525

Also when you have a lot of pictures you'll have a big executable so its
better to directly load the pictures from a path so your app can load
pictures which you can select from eg. an options pannel (which you have
to write also).
by The seperator
Thu Jun 03, 2004 3:07 pm
Forum: Coding Questions
Topic: Need help with making a picture screensaver
Replies: 3
Views: 1525

IncludeBinary ";picture name + path;" will include a picture in your exe.

if you want to make a screensaver u can use the 2d drawing functions but
there are lot's of other possebillety's

you can start by using OpenScreen() command and use sprites to display
them. You can load your pictures ...
by The seperator
Wed Jun 02, 2004 12:51 pm
Forum: Feature Requests and Wishlists
Topic: Procedures that can return structures
Replies: 9
Views: 2436

Indeed what i mean is you can write something like:


Structure STRUCT
Argument_01.f
Argument_02.f
EndStructure


Procedure.STRUCT MathFormula( x.f, y.f )

DefType.STRUCT ReturnStruct

; Your Code
ReturnStruct\Argument_01 = x * y
ReturnStruct\Argument_02 = y / x

ProcedureReturn ...
by The seperator
Tue Jun 01, 2004 10:45 pm
Forum: Coding Questions
Topic: Select and delete a text in a string gadget
Replies: 4
Views: 1388

for example:

SendMessage_(GadgetID(;Your gadget;),#WM_CUT,0,0)

will delete the selected text and copy it to the clipboard.
This works for the rich editor. Haven't tested it yet on a string gadget but
normaly it should work.
by The seperator
Tue Jun 01, 2004 10:32 pm
Forum: Feature Requests and Wishlists
Topic: Procedures that can return structures
Replies: 9
Views: 2436

Procedures that can return structures

I allready know you can solve this problem by using pointers but you
still have to use freememory() each time to save memory.
by The seperator
Tue Jun 01, 2004 10:13 pm
Forum: Coding Questions
Topic: Select and delete a text in a string gadget
Replies: 4
Views: 1388

Have you tried the SendMessage_() function?
You can find more information about it in the win32 api guide
by The seperator
Sun Apr 25, 2004 10:30 pm
Forum: Coding Questions
Topic: Find all files in one folder (or list folders in subfolder)
Replies: 43
Views: 12407

just wanna say that ".hello" is a valid on my win98 se too
Also as directoryname?
by The seperator
Sun Apr 25, 2004 10:27 pm
Forum: Coding Questions
Topic: Find all files in one folder (or list folders in subfolder)
Replies: 43
Views: 12407

By the way: nice peace of program language you all've put togheter.
Just keep on supporting it and the community will grow enormous
by The seperator
Sun Apr 25, 2004 10:18 pm
Forum: Coding Questions
Topic: Find all files in one folder (or list folders in subfolder)
Replies: 43
Views: 12407

Question t Freak.

Because you have your on homepage and obviously know something about recurse programming maybe you gan give me some ideas. My current project is a chess program and I allready have made a move generator. The only thing to do know is to write AI but how do you tell the computer ...
by The seperator
Sun Apr 25, 2004 10:02 pm
Forum: Coding Questions
Topic: Find all files in one folder (or list folders in subfolder)
Replies: 43
Views: 12407

OK then. For win2k an xp users should use this code

Procedure recurseDir(path.s,pat.s,void.l) ;void should be 0
DefType.s r,fileName:DefType.l t
If ExamineDirectory(void,path,"")
Repeat
t=NextDirectoryEntry():r=DirectoryEntryName()
If (t=2) And (r<>".") And (r<>"..") ;Because we do not need ...
by The seperator
Sun Apr 25, 2004 9:54 pm
Forum: Coding Questions
Topic: Find all files in one folder (or list folders in subfolder)
Replies: 43
Views: 12407

Sure? Because on my OS (win98_se) it isn't