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

Search:

Type: Posts; User: coolshashi

Page 1 of 4 1 2 3 4

Search: Search took 0.05 seconds.

  1. Re: error C2039: 'Windows' : is not a member of 'System'

    I found out the issue myself..

    I was missing some references to dlls like PresentationCore, WindowsBase, PresentationFramework etc

    Shashi
  2. Re: error C2039: 'Windows' : is not a member of 'System'

    I am trying to try out adding a MFC dialog to a WPF window converting the dialog to a control as mentioned in this article.

    http://msdn.microsoft.com/en-us/library/aa970061.aspx

    How ever after...
  3. Dynamic Dialog using from XAML in .net desktop application

    Hello All,

    I am trying to rewrite a huge old MFC/C++ project using C# /WPF.

    In this project we support scripting language something that we developed here in C/C++

    The scripting(text files)...
  4. Replies
    1
    Views
    621

    Label Sharing in Visual source safe

    Hello

    I am using Visual source safe that came with Visual studio6.0 enterprise edition. I am facing a problem. I have many labels on my project. But when i share the the files from this project...
  5. Replies
    0
    Views
    1,016

    Reading a *.pal palette file

    Hello

    I have a 3rd party tool that generates user customized palettes in *.pal format. The output is a .pal file contating 256 colors. I have to use that palette file to assign RGB colors to a...
  6. Replies
    2
    Views
    529

    Debugging a crash

    :confused:

    Hello

    I have an MFC application at my customer site that is crashing occasionally. I want to get some kind of information from them like a dump file and try to get the exact...
  7. Replies
    2
    Views
    459

    Getting information on the crash

    Hello All,

    I have some program that crashes once in a while at my customer site. Say they have debug executable and i have the .pdb file and the source code here. Now how do i trace back into the...
  8. Replies
    4
    Views
    794

    Software routing..

    Im new to network programming. Let me tell what my requiremets are.. And Please suggest me the psooible solutions.
    I have a server computer to which a hardware is attached. The hardware works on...
  9. Replies
    1
    Views
    553

    structured storage

    Hi

    This is on structured storage. Im having a problem creating a structure file that with
    STGM_READWRITE |STGM_DIRECT |STGM_SHARE_DENY_WRITE options.
    I tried stgcretedocfile and...
  10. Replies
    5
    Views
    1,065

    failure of memory allocation

    Hi

    I have a simple dialog based application, which tries to allocate huge amt of memory say 400 mb (in a 1 gb ram machine ) the allocation fails. The allocation is done in a worker thread. If i...
  11. Replies
    3
    Views
    1,303

    i have seen that post

    hi

    i have refered that post but its not working for me.

    void SetLVCheck (WPARAM ItemIndex, BOOL bCheck)
    {
    ListView_SetItemState (m_lvTestList.m_hWnd, ItemIndex,
    UINT((int(bCheck) + 1) <<...
  12. Replies
    3
    Views
    1,303

    adding check box to clistctrl

    hi

    I have a list control which has the LVS_EX_CHECKBOXES style.

    im inserting the colum using InsertColumn and LV_COLUMN structure.

    like shown below
  13. Replies
    1
    Views
    788

    Show/Hide dialog bar and update menu

    Hi

    I have a dialog bar on which many dialog boxes reside. And there is a menu which shows/hides the dialog bar. Now i have a problem. i.e when the user drags the dialog bar from its docked...
  14. Replies
    1
    Views
    627

    opening many docs in singleton app

    Hi


    Hi i want to open many doc files from explorer in a singleton application. I have a singleton application that is working fine(singleton is achieved using mutex). But i want to send message...
  15. Replies
    7
    Views
    1,397

    Hi Hi i want to open many doc files from...

    Hi


    Hi i want to open many doc files from explorer in a singleton application. I have a singleton application that is working fine(singleton is achieved using mutex). But i want to send message...
  16. Hi Hi i want to open many doc files from...

    Hi


    Hi i want to open many doc files from explorer in a singleton application. i tried the code that is mentioned by darwen. But when i get the message to mainframe the file name is not there. it...
  17. opening many docs from explorer in same application

    Hi

    I would like to open many documents in the same application. i.e if a user selects bunch of document files of my application from the explorer and hits enter all of them should get opened in...
  18. opening many docs in the same application

    Hi i have an application that is a singleton. Only one instance of the application exists. Im achieving this by putting following code in the initinstance()


    [/code]

    char...
  19. Replies
    4
    Views
    3,650

    Re: linking with static mfc library

    Hi
    Thanks again for your reply. But im not using them in my project. If a 3rd party libraray that i use has that or not i dont know. In my project i have not used them.

    thanks
    shashi
  20. Replies
    4
    Views
    3,650

    Re: linking with static mfc library

    hi
    thanks for your reply..
    Im trying to link statically now with release mode.But still im getting some linking errors..


    nafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol...
  21. Replies
    4
    Views
    3,650

    linking with static mfc library

    Hi

    my application runs fine when i run using mfc in shared dll. But when i switch to use mfc in static linking it give some linking problems.Im using some external libraries also.
    The linking...
  22. Replies
    4
    Views
    797

    Re: Compile static or dynamic

    Hi

    my application runs fine when i run using mfc in shared dll. But when i switch to use mfc in static linking it give some linking problems.Im using some external libraries also.

    Any help is...
  23. Re: Message to Parent Dialog produces Crash in Release Version

    Hi

    I also have the same problem. User defined message works fine in debug mode but crashes in release version. But the problem is solved by changing the prototype of message handler as you told...
  24. Replies
    3
    Views
    664

    Re: string format

    hi

    I use sprintf now. But for that i should know the data type, to put all that %d %f etc.. which is not known to me or will be known at runtime.

    thanks
    shashi
  25. Replies
    3
    Views
    664

    string format

    I have to create some strings in the way cout works independent of data types.Is there any way to write the output to some char buffer or CString in a way similar to cout.

    int n=25;
    float...
Results 1 to 25 of 83
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured