Search found 4 matches

by sNoOOPy
Mon Jan 23, 2012 7:39 am
Forum: General Discussion
Topic: COM object interaction possible?
Replies: 2
Views: 1109

COM object interaction possible?

Is there a way to send messages using Component Object Model in purebasic?
$irComObject = ObjCreate("IRCommand2.App")
$irComObject.ClickButton ("remote", "Channel-" & $str1)
by sNoOOPy
Mon Jan 23, 2012 7:25 am
Forum: Coding Questions
Topic: Connecting from a Java or C/C++ Client to PB Chat Server
Replies: 8
Views: 1793

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

"fastbit66:
I found that if I send nothing from a client to the server the connection gets lost after some time."


You can use UDP instead of TCP. A UDP datagram is just an IP+Port+Message by itself with nothing extra. There is no connection to lose because there isn't one to begin with. The ...
by sNoOOPy
Thu Jun 23, 2011 2:41 pm
Forum: Feature Requests and Wishlists
Topic: Change default font from courier and color scheme
Replies: 3
Views: 1267

Change default font from courier and color scheme

My first impression when I used the pb ide was that it had a strange font that didn't seem to be antialiased and was pixelated. It was straining on the eyes to look at for long periods. Later I discovered the font section in preferences and with a different font and a larger font size it was much ...
by sNoOOPy
Thu Jun 23, 2011 2:09 pm
Forum: Feature Requests and Wishlists
Topic: User modify syntax option
Replies: 4
Views: 1149

User modify syntax option

Basic is easier and more pleasant to read than c or java etc as it doesn't have so many semicolons and braces etc. It also uses words in place of characters like !,$,->,@.

Could there be added a way to for the user to customize the syntax?

For example: Global $var as STRING
instead of: Global ...