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

Search:

Type: Posts; User: MrBeans

Page 1 of 42 1 2 3 4

Search: Search took 0.21 seconds.

  1. Replies
    1
    Views
    1,166

    Re: MultiLine Tab Control and XP theme drawing

    Ok, for those interested I found a solution or rather a Workaround.

    You will need to use UpdateWindow API on the child window in Paint handler of the parent window (may be Tab control in this case)
  2. Replies
    1
    Views
    1,166

    MultiLine Tab Control and XP theme drawing

    Hello All,
    I seem to be facing a weird problem with tab control and XP themes. Please find test sample.

    Some strange points to be noted:
    1) Problem only occurs with 'Multiline' option set on XP...
  3. Replies
    1
    Views
    767

    Generating User defined Errors in C# !

    Hello All,

    I am currently designing a module in C#, and several programmers may work on the same module. To maintain strict coding restrictions I would like to generate an Error if a programmer...
  4. Replies
    2
    Views
    761

    Re: Windows Messaging in Common Controls

    Thanks again Igor, I see how now ;)
  5. Replies
    2
    Views
    761

    Windows Messaging in Common Controls

    Hello Everybody,
    These days I have been trying to look deep into Windows while I debug an application. I see that especially in Common Controls messaging (SendMessage / PostMessage) is used to...
  6. Re: Hardest question: how to get the image of the icon-view on the Destop?

    What do you mean by Progman window or the SysListView32 window?
  7. Replies
    1
    Views
    832

    Re: Get section base and end address

    Try Debug Help Library
  8. Re: Iconify minimized child window in an MDI app

    Unfortunately WM_NCPAINT message handling is only way you got for this requirement.
  9. Re: The pen is too thick in memory DC! How can I get single pixel pen?

    I do not understand your requirement, however I believe the problem lies in SetWindowExt API as you rightly pointed. Note that Viewport is the area of the DC which the user should see, however in...
  10. Replies
    1
    Views
    1,093

    Re: Rotor Design Documentation Please!

    Ok I think I got my answer elsewhere, thanks anyway. Interested can refer to this book Shared Source CLI Essentials
  11. Replies
    1
    Views
    1,093

    Rotor Design Documentation Please!

    Hello All,
    I would like learn how exactly .NET framework runs on Win32. I thought I got a break with SSCLI 2.0 (Rotor), but the documentation on how exactly the various components of CLR i.e. VM,...
  12. At last .NET framework source will be out!

    My God I am amazed to know that .NET framework source will be out with Orcas (Microsoft Visual Studio 2008) supporting .NET framework 3.5. Now I think I will have real fun programming in .NET just as...
  13. Application of .NET 2.0 in latest Software!

    Hello All,
    I see that many of the latest software and drivers! seem to have .NET 2.0 framework to be a pre-requisite for installation. My guess is that .NET framework is used for the front end UI...
  14. Replies
    13
    Views
    2,158

    Re: Isn't this Bad Coupling?

    Thanks a lot Igor for dropping in :D
    And thanks for clarifying things :wave:

    Actually I was more bothered about the dependence of User32.dll on Gdi32.dll.
    Somehow I thought that User32.dll...
  15. Setting up compiler so as to generate error!

    Hello Everyone,
    How can I force compiler say Microsoft® C/C++ Compiler supported with Visual Studio 2003 to generate an Error or Warning if the programmer tried to use MessageBox or AfxMessageBox...
  16. Replies
    13
    Views
    2,158

    Re: Isn't this Bad Coupling?

    So what do you think the solution to this particular problem would be? How do you think User32.dll and Gdi32.dll could be seperated so as to have lowest possible coupling? What could be a better...
  17. Replies
    13
    Views
    2,158

    Isn't this Bad Coupling?

    Hello Everyone,
    I got a question regarding Software design of Windows and thought we could discuss on this.

    User32.dll closely depends on Gdi32.dll and vice-versa, Isn't this an example of Bad...
  18. Replies
    9
    Views
    1,578

    Re: Win32 Service doesn't work arghhh

    Sorry I lost the link, however attached is a good sample.
  19. Replies
    7
    Views
    1,372

    Re: Learning .NET Win32 way

    Not important here anyway ;).
    That is Good news :)Great suggestion there Ovidiu, but unfortunately that would mean 4 years of my experience in Win32 programming going straight down the gutter. Also...
  20. Replies
    7
    Views
    1,372

    Learning .NET Win32 way

    Hello,
    I come from MFC/Win32 background and would like to learn .NET the Win32 way. I have not been to go any step closer to this objective. I have done some analysis.

    I believe that .NET is a...
  21. Replies
    4
    Views
    1,481

    Re: Get pixel value (onclick)

    You will need to Add message Handler for WM_LBUTTONDOWN or Handle WM_LBUTTONDOWN message. you could use GetCursorPos API to get the coordinates of the mouse cursor and use GetPixel as Skizmo...
  22. Replies
    4
    Views
    1,481

    Re: Get pixel value (onclick)

    Your question is not clear, explain clearly.
  23. Replies
    6
    Views
    1,160

    Re: Hands On Exercises

    :D Don't tell me a thief robbed your CD ;)
  24. Re: [RESOLVED] Memory problem passing BYTE array to thread

    You could WFSO (WaitForSingleObject) on the thread, check return code using GetExitCodeThread for success if so delete the memory in the main thread.
  25. Replies
    3
    Views
    968

    Re: Serial buffer flushing

    Serial Communications have been discussed several times in this forum. Use the Search option to search for related articles.
Results 1 to 25 of 1044
Page 1 of 42 1 2 3 4





Click Here to Expand Forum to Full Width

Featured