Search found 28 matches

by Thorsten
Fri Jul 18, 2003 2:29 pm
Forum: Announcement
Topic: Support for unsigned types: byte, word, and long!
Replies: 4
Views: 2776

@matthew180: Nice homepage layout :D
by Thorsten
Sun Jul 13, 2003 11:32 am
Forum: General Discussion
Topic: Long splitting into signed hiword and loword (FMOD DSP unit)
Replies: 3
Views: 2570

Okay - I have done it myself :roll:

Here the three procedure's - with signed word's:


Procedure.w LOWORD(Value.l)
ProcedureReturn Value & $FFFF
EndProcedure

Procedure.w HIWORD(Value.l)
ProcedureReturn (Value >> 16) & $FFFF
EndProcedure

Procedure MAKELONG(low.w, high.w ...
by Thorsten
Sat Jul 12, 2003 5:50 pm
Forum: General Discussion
Topic: Long splitting into signed hiword and loword (FMOD DSP unit)
Replies: 3
Views: 2570

Hmmm okay :(

I want to write my own DSP (Digital Signal Processing) - Unit for FMOD.
FMOD --> http://www.fmod.org

Inside each DSP unit I get from the FMOD system a pointer to a
sound buffer with 1024 samples / 25 ms :idea:

I must divide each sample into a left and right audio channel...

Here ...
by Thorsten
Sat Jul 12, 2003 12:21 am
Forum: General Discussion
Topic: Long splitting into signed hiword and loword (FMOD DSP unit)
Replies: 3
Views: 2570

Long splitting into signed hiword and loword (FMOD DSP unit)

Hello ...

How can I split a signed long into two signed .w (words)?

This procedure's from Danilo do it unsigned :

Procedure LOWORD(Value)
ProcedureReturn Value & $FFFF
EndProcedure

Procedure HIWORD(Value)
ProcedureReturn (Value >> 16) & $FFFF
EndProcedure

Procedure MAKELONG(low, high ...
by Thorsten
Wed Jul 09, 2003 10:40 pm
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060

8) :wink:
by Thorsten
Wed Jul 09, 2003 10:11 pm
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060

Okay :D

Here are the download:
Link: => http://www.cyberzone2001.de/programme/tiny_mail.exe

Size: ~ 1.5 MB

It's a self-extracting archive with 6666 mails for testing :)
Start the program by using the Tiny Mail.exe :idea:
by Thorsten
Tue Jul 08, 2003 10:47 pm
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060


create an individual file for each email...

This way even backing up and restoring emails is easy... you just have to copy/paste them back on the folders....

Also create an mail.index for quick search and upload into the client of the mails in the dirs.

Bad idea :wink: I have test that with ...
by Thorsten
Tue Jul 08, 2003 12:41 am
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060

I have work with Outlook Express for years, and now I have
around 50000 E-Mails inside Outlook.

And believe me: Outlook Express have big bug's ...
The first times, I have no problems, but now
at the 50000 limit :roll:

And: Outlook Express is a safety risk :!:
by Thorsten
Mon Jul 07, 2003 11:16 pm
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060

A public version? Okay ... within the next 1 - 2 days :wink:
by Thorsten
Mon Jul 07, 2003 9:11 pm
Forum: General Discussion
Topic: tired of bulky mail clients?
Replies: 57
Views: 15060

I wrote a mail client with PureBasic :D What do you think?

http://www.cyberzone2001.de/programme/mailclient.jpg

I have test it, with 6666 mails per folder ... it's fast :)
The client load only ASCII - but the user can manually
select HTMl view.

I have wrote a "Language - Engine". Because that ...
by Thorsten
Sun Jun 15, 2003 3:06 pm
Forum: Off Topic
Topic: Can anybody explain me about VAT in the EU?
Replies: 8
Views: 3552

The problem is, that all press releases on the EU - Homepage are in
different languages :roll:

So ... I select my language (German) and get the press releases in
english + german + french :x

But not all releases in all languages:
If one of our german minister had done something, the releases is ...
by Thorsten
Sun Jun 15, 2003 2:45 pm
Forum: Tricks 'n' Tips
Topic: Spin Gadget (und ein Hinweiß für das Help-File
Replies: 4
Views: 2675

Hey GPI :D Wrong forum? :wink:
by Thorsten
Thu Jun 12, 2003 2:25 pm
Forum: General Discussion
Topic: Problem with catch events from EditorGadget() -->PB 3.7
Replies: 33
Views: 13000

Right - I had this problem too :D

You can send this messages to the gadget:

Code: Select all

SendMessage_(GadgetID(#Number), #EM_SHOWSCROLLBAR, #SB_VERT, #True)
  SendMessage_(GadgetID(#Number), #EM_SHOWSCROLLBAR, #SB_HORZ, #True)
Now the scrollbars always showed - and your problem is solved :D
by Thorsten
Wed Jun 11, 2003 3:47 pm
Forum: General Discussion
Topic: VOTE for PureBasic!!
Replies: 38
Views: 13282

Hmmm ... the address is not good :( :? All maybe future users found
nothing there... :cry:
by Thorsten
Tue Jun 10, 2003 7:03 am
Forum: General Discussion
Topic: HInstance ==> hWnd
Replies: 3
Views: 3803

At the german PureBasic forum I found the answer:

Start a browser or any other program:
BrowserHandle = RunProgram(Program, File, "", #Null)

And later close it:
TerminateProcess_(BrowserHandle, #Null)

The problem was: If I start the browser like that:
BrowserHandle = RunProgram(URL ...