CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2002
    Location
    Scotland
    Posts
    10

    Angry Database programming Borland c++

    i have a few problem with a project and i wonder if anyone could help me.
    1)I have a problem displaing 2 MDIChild form inside a ParentForm. the first child is called by a menu and from the Child menu the second child is displayed always leaving active the main form ant the child menu.
    Any ideas ????
    2)Also one of the function requires to access a database created in Microsoft Access to retrieve, edit and delete data . how it is done since i cannot find much on books available in the library ????
    3)also this program should not use the mouse .
    what code will translate the mouse action into keyboard action, or disable the mouse ????
    Thank

  2. #2
    Join Date
    Jan 2003
    Posts
    4
    1). Maybe I am not completely following you question but Form->Close() or Form->Visiable = false will cause the form to be hidden. Form->Show() or Form->Visible = true will display the form. So hide any of the child forms that you do not need.

    Are you using auto created forms?
    If not I suggest using Manually created forms in any MDI enviroment.

    2). For MS Access use the ODBC driver Via the BDE. This will allow read/write access to the Database while supporting native BDE calls.

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