CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: mankeyrabbit

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    5,146

    Re: Dynamic adding of controls (MFC)

    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...
  2. Replies
    5
    Views
    5,146

    Re: Dynamic adding of controls (MFC)

    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...
  3. Replies
    5
    Views
    5,146

    Dynamic adding of controls (MFC)

    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...
  4. Re: Finding some crash information on a non-msdev computer

    guys,

    thanks a lot for the links. I had searched, but obviously not with the right keywords! Cheers, I've fixed the major problem.

    MR
  5. Finding some crash information on a non-msdev computer

    Hi,
    I'm beta testing my application at the moment, and am having some crashes on my betatester's computer. The problem is that he doesnt have MSDEV, and win32 doesnt give me any information to go on...
  6. Replies
    4
    Views
    3,498

    cross-referencing #includes

    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...
  7. Replies
    1
    Views
    658

    Passing a dialog between threads.

    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...
  8. Heres where it happens if(b != 0) {b =...

    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++)
    {
  9. Delete fails when char * is used with strcat()

    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...
  10. Replies
    2
    Views
    750

    string parsing problem??

    hi,
    Im writing a client to connect to the MSN Messenger network. When connecting for the first time everything works fine, but, whne redirected by the server and opening a new connection, the parser...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured