December 30th, 2005 01:47 PM
Thanks again for the reply; I knew I didn't know what i was doing with that WindowProc function, and that just proves it.
I actually (seemingly by luck) managed to get it to work - I needed to...
December 30th, 2005 11:58 AM
Kirants: Thanks for your reply;
This referred to the possibility of hacking around with the messagemap of a class, to add controls onthefly. What i meant was to manually change the...
December 30th, 2005 05:55 AM
Hi,
Basically I'm creating an app where the entire thing is controlled by scripts. I want to be able to create a window on-the-fly, with controls added via scripting. The problem is I'm also...
February 6th, 2004 01:23 PM
This may sound a n00b question, but say I have two files, a.h and b.h. a.h contains a class, a, and b.h contains a class,b. class a has a member of type b, and vice versa for b. How would i arrange...
January 23rd, 2004 03:26 PM
i create a dialog in the main thread of my mfc app using the Create() function. (im not going to post the code because its overcomplicated and messy, and will just confuse things). I need to be able...
November 29th, 2003 06:52 AM
Heres where it happens
if(b != 0) {b = e + 1;}
e = findinstring(' ', b, parms);
if(e == -1) e = strlen(parms);
char *f = new char[e-b];
for(int i = 0; i < (e - b); i++)
{
November 28th, 2003 03:59 PM
Hi,
This will probably sound like a really n00b question, but here goes... I allocate a char * with new[]. i can then delete it with delete[]. However, if between the new and delete the char * is...