Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dolman

    Problems Deleting Arrays

    Hi, I am having problems deleting an array in my clear up code of a DirectX application in visual c++. The application runs fine until you exit it or the clean-up code is called for another reason. The array is defended in the following way: DWORD g_dwNumModels = 0L; //Used to store the...
  2. Dolman

    Can .X objects include bumpmap information ?

    Hi I am writing a 3D game engine using the MFC frame work, and I would like to know if the .X Object format can support bump mapping textures? as this is a feature I would really like to add to my engine. David
  3. Dolman

    Using .X Object in Visual Studio

    Hi I have recently started using the DirectX 8 SDK to make a 3D application using Direct3D, however I am having trouble with applying textures to .X objects. I am using the following method to load the .x object: if( FAILED( m_pObject->Create( m_pd3dDevice, _T("object.x") ) ) )...
  4. Dolman

    MFC AppWizard, MDI Application

    Success, after some experimentation. I had to add a new CFormView class to the application, and then remove the default CChildFrame(CMDIChildWnd) class from the doc template registration part of the application, as I could not find a way of adding the edit box directly to the CChildFrame class...
  5. Dolman

    MFC AppWizard, MDI Application

    Hi, I have just started writing an application with the MFC AppWizard(exe), to create a MDI application, but I have no idea how to add objects to the Child window. The object in question that I am adding is an EditBox, so that plane text can be loaded and saved in a manor similar to any MDI word...
  6. Dolman

    Drag and droping files

    Success, thank you very much for your help, it has been much appreciated.
  7. Dolman

    Drag and droping files

    I have managed to derive the new class from CEdit, include an Edit box and add the appropriate code to OnInitDialog, but I can't extract the file dropped information, such as filename and path etc. Any further help would be much appreciated. (Please note I have not been using Visual C++ for very...
  8. Dolman

    Drag and droping files

    Hi I am writing a program that requires dragging and dropping of files into an Edit box, using the MFC Dialog based application type. I have seen the accept files option in the properties of the edit box and tried using it, but I can't add an event handler for when a file is dropped into the...

Part and Inventory Search

Back
Top