CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Error

  1. #1
    Join Date
    Oct 1999
    Location
    Sweden
    Posts
    7

    Error

    I have created a SDI with database. When I try to run the program I get an Error.

    Debug Assertion FAILD!
    Program C:\Visual_c........
    File: viewform.cpp
    Line 67

    and when I go to the error it looks like this
    in CFormView::Create

    ASSERT(FALSE)
    PostNcDestroy();
    return False;

    Could anyone help me?

    Micke


  2. #2
    Join Date
    Sep 1999
    Location
    Europe / Austria / Innsbruck
    Posts
    442

    Re: Error

    Hi, check the following:
    1. does the dialog template for this form view exist (IDD_*)
    2. has this dialog template the style WS_CHILD
    3. is this dialog template invisible (style WS_VISIBLE not set)
    4. does this dialog template have the border style "none"


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured