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

Search:

Type: Posts; User: ashukasama

Page 1 of 18 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    838

    Dump Analysis issue

    I tried to catch the stack trace of an address, but it always show me nothing,

    my issue is analyse memory leak, so i have queried all heap statics and then queried highest allocated memory, it...
  2. Replies
    0
    Views
    751

    issues with MiniDumpWriteDump

    I am trying to create auto crash dump generation for C++ applications. so MiniDumpWriteDump function is used. Application is setting up unhandled SetUnhandledExceptionFilter to handle all unhandled...
  3. Re: [RESOLVED] GUI and Console Application within single application

    it will have same issue like
    it will be deattached from parent console window if i run application as console mode in console window.
  4. Re: [RESOLVED] GUI and Console Application within single application

    not worked as if launched from console window it will not leave console application
  5. Re: [RESOLVED] GUI and Console Application within single application

    Done using FreeConsole
  6. Re: Simple doubt about modal dialogs (they block caller they do not?)

    Create Separate thread to perform processing and wait in main thread, with

    PreTranslateMessage to not block GUI updation
  7. GUI and Console Application within single application

    Hi Guys,

    today i am in some very diiferent scenario

    My client needed a GUI and Console Application within single application.

    I am able to achieve using just wriiten Main and then called...
  8. Replies
    0
    Views
    564

    Services using SCM in VC++

    Hi guys,

    I have issue in service created using VC++ code.

    as my ServiceMain function ends. it returns following error in End of the function

    Unhandled exception at 0x0012e3b4 in Adiserv.exe:...
  9. Replies
    8
    Views
    1,183

    Re: STL map and set

    Have a look on this thread

    http://www.codeguru.com/forum/showthread.php?t=179442
  10. Replies
    7
    Views
    1,196

    Re: STL map in UNIX

    now I think issue is due to /r/n appended by windows, i tried to read this file with getline function which return string including /r. now i created new file itself in unix system. now its working
    ...
  11. Replies
    7
    Views
    1,196

    Re: STL map in UNIX

    yes paul , i changed my code, the my first code i posted is working, but this one is not wokring , but if you need i will start new thread. else please help me out.
    thanks
    Ashish
  12. Replies
    7
    Views
    1,196

    Re: STL map in UNIX

    Thanks for your response,
    But i wans not able to execute this code,

    code:



    //Inclue files for libraries
    #include <stdlib.h>
    #include <ctype.h>
  13. Replies
    7
    Views
    1,196

    STL map in UNIX

    I want to write shell programming in UNIX, alao i am new to unix. i have written very simple program for console

    ISSUE:
    I added some item in map as string int pair, now i am searching string...
  14. Replies
    7
    Views
    1,092

    Re: Simple C++ question

    if you want to multiply 10 with 1 and then subtract 5 . then use *

    to get decimal value of 1 x 10-5 can be calculated 1*10-5
  15. Replies
    7
    Views
    1,092

    Re: Simple C++ question

    can you eleobrate your problem in more detail
  16. Replies
    1
    Views
    673

    Custom Build Not happen every time.

    we have fresh code in VC++ which has some custom build event( which has make file to generate some header files), and after building the project. if i remove the newly created header files as well as...
  17. Replies
    1
    Views
    3,892

    Re: Read from Vista Event log

    have a look that

    http://www.codeguru.com/columns/kate/article.php/c12401
  18. Replies
    5
    Views
    7,664

    Re: List of objects

    use the code i provided.. also please post your original application code
  19. Replies
    5
    Views
    7,664

    Re: List of objects

    if you use int.Parse you will notice following error.:eek:

    Error 1 The best overloaded method match for 'int.Parse(string)' has some invalid arguments
    Error 2 Argument '1': cannot convert from...
  20. Replies
    5
    Views
    7,664

    Re: List of objects

    the code si working except defining variable and classes.



    struct Option
    {
    public int number;
    public Option(int num)
    {
    ...
  21. Replies
    10
    Views
    1,987

    Re: Waiting for threads

    Don't send message, just signal event for thread waiting. your waiting thread can wait for multiple object..

    for detail see here
  22. Thread: ProcessList

    by ashukasama
    Replies
    5
    Views
    1,110

    Re: ProcessList

    http://msdn.microsoft.com/en-us/library/ms686701(VS.85).aspx
  23. Replies
    8
    Views
    1,305

    Re: Find directories

    http://msdn.microsoft.com/en-us/library/aa365200(VS.85).aspx
  24. Re: How to make different color in listBox' lines

    http://www.codeguru.com/cpp/controls/listbox/colorlistboxes/article.php/c1611
  25. Replies
    3
    Views
    8,370

    Re: C++ Winapi - RegisterWindowMessage

    You can not use the registered window message in Swith case. if you want to use in callback, compare with if condition..

    for more please look at this thread

    go through this thread, it will be...
Results 1 to 25 of 448
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured