Search found 9 matches

by fastbit66
Thu Feb 06, 2014 7:57 pm
Forum: Announcement
Topic: SpiderBasic 1.00 is out !
Replies: 438
Views: 242779

Re: SpiderBasic 1.00 alpha 3

COOL COOL COOL 8)

Waiting for the Linux version!
by fastbit66
Thu Jan 30, 2014 3:32 pm
Forum: Announcement
Topic: SpiderBasic 1.00 is out !
Replies: 438
Views: 242779

Re: SpiderBasic 1.00 alpha 2

YEAHHHH !!!!

And I think for Ubuntu Touch it looks good too!
There is already a HTML5/Cordova Layer for the Penguin powered mobile plattform!

And suppose if ogre3d could be wrapped in some way to webGL ...just a thaught...
Same (or close to) commands than in ogre3d Engine for applications but with ...
by fastbit66
Thu Sep 12, 2013 8:07 pm
Forum: Coding Questions
Topic: Global access to allocated memory from 2 different programs
Replies: 5
Views: 1434

Re: Global access to allocated memory from 2 different progr

@IdeasVacuum
@Thorium

Thanx a lot for your time and precise explanation!
That clarifies things up!

So I will try out your suggestions!

Best regards!
Andi
by fastbit66
Wed Sep 11, 2013 3:01 pm
Forum: Coding Questions
Topic: Global access to allocated memory from 2 different programs
Replies: 5
Views: 1434

Global access to allocated memory from 2 different programs

Hello PB Lovers!

I have a question regarding accessing allocated memory from 2 different programs - maybe its a silly quation so please excuse me:

If I allocate a memory block on the HEAP with AllocateMemory() Function and I save the adrees in a *MemID variable and I let the program wait
so that ...
by fastbit66
Fri Jan 20, 2012 9:18 am
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1782

Re: Connecting from a Java or C/C++ Client to PB Chat Server

Hi Daniel !

Thanx a lot for your workaround !

It works now !!!

GREAT !!!!
by fastbit66
Thu Jan 19, 2012 8:33 am
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1782

Re: Connecting from a Java or C/C++ Client to PB Chat Server

Do you need more information ?

Any help would be appriciated !

Thx a lot !

Andi
by fastbit66
Tue Jan 17, 2012 6:27 pm
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1782

Re: Connecting from a Java or C/C++ Client to PB Chat Server

Hi Daniel!

Oh sorry - yes that was a fault I made.

I copied and pasted this code from the ebook I use for C Programming - cause I didn't had my own code here when I posted it.

In my code at home I use port 443 in pb proggy and in the c program as well.
by fastbit66
Tue Jan 17, 2012 3:10 pm
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1782

Re: Connecting from a Java or C/C++ Client to PB Chat Server

Hi !

Here's the code of the server.
I know it'S ugly code - but works fine so far ;-)

It opens a console an shows the users connected to the server.
It simply sends a received message to all connected clients.
In addition the chat session is saved in a file.
The PING handle is to hold the ...
by fastbit66
Tue Jan 17, 2012 2:29 pm
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1782

Connecting from a Java or C/C++ Client to PB Chat Server

Hello dear PB Coders!

I have a question and I hope someone can help me out with some information:

I have coded a chat server in PureBasic (what else :-).

Is it possible to connect to this server with a Java or C/C++ Client?

I mean i Have a simple TCP/IP client that can send a string to a server ...