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

Search:

Type: Posts; User: AbhiMFC

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. XmlDocument load function is giving Out of Memory Exception For large XML file(135mb)

    Hi,

    XmlDocument xmlDom = new XmlDocument();
    xmlDom.Load("D:\CPDCL_01HW342889_ALL_new.xml");

    according to me Innerxml data member of XmlDocument can not able to hold...
  2. Re: CRecordSet Open() Function is Getting Crashed.

    Even If I Put Try Catch Iam getting Unhandled Exception ..
  3. CRecordSet Open() Function is Getting Crashed.

    Hi,


    CDatabase m_database;
    CString SqlString, sSDE;
    CString ConnectStr;


    ConnectStr.Format("ODBC;DRIVER=Oracle in OraDb10g_home1;Database=DEVTEST;uid=IMRAN;pwd=IMRAN");
  4. Replies
    2
    Views
    843

    Re: CString Formatting Problem in MFC

    Thanks alot
  5. Replies
    2
    Views
    843

    CString Formatting Problem in MFC

    Hi,

    Cant We Format a CString Variable in MFC Twice.

    Iam Getting Assertion in Following COde.

    CString sAppFile;
    sAppFile.Format("%s.dat", "E:\\VSS");
    sAppFile.Format(" IN-[%s] ",...
  6. Re: Getting Assertion While Dellocating Memory

    Thanks alot
  7. Re: Getting Assertion While Dellocating Memory

    Then why its not throwing error while memory allocation ?
  8. Getting Assertion While Dellocating Memory

    Hi,,

    Can anyone let me know why Iam Getting error in below code while dellocating the memory.
    isn't the proper way to do it ?


    Thanks


    #include "iostream.h"
  9. Replies
    6
    Views
    2,504

    Re: Shortest Path Algorithm

    Do i need to post new post again in Visual C++ section or can i transfer entire discussion thread to VC++ section.
  10. Replies
    6
    Views
    2,504

    Re: Shortest Path Algorithm

    This is a Electrical Network,,Where we have Node(Poles) and Edges(Series elements like Transmission Line,Series reactor,etc),..

    So we have to find shortest path between given two nodes.

    We are...
  11. Replies
    6
    Views
    2,504

    Shortest Path Algorithm

    Hi

    Can anyone give C++ Implementation code to find shortest path between two Nodes.

    I am using Dijiktrax algorithm,,But for Graph which has 12,000 nodes its taking too much time to execute.
    ...
  12. Replies
    4
    Views
    877

    Re: Data Segement For THreads

    well,, I was expecting to protect a variable to avoid simultaneous access to it by threads.
  13. Replies
    4
    Views
    877

    Data Segement For THreads

    Hi,,

    I have below doubts.

    1)Do we get Seperate Data Segment and Code Segment for Each thread in Multi threaded Environment ?

    2)If I have Same Data Segment for All threads ,then Can i protect...
  14. Replies
    2
    Views
    1,218

    How to Zoom file in MFC/Win32 ?

    Dear All

    I have a PDF file and i need to Zoom it programatically.
    how can we do that,DO we have any Win32 API or MFC functions for that.

    Thanks
    Abhi
  15. how to get the handle of child control(EDIT BOX) at run time in MFC

    how to get the handle of child control(EDIT BOX) of other MFC EXE to my MFC code?
    This edit box is not having caption,so that i cant use FindWindowEX.
    Is there any other way ?

    -ABhi
  16. Replies
    4
    Views
    1,776

    Re: How to Get Day in MFC?

    Cool,,Its Working for me also..

    Thanks ALot :)
  17. Replies
    4
    Views
    1,776

    How to Get Day in MFC?

    Hi,

    I need to get the day(Eg: Today is Wednesday),Is there any API which return the day ?

    Thanks
    Abhi
  18. Re: How To Get Path of other Exe file in my MFC Code

    Thanks Alot..
  19. Re: How To Get Path of other Exe file in my MFC Code

    Thank You.
    Dont we have any Library Function to get the Path.

    Cant I achieve it using GetModuleName and GetModuleFileName ?

    -Abhi
  20. How To Get Path of other Exe file in my MFC Code

    Hi,

    I have one .Net Exe file when i click on that i need to get path of that Exe in My MFC code,how can i get this ,please help me on this.

    Thanks
    Abhi
  21. How to Debug a Release Version MFC code in VS2008 08

    Hi

    can anyone tell me ,how can we debug the release version code in VS2008

    Thanks
    Abhi
  22. Replies
    3
    Views
    903

    How to Debug a DLL

    Hi

    Can anyone let me know the steps how to Debug the DLL in MFC

    Thanks
    Abhi
  23. Replies
    8
    Views
    2,619

    SingleTon Class sample code

    Hi All

    Can anyone give me a sample code to achieve singleton class.

    i know the constructor should be private and should use public static member function.

    please tell me how to do it in C++...
  24. Replies
    5
    Views
    2,571

    Re: eBooks for MFC and COM

    Dear i know how to Google it,,but iam not getting the exact eBook link for downloading,,,i need the link from where i can download.

    Thanks
  25. Replies
    5
    Views
    2,571

    Re: eBooks for MFC and COM

    InsideCOM ?
Results 1 to 25 of 49
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured