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

Search:

Type: Posts; User: Gunaamirthavelu

Page 1 of 15 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    38
    Views
    5,663

    Re: Access violation

    hi

    CWinApp::InitInstance(); comment this line debug ur program... its may be reason...
  2. Replies
    38
    Views
    5,663

    Re: Access violation

    hi

    can u post ur sample code...? ten only we can help u...
  3. Replies
    11
    Views
    10,489

    Re: Convert TCHAR[][] to char*?

    #define _UNICODE // Enables Unicode character handling for log
    #define UNICODE // files using Unicode instead of ANSI encoding.

    #include <windows.h>
    #include <stdio.h>
    #include <tchar.h>...
  4. Replies
    11
    Views
    10,489

    Re: Convert TCHAR[][] to char*?

    i try this code but it onlt take first char only.
  5. Replies
    11
    Views
    10,489

    Re: Convert TCHAR[][] to char*?

    sorry cilu i didn't get u.
  6. Replies
    11
    Views
    10,489

    Convert TCHAR[][] to char*?

    Hi folks

    I want to convert TCHAR[][] to char* and TCHAR[][][] to char*. help me.
  7. display 32 bit image in the document view?

    hi folks

    i want to display 32 bit image in the document view architecture. is it possible? if yes help me.

    Thanks and Regards
  8. Re: How can i get alpha channel from bmp image?

    No. my requirement is similar to montage; overlap the image with trnaparent after that i can veiw the 3d image and drawing the circle and rectangle. using GDI+ is ok. but that code worked in...
  9. Re: How can i get alpha channel from bmp image?

    hi i am guna. i want to display the 2 images with transparensy. i can see the bottom layer image trough top layer image.similar to transparent image. plz reply as soon as possible.
  10. Re: How can i get alpha channel from bmp image?

    i want to display the alpha channel image in the document view architecture can u give the sample code for geting handle of HDC hdcDest, it will work only View OnDraw() not hte other function....
  11. Replies
    4
    Views
    1,036

    Re: a problem with BMP

    is it sure ? ur bmp image size is 200mb?
  12. Replies
    7
    Views
    4,528

    Re: How to convert cpp to c?

    what?i can't understand :cry: :wave: :wave:
  13. Replies
    2
    Views
    794

    Re: Hook the keyboard

    use this links

    http://www.codeguru.com/Cpp/W-P/system/keyboard/article.php/c5699/

    http://www.codeproject.com/tools/usagefinder.asp
  14. Replies
    7
    Views
    4,528

    Re: How to convert cpp to c?

    use this code



    // function decleration
    bool Init();
    bool AttachToSocket(int sSocket);
    int GetSocket();
    bool Accept();
    bool Connect();
  15. Replies
    7
    Views
    1,343

    Re: ERROR WINDOWS.H already included??

    use this link

    http://www.codeguru.com/forum/showthread.php?t=380133&highlight=windows.h
  16. Replies
    13
    Views
    2,779

    Re: DLL file error

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/vcrefcompilererrorc2332.asp
  17. Replies
    3
    Views
    1,576

    Re: CFrameWnd and CView

    that means u want to accessthe variablein bothside. is it correct?
  18. Replies
    1
    Views
    558

    Re: C sorting problem

    sort_asc(f_names[a], l_names[a], MAXNUM);

    the above code f_names[a] is null nothing is there. debug the program. check ur for loop in ur main function.
  19. Replies
    4
    Views
    1,707

    Re: Error & Warning

    use this code after ur include header files.


    #ifdef _DEBUG
    #undef THIS_FILE
    static char BASED_CODE THIS_FILE[] = __FILE__;
    #endif
  20. Replies
    26
    Views
    4,372

    Re: Back up of modified files

    what exactly u want ? can u explain?
  21. Re: Reading data from a tab delimited text

    change ur for loop like this


    for(int i=0;i<=5;i++)
    {
    }
  22. Re: Refreshing the static control from Timer

    use this code. it may be work

    MSG msg = {NULL};
  23. Re: open a folder and select the specified file ?

    i can't underswtand ur problem can u explain?
  24. Re: open a folder and select the specified file ?

    using CFileDialog or not?
  25. Re: Replace Title/Caption bar min,max,close buttons

    use this code to disable the close button and remove the close menu in the dialog box(click on the left top of the dialog box).



    BOOL bEnable = TRUE;
    UINT menuf = bEnable ? (MF_BYCOMMAND)...
Results 1 to 25 of 366
Page 1 of 15 1 2 3 4





Click Here to Expand Forum to Full Width

Featured