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

Search:

Type: Posts; User: mjvalan

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Access managed C++ public enum class from C# by Dynamically loading

    I have an managed C++ dll lib. It has claas info like below

    namespace tests
    {

    public enum class clours
    {
    Start = 0;
    Red = 1;
    Green = 2;
  2. Replies
    8
    Views
    1,303

    Re: Key Press or Mouse Click/Movement

    Hi,
    use SendMessage or PostMessage API.

    Regards
    MJV
  3. Thread: Thread Pooling

    by mjvalan
    Replies
    5
    Views
    1,092

    Re: Thread Pooling

    Hi,

    thanks for the inforamtion. can somebody post some small sample code???
  4. Thread: Thread Pooling

    by mjvalan
    Replies
    5
    Views
    1,092

    Thread Pooling

    Hi,

    I want to implement thread pooling for my multi threaded MFC application.

    At present, my application creates one thread for each request. It slow downs the system. So I want queue the...
  5. Re: how to open a file (example .txt) using VC++??

    You can use CFile for read and write also. Check for the write functions available with CFile Class.
  6. Re: Why my application is so LAZY? Please help me out!!!!

    You may ve seen log files in your system, which has information about execution of some applications in your machine.

    In your program write some extra lines to create a file and write some...
  7. Replies
    3
    Views
    721

    Re: How to make library files

    Hi,
    I am assuming that, you are writing your program using vc++.

    Open Visual C++

    Select File->new->Project

    Select Win32 static library under project tab.

    You will be provided with a cpp...
  8. Re: Why my application is so LAZY? Please help me out!!!!

    Hi,

    my suggestion is, try to implement logging for your application with time.

    From that you can find out where it is taking long time.


    Regards
    MJValan
  9. Thread: IE Toolbar?

    by mjvalan
    Replies
    1
    Views
    566

    Re: IE Toolbar?

    This is called Windows Shell programming. And its no way related to Unix shell programming.

    Basically in windows, the Windows Explorer is called as Windows Shell.

    This explorer Bar is common...
  10. Replies
    11
    Views
    1,436

    Re: how to pause the display in console?

    Use printf() to display the msg and scanf() to get the option from the user.

    Regards
    MJV
  11. Thread: File Transfer

    by mjvalan
    Replies
    11
    Views
    1,311

    Re: File Transfer

    Consider your file as some long message. Read the file and send as a string to the other system, but you ve to retrieve the file name, propeties... and send them also.

    In the other (receiver)...
  12. Replies
    1
    Views
    598

    Extract text from OFFICE documents

    HI,
    I want to extract text content of MS-Office documents(PPT,XLS,DOC....) programatically.

    Thanks
    MJValan
  13. Replies
    6
    Views
    1,430

    Re: Determine text file or Binary file

    Thank you for your replies.

    Regards
    MJVALAN
  14. Replies
    6
    Views
    1,430

    Determine text file or Binary file

    I want to determine, a file is text file or binary file(file name dosen't have file extension).Is there any API in Windows SDK?

    Thanks
    MJVALAN
  15. Replies
    4
    Views
    655

    Hey I think you want to develop a IE toolbar....

    Hey
    I think you want to develop a IE toolbar. For this you plz refer codeproject.com
    chk this
    http://www.codeproject.com/wtl/toolband.asp?target=explorer%7Ctool%7Cbar
  16. You can do the same for your dialogbased...

    You can do the same for your dialogbased application .
    Use the following

    void CYourApp::RegisterShellFileTypes(BOOL bCompat)
    {
    CWinApp::EnableShellOpen();...
  17. Thread: Urgent!!!!!

    by mjvalan
    Replies
    2
    Views
    512

    Hi, Use priority Q!

    Hi,
    Use priority Q!
  18. Replies
    3
    Views
    610

    Hi Check these APIs InternetOpen...

    Hi Check these APIs

    InternetOpen
    InternetConnect
    HttpOpenRequest

    and also refer this book(I ve referred this book for my work)

    Peter Norton, Rob McGregor- Guide to Windows 95, NT4...
  19. Replies
    4
    Views
    1,213

    write a Drag N Drop handler

    Try to write a Drag & Drop handler. Its a Shell extension. You can drag a file from windows explorer and drop it in your application.
    Search for windows shell extensions.
  20. Replies
    5
    Views
    759

    Use Client/server program

    Hi,

    Try to develop a client program in MFC and also a server program.
    Run your server always in your system. And put your client program in client system startup. So that your client program...
  21. Sample code plz

    Hai,
    I am implementing IShellIConOverlayIdentifier . If you ve your sample code for this plz send it to me.
    Regards
    Mjvalan
  22. Thread: COmbine icons

    by mjvalan
    Replies
    0
    Views
    499

    COmbine icons

    Hai,
    I ve two icon handles. I want to combine these two icons. So that one ll be overlay icon. Already some solutions are here in codeguru, but not working properly. So plz send some sample codes.
  23. Replies
    0
    Views
    1,882

    Implementing IShellIconOverlayIdentifier

    Hai,
    i am implementing IShellIconOverlayIdentifier. When i compile it , i am getting the error message --IShellIconOverlayIdentifier' : no GUID has been associated with this object.
    ...
  24. Replies
    1
    Views
    565

    Copy file access rights

    I want to copy the file access rights from one file to another file, under Windows NT.
  25. Replies
    0
    Views
    610

    merge two icons

    I am having two Icon handles( HICON).
    I want to merge these two and to get one single icon handle.
Results 1 to 25 of 53
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured