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

Search:

Type: Posts; User: sachin871

Page 1 of 12 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    2,922

    Re: Adding read/write privileges to process

    Hey guys..

    I need a help.. plz..
  2. Replies
    1
    Views
    2,922

    Adding read/write privileges to process

    Hi,

    I am working on an application which is a Windows Service.
    There is another process which needs to be called from user context by my service. This I have achieved using Imporsonating logged...
  3. Replies
    1
    Views
    657

    Getting control id in vista for hooking

    Hello,

    I need to hook a dialog in Windows Vista. I am doing it successfully in Windows XP by getting handle and a control id of particular control. I am using SendDlgItemMessage API for the same....
  4. Replies
    9
    Views
    1,730

    Re: passing pointers between the process

    Thanks a lot for all ur replies..
    Meanwhile I came across this tutorial on MSDN which is regarding the use of shared memory. I think its pretty easy and I can use that in future as well.

    Here is...
  5. Replies
    9
    Views
    1,730

    Re: passing pointers between the process

    Thanks Arjay and VictorN for reply..

    Hello Mark G, I see that WPARAM is defined as UINT_PTR, so its a pointer. Doesnt it means that we are sending pointer and not the integer.

    I am little...
  6. Replies
    9
    Views
    1,730

    Re: passing pointers between the process

    Thanks a lot for the reply..
    I gone through the link regarding WM_COPYDATA, But I dont have the handle for the window. That is why I am broadcasting the custom message. So I am afraid I cant use...
  7. Replies
    9
    Views
    1,730

    passing pointers between the process

    Hi,
    I need to pass the character array or char* to the another process through BroadcastSystemMessage() API. If I use WPARAM for this, I get the junk address in the recieving process.I am doing...
  8. Re: Need to convert documents to images (jpeg)

    Thanks for the reply...

    I still have some doubt abt printer drivers. If they are like DLL's then we must be able to use them as dll. I mean there should be some way we can call the same API's...
  9. Re: can some one help me to make check box control transparent

    Hello..

    May be you can try setting the brush type to "NULL_BRUSH". Well I am not so sure about this one.

    To include version 6 common controls in your project , try adding these lines to to...
  10. Re: can some one help me to make check box control transparent

    Hi saratk,

    As there is no such control available, you need to create one yourself. If you have gone through the links provided by HanneSThEGreaT, you would have noticed one such custom control by...
  11. Need to convert documents to images (jpeg)

    Hello,

    I am working on this task to convert some mostly used document formats like doc, xls, txt, pdf to the jpeg images. The idea here is to save the first page/part of the document as an image...
  12. Replies
    7
    Views
    17,342

    Re: unresolved external symbol __argc

    Hi shankaran,

    I guess there is a problem with linking order of MFC and CRT libraries. As saud in earlier post You can try linking MFC libraries explicitly before CRT libraries.

    I guess you are...
  13. Replies
    4
    Views
    1,412

    Re: Message Handler and Command Handler

    Hi kirants...

    These are some lines of code


    MESSAGE_HANDLER(WM_STATICTABCLICKED, OnStatictabclicked)
    COMMAND_HANDLER(IDC_CHECK_ENABLE_DIST, BN_CLICKED, OnCheckEnableAppDistribution);

    I...
  14. Replies
    4
    Views
    1,412

    Message Handler and Command Handler

    Hi,

    Can anyone explain me the difference between Message Handler and Command Handler.

    If function provided in Message Handler is invoked on Send/PostMessage then how the same is invoked in case...
  15. Thread: build issue

    by sachin871
    Replies
    1
    Views
    612

    build issue

    Hi,

    I recently downloaded the sample for MFCIE sample from MSDN. IT uses CHTMLView classes to implment the functionality of IE.

    When I tried buliding this sample, somehow my build gets skipped....
  16. Replies
    8
    Views
    1,736

    Re: problem in DLL and calling conventions[Resolved]

    Thats gr8..

    Thanks a lot for solving my problem..

    Yes I was exporting the class member and thats what is wrong. I need to declare static functions or export the whole class.

    Thanks again...
  17. Replies
    8
    Views
    1,736

    Re: problem in DLL and calling conventions

    Guru's...

    Please help me solve my problem.
  18. Replies
    8
    Views
    1,736

    Re: problem in DLL and calling conventions

    Hi paul...

    thanks for the reply...

    I am loading the library dynamically using LoadLibrary(). Also I am using .def file, so i guess I dont need to use dllexport and dllimport explicitly....
  19. Replies
    8
    Views
    1,736

    Re: problem in DLL and calling conventions

    Hi Paul...

    As you said, I changed the impementation for the dll functions to use char* instead of std::string. But I am still getting the same error...

    I am not using any macro for calling...
  20. Replies
    8
    Views
    1,736

    Re: problem in DLL and calling conventions

    Hi paul...

    Thanks a lot for the reply..

    I was unknown to the fact of using std::string in a DLL and now I must used char* for this DLL. Thanks u alomost saved me..

    I will go ahead and will...
  21. Replies
    8
    Views
    1,736

    problem in DLL and calling conventions

    Hello...

    I have a strange problem with calling conventions. I am building a MFC dll in VS 2005. I exported following function with the help of .def file.


    bool GenerateSerialNumber(string...
  22. Replies
    1
    Views
    646

    integrating C++ and JAVA

    Hello all,

    We are currently working on a client-server based application. The client is implemented in C++. However Server is implemented in JAVA.

    We need some common repository for both the...
  23. Replies
    6
    Views
    2,038

    Re: getting Folder Options-> View settings

    Ok!

    I aggree with u both...
    Didnt go throught the documentation properly..
    It reads



    :(
  24. Replies
    6
    Views
    2,038

    Re: getting Folder Options-> View settings

    Hi Victor,

    This is what I found in windef.h header file


    #ifndef FALSE
    #define FALSE 0
    #endif

    #ifndef TRUE
  25. Replies
    6
    Views
    2,038

    Re: getting Folder Options-> View settings

    Thanks a lot
    That was working for me...

    One little issue. here is how I called the API


    LPSHELLFLAGSTATE lpsfs = new SHELLFLAGSTATE();
    SHGetSettings(lpsfs,SSF_SHOWEXTENSIONS);...
Results 1 to 25 of 293
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured