Jump to content
xisto Community
Sign in to follow this  
Shrike

Rapidq

Recommended Posts

After struggling through C++ Windows Programming I stumbled upon RapidQ by William Yu. I LOVE it! You can do complex Windows Programming easily! You can do things like make an online chat server in as little as 100 lines of code, it has a GUI for creating Windows, and has a bunch of built in functions that I couldn't live without! I recommend this to everyone who is looking for an easy way to do complex windows programming. Here is an example of how simple the code appears:

 

SUB SendToClients(Message AS STRING)

ClientNum% = 0

FOR I = 1 to NumClients%

ClientNum% = Socket.WriteLine(Client%(I), Message)

NEXT

END SUB

 

I know you need to see more to understand what this small portion does but I didn't want to make a post with 100 lines of code in it...

 

You can download it here!

Share this post


Link to post
Share on other sites

the problem with software that lets you do rapid windows gui creations is that when you need some extra functions to insert in the code..most of them wont directly allow you and inter operation between windows versions dont fit well.--

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.