Search found 8 matches

by ThorstenD
Tue May 26, 2009 7:47 pm
Forum: The PureBasic Form Designer
Topic: Visual Designer V4 Alpha 16 Windows and Linux Released
Replies: 97
Views: 72299

zikitrake wrote:Made from 0... not from Blitz source code ;)
But the complete concept is pinched. See Syntax, Inline ASM, UserLibrarys concept (without file extension - lol)... all pinched from Amiga BlitzBasic. 8)
by ThorstenD
Tue May 26, 2009 6:37 pm
Forum: The PureBasic Form Designer
Topic: Visual Designer V4 Alpha 16 Windows and Linux Released
Replies: 97
Views: 72299

We saw what happened to the first PB IDE when it was open source.

What happened Bericko? Though I can guess! :)

Sold as a blitz ide with minor modifications.
And Purebasic is/was a 100% clone of BlitzBasic from Amiga. :twisted:
Don't say no, userlibs, commands and all the rest say thats so ...
by ThorstenD
Tue May 05, 2009 12:29 pm
Forum: Coding Questions
Topic: How to create an invisible or protected process?
Replies: 26
Views: 9264

Rings wrote:i did something so far (convert the c code below)
but it did not work here (XP) .
Don't know what goes wrong here,
perhaps someone can help..
I has the same problem. Compieled with Pelles C it's works on my XP. The full source can be dl from here.
by ThorstenD
Sun May 03, 2009 4:29 pm
Forum: Coding Questions
Topic: How to create an invisible or protected process?
Replies: 26
Views: 9264

Try to convert it to pb 8)


#define _WIN32_WINNT 0x0500

#include <windows.h>
#include <sddl.h>
#include <accctrl.h>
#include <stdio.h>
#include <conio.h>
#include <aclapi.h>

BOOL ProtectProcess(HANDLE hProcess);

void main(void)
{
HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE ...
by ThorstenD
Thu Apr 02, 2009 10:29 pm
Forum: Announcement
Topic: Libs : ToolbarPlus
Replies: 43
Views: 25459

Thank you :D
by ThorstenD
Sun Mar 29, 2009 9:36 am
Forum: Applications - Feedback and Discussion
Topic: Template Explorer
Replies: 6
Views: 3800

good work! thanks :D
by ThorstenD
Fri Mar 27, 2009 1:53 pm
Forum: Coding Questions
Topic: Need help to convert C to PB [Resolved]
Replies: 6
Views: 1478

@Hroudtwolf
Many thanks for the fast help. Functions like it has to do. :D Thank you also to the other. Have a nice day and up to next... Greetings Thorsten
by ThorstenD
Fri Mar 27, 2009 8:56 am
Forum: Coding Questions
Topic: Need help to convert C to PB [Resolved]
Replies: 6
Views: 1478

Need help to convert C to PB [Resolved]

Hello people!
Am new here and needs help with convert from following C code:
#define amptarget 30000 // target level
#define ampquiet 800 // quiet level
#define amprate 0.02f // amp adjustment rate

typedef struct {
float gain; // amplification level
int delay; // delay before increasing level ...