No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Did you try [URL="http://msdn.microsoft.com/en-us/library/ms740632(v=VS.85).aspx"]MSDN[/URL]? They pretty much have everything related to Winsock programming. Also this [URL="http://www.15seconds.com/issue/010820.htm"]website[/URL] seems to be quite useful on explaining what you need to establish a connection.
How do you access a database from a C++ or Windows API program? :-/ I would like to be able to get data from a database as strings or something. I want to use a database so that it is easily changed from MS Access or something similar. Thanks in …
Well, you should first try Windows API. To get started, try Forger's Win32 Tutorial, easily found on Google and even comes as a pdf! Then Google, Win32 API Reference. Although it is quite outdated, it still works and I always have it open when I program. As for C#, it …
What I did and am still doing is when I suddenly think of something that would be cool to make, and isn't unrealistically complicated with my current knowledge, I would start programming that with some new functions that I have no prior experience with. For example - when I found …
I think it's inpossible to replace typed letters/numbers with a '*' in c++, however you could get keyboard input directly with kb_hit(). To use the function kb_hit() you need to have the C header 'conio.h'. [CODE]#include <conio.h>[/CODE] For example; [CODE] char example[10] if (kb_hit()==TRUE) { example=getchar(); } [/CODE]
The End.
ylin333