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

Search:

Type: Posts; User: ldor108

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,872

    Re: Printing in Windows

    I've done it now, they all return TRUE.
    It looks like all these function do exactly what is expected - the correct printer gets selected and it does print a page (an empty one though). So it looks...
  2. Replies
    5
    Views
    1,872

    Re: Printing in Windows

    I guess so, all printers have much higher resolution so I would expect this line to be very short and within the printed area.
    I also tried copying the whole window into a virtual bitmap and then...
  3. Replies
    5
    Views
    1,872

    Printing in Windows

    Hi
    I am trying to learn how to print the content of a window. By now I've ended up with the following code (it should just draw a line as a test print). When executing it, the printer starts working...
  4. Replies
    0
    Views
    1,257

    [RESOLVED] Need help with PrintWindow()

    Hi
    I am trying to print the window's content using PrintWindow() function. The code I use is below. In this code I could not call PrintWindow directly but had to load it dynamically from the dll...
  5. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    Thank you guys, this discussion has been really helpful. I don't do programing so much so learning a new platform is not something I would prefer now. And, as (ProcAdd) (hwnd,pd.hDC,PW_CLIENTONLY);...
  6. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    It returns TRUE.
    Well, probably 2kaud is right and the only solution is to switch to Visual Studio, although for the sake of using just one function it would probably be too much trouble.
  7. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    By the way, I've checked with the debugger, the line (ProcAdd) (hwnd,pd.hDC,PW_CLIENTONLY); is executed (my first thought was that maybe the program never reaches there but it does). So the problem...
  8. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    Sorry, I forgot to show the definition. And you are right, I did not understand it correctly. Now I've changed the definition as follows:

    typedef int (__cdecl *MYPROC)(HWND,HDC,UINT);
    Now there...
  9. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    I've found another example and here is the code that I made using it. The only thing that is unclear to me in this example is how to pass arguments to the function whose address is extracted from the...
  10. Replies
    13
    Views
    4,723

    Re: Where can I get User32.lib file?

    Thank you. This sounds great but it is something I don't know.
    I found some information here: https://docs.microsoft.com/en-us/cpp/build/getprocaddress?view=msvc-160 . I tried to implement it but...
  11. Replies
    13
    Views
    4,723

    [RESOLVED] Where can I get User32.lib file?

    Hi,
    I am trying to use PrintWindow function in very old Borland C of 1997 (that is the only development environment I have and know). I've downloaded User32.dll file that contains that function but...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured