Shrike 0 Report post Posted July 10, 2006 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
vhortex 1 Report post Posted July 23, 2006 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