hi all : As far as I know,to create a source file in visual studio 6.0 is not that easy as push a button,but: file->new->files->c++ sourcefile?please help me :(
wb_program
Posts
-
VC 6.0: shortcut key for create cpp source file? -
How to calculate the time between LBUTTONDOWN and LBUTTONUP?I can't find any function for calculate the time between LBUTTONDOWN and LBUTTONUP,help me ~ :cool:
-
How To Beautify the Software Interface In MFC?I know there are many beautyful applications written using MFC,but I can't make it :sigh:
-
Searching string..In c++: #include <string.h> char *strstr( const char *str1, const char *str2 ); The function strstr() returns a pointer to the first occurrence of str2 in str1, or NULL if no match is found. If the length of str2 is zero, then strstr() will simply return str1. For example, the following code checks for the existence of one string within another string: char* str1 = "this is a string of characters"; char* str2 = "a string"; char* result = strstr( str1, str2 ); if( result == NULL ) printf( "Could not find '%s' in '%s'\n", str2, str1 ); else printf( "Found a substring: '%s'\n", result ); :laugh:
-
How To Beautify the Software Interface In MFC?Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks