Sorry. I don't know anything about matlab except that I've heard of it.
Break your string into characters and test each bit in the character. If set, put a '1' in a temp string, else put a '0' in the temp string....
I'm not following you here. A char is 8 bits; a double is 64 bits. They are already stored internally as binary streams. What are you trying to...
What is an "h.in" file? It's not anything standard to C++ or visual studio. Where did it come from?
The easiest way is to wrap a custom class around the ADO COM object. There are hundreds of interfaces in the ADO object, but you probably only...
I believe it should be 12. The a++ is superfluous to this expression as it won't be evaluated until after the full expression (after the...
It really depends on the nature of your service. Typically a service should spend most of its time waiting for some sort of event. Your main...
C or C++? In C, there stdio.h functions like: FILE, fopen() fgets(), etc. In C++, it's easier with streams like: std::ifstream (read(),...
Is this microcontroller code?
I'm not really sure what you are doing, but DestroyWindow is usually problematic. Have you tried just posting a WM_QUIT to the window instead?...
Have you tried it in the debugger to see where the crash occurs?
I'm sorry, but I really have no idea. I've never done any DirectX stuff nor messed with any of the platform SDK samples. I merely noticed in...
I don't have any idea. I just noticed that you were using a DirectX API call and thought that not having the SDK installed might be the source of...
Editbox() is declared as a member of class Find. Your implementation of editbox() doesn't show that it is part of the Find class. Add this (in...
Have you installed the DirectX SDK? http://www.microsoft.com/downloads/details.aspx?FamilyID=b66e14b8-8505-4b17-bf80-edb2df5abad4&displaylang=en#dx
What's the problem (or do you just want someone to do your homework for you)?
Did you have a problem with implementing this, or do you just expect someone to do it all for you?
static myclass mylist; is declared in a header file, therefore, each file that includes resourse.h has a different copy of mylist. Declare it...
It's not at all clear what you are doing, but why the wcstombs_s? Just use _wfopen_s, or better yet, open a CFile and avoid all the string...
Do you mean char array as in a C-style string? i.e.: char mystring[100]; //99+NULL character string What are you trying to merge with it?
Separate names with a comma.