Argh! I HATE tooltips with a passion. 1. They usually pop up with information you don't need. 2. They usually obscure information you do want to...
What do you mean by a channel?
xpi0t0s has reported a post. Reason:Spam. Post: Audio wave file mixing Forum: Advance C Assigned Moderators: N/A Posted by: sslivingu
Give Fighting.battlemethod() some arguments, e.g. Fighting.battlemethod("xpi0t0s","whitfox",MAXINT); C# uses function overloading, which means...
Depends on the application. Without concrete examples I've no way of knowing. In general though you don't need a database just to store data,...
Sure. How far have you got and where are you stuck?
How far have you got? Where are you stuck?
It doesn't work that way; this isn't 1-1. A one dimensional array is a list of items. int i[10]; declares an array of 10 ints which are accessed...
How far have you got? Where are you stuck? As HowardL says we're not going to do this for you, but we will help if you're stuck. If you're not...
We won't do your homework for you. Post what you've got so far and show where you're stuck and what you don't understand. If you're really...
Dunno what's wrong on your system, it worked fine for me: ---START Enter the string: hello h Press ENTER to continue... The full string was...
Memory leaks don't cause software to run slowly, what happens when a program leaks memory is that over time its memory usage grows and grows until...
Re: Coverity Prevent- static source code analysis tool One useful trick for handling dangling pointers is to initialise a pointer to NULL (before...
Question doesn't make a lot of sense. Can you give some examples of the applications that don't have any database? You don't have to use...
What about the Microsoft compilers and SDK? Visual Studio is an expensive product, but I believe you can download the compilers and platform SDK...
SendMessage(hEdit3,WM_SETTEXT,(WPARAM)hwnd,NULL); SendMessage(hEdit3,WM_SETTEXT,hwnd,NULL); SetWindowText(hEdit3,(LPCTSTR)hwnd);...
OK, you can convert a number into a string with sprintf. I'd probably use the format string 0x%08lx, then the resulting string would contain...
The hard part of this is going to be figuring out how to read and write wave files. If you have some kind of library that'll make it easier,...
Impossible to answer from the information given, except to say that converting a HWND to a LPCTSTR is impossible; they're completely different...
Simply moving i++ from one place to another isn't likely to make any difference; you'd need to run it in a profiler to determine (a) if the i++ is...
Separate names with a comma.