| | 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! |

