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

Search:

Type: Posts; User: brraj

Page 1 of 12 1 2 3 4

Search: Search took 0.75 seconds.

  1. Thread: Vs2005 -> vs2013

    by brraj
    Replies
    11
    Views
    2,419

    Re: Vs2005 -> vs2013

    Thanks all for the reply.



    Done. Its working fine.
    Thanks for the tip as i was able to clear lot of warning and some i have to learn why in the first place warning is displayed for.
    ...
  2. Thread: Vs2005 -> vs2013

    by brraj
    Replies
    11
    Views
    2,419

    Vs2005 -> vs2013

    From Past 10years we were working on VS2005 VC++ and currently shifted to VS2013.

    I dont know from where to start as there are many classes added with new features.

    Unable to find good...
  3. Thread: Unicode problem

    by brraj
    Replies
    3
    Views
    1,286

    Re: Unicode problem

    thanks for the reply, will check with unicode encodes.
  4. Thread: Unicode problem

    by brraj
    Replies
    3
    Views
    1,286

    Unicode problem

    Hi All,

    I am using VC++ 2005, Multibyte char set.

    I am getting hex values from stream and i have to show it in respective language.

    in below example

    char mt[] = { 0x0C, 0x85, 0x0C,...
  5. Replies
    1
    Views
    2,943

    Re: XML Save problem in MSXML2::IXMLDOMDocument

    If we stop adding to the parser and later save it saves but concurrent operation is not possible.
    Any solution?
  6. Replies
    1
    Views
    2,943

    XML Save problem in MSXML2::IXMLDOMDocument

    hi,

    I am using MSXML2::IXMLDOMDocumten* pointer to do XMl operations like load/save/add/delete in VC6. It was working fine in VC6.
    Our company upgraded its vc editor from VC6 to VS2005. After...
  7. Replies
    4
    Views
    796

    Re: Multiple instance - MDI problem

    @Drmmr - thanks for the help
  8. Replies
    4
    Views
    796

    Re: Multiple instance - MDI problem

    Its a regular dll.



    Inside the entry function of regular dll.

    extern "C" __declspec(dllexport) CWnd* RunDll( void* pPtr )

    multiple instances are created by calling LoadLibrary multiple...
  9. Replies
    4
    Views
    796

    Multiple instance - MDI problem

    I have an application which invokes my dll app using loadlibrary.

    In my dll application i create few documents using this

    pDocTemplate = new CMultiDocTemplate(
    IDR_MDTYPE,...
  10. Replies
    9
    Views
    1,723

    Re: Place VC++ child dialog(dll) inside VB form ??

    @WoF - Much appreciated for the code.

    When i copied your code to form1.frm it was giving compiler errors.
    I figured out that we have to add Private before 'Declare' keyword with the help of...
  11. Replies
    9
    Views
    1,723

    Re: Place VC++ child dialog(dll) inside VB form ??

    Beacause i dont know VB



    I cant tell the VB guys as they say they are expert and they cant achieve above requirement.



    To be honest, If i were you i would have created the VB app and...
  12. Replies
    9
    Views
    1,723

    Re: Place VC++ child dialog(dll) inside VB form ??

    A sample VC++ dll called VCDllChildDlg has been attached.

    Entry function is CallDllChildWindow which returns HWND

    extern "C" __declspec(dllexport) HWND CallDllChildWindow()

    Can you place the...
  13. Replies
    9
    Views
    1,723

    Re: Place VC++ child dialog(dll) inside VB form ??

    Thanks for the reply.



    She has done these steps and is able to display it as Popup.



    Yes, this is the problem.
  14. Replies
    9
    Views
    1,723

    Place VC++ child dialog(dll) inside VB form ??

    Hi all,

    I have VC++ regular dll which creates a dialog as child and returns pointer.

    My requirement is i need to invoke this DLL from VB and place the created child dialog inside VB form
    ...
  15. Replies
    6
    Views
    1,356

    Re: Release with Debug in VC++ VS2005?

    S_M_A:
    I tried most of the places to set a breakpoint but was not able to debug in release mode.
    when i execute the application breakpoint vanishes.
    by the way which place did you put break...
  16. Replies
    6
    Views
    1,356

    Re: Release with Debug in VC++ VS2005?

    thanks for the info S_M_A.

    If i create a new vc++ project in VS2005 even in release mode i can debug by default.
    As i have converted from vc6 to vc++ VS2005 i have a problem.

    still not able to...
  17. Replies
    6
    Views
    1,356

    Release with Debug in VC++ VS2005?

    Hi all,

    In VS2005 Vc++ how can i run a application in Relase mode with debug support.

    thanks ahead
  18. Replies
    2
    Views
    1,538

    Re: Create/Read MSXML2::IXMLDOMDocument poiner ?

    Hi Zaccheus,

    thanks for the reply,

    If you see in my sample application i am doing the same thing which you have suggested in function
    GetStartAndEndTime(char st[50],char et[50]).

    i am...
  19. Replies
    2
    Views
    1,538

    Create/Read MSXML2::IXMLDOMDocument poiner ?

    Hi All,

    I am using DOM to create,load,save to xML file.

    I am using CreateElement of MSXML2::IXMLDOMDocument pointer to create nodes.

    Lets say i have created 4 nodes, now i want to see what...
  20. Re: Create and Read MSXML2::IXMLDOMDocument poiner at same time ?

    Hi All,

    A sample application has been attached to test the above error.

    I am using msxml4 version.

    thanks ahead.
  21. Create, Modify and Read MSXML2::IXMLDOMDocument poiner at same time ?

    Hi All,

    I am using DOM to create,load,save to xML file.

    I am using CreateElement of MSXML2::IXMLDOMDocument pointer to create nodes.

    Lets say i have created 4 nodes, now i want to see what...
  22. Replies
    14
    Views
    2,459

    Re: Multiple Views Single Document (MDI)

    Hi VictorN

    If you can alter my sample application it would be fine. Because i did the changes which you told,

    but its crashing when i call

    AfxGetMainWnd()->SendMessage(WM_COMMAND,...
  23. Replies
    14
    Views
    2,459

    Re: Multiple Views Single Document (MDI)

    Hi Gunaamirthavelu,

    can you post the stepby step code as i am not getting your point as to point same document to different views, using getActiveView().

    regards
    rajs
  24. Replies
    14
    Views
    2,459

    Re: Multiple Views Single Document (MDI)

    Hi Gunaamirthavelu,

    In the technique you have mentioned
    "firstview and second view both class contain same properties and same functions "

    here in my requirement both classes can contain...
  25. Replies
    14
    Views
    2,459

    Re: Multiple Views Single Document (MDI)

    Hi Gunaamirthavelu

    I understand that using splitter windows we can accomplish. But we cannot use splitter windows here.

    Our requirement is we should have an

    - MDI application
    - which...
Results 1 to 25 of 295
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured