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

Search:

Type: Posts; User: sixstorm1

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    5,390

    Re: HMENU Hotkeys & Icons

    Thanks olivthill2, that worked like a charm!

    Now if someone could help me with problem #2...
  2. Replies
    2
    Views
    5,390

    HMENU Hotkeys & Icons

    Hi all,

    I have two problems, the first being the most important:

    1.
    I have a Win32 (Non-MFC) app with a window and a win32 menu on it (HMENU), and I've been searching all day for a way to...
  3. Replies
    0
    Views
    3,746

    Delayload & lnk2019

    Hi all,

    I am trying to use some APIs found in dwmapi.dll (like DwmExtendFrameIntoClientArea), but I have some problems. If I include dwmapi.lib in the dll include list, the the app works fine on...
  4. Replies
    4
    Views
    8,577

    Re: RichEdit printing problem!

    Problem solved!

    Putting...


    SendMessage(Handle, EM_SETTARGETDEVICE, NULL, NULL);
    SendMessage(Handle, EM_SETSEL, 0, 0);

    ...restores the richedit text as before printing.
  5. Replies
    4
    Views
    8,577

    Re: RichEdit printing problem!

    OK thanks for your reply,
    but unfortunately I have no time to implement MFC into my project. I am looking for a native Win32 solution. I know it's not very well documented, there's almost nothing on...
  6. Replies
    4
    Views
    8,577

    RichEdit printing problem!

    Hi, I am trying to print content from a Win32 richedit control, but it doesn't work. The text wraps to the half width of the page, and after printing, the text in the richedit is also messed up...
  7. Replies
    4
    Views
    6,884

    Re: Modal dialogs

    Problem solved!!! The problem was within the procedure. Replaced "return DefWindowProc(hWnd, message, wParam, lParam)" by "return false" and now everything works. return DefWindowProc is for windows...
  8. Replies
    4
    Views
    6,884

    Re: Modal dialogs

    @sunny_sz:

    Thanks for your reply, but the link you gave is for .NET. I am programming in native Win32.

    The problem does not lie within the save file dialog, but rather within the dialog...
  9. Replies
    4
    Views
    6,884

    [RESOLVED] Modal dialogs

    Hi everyone,

    I have a modal dialog box which is called by the main thread. This dialog has no parent (appears at center screen, overlapped, and shown in taskbar). When the user clicks "Save" in...
  10. Replies
    1
    Views
    957

    Win32 Messages

    Hi everyone,

    How can i receive messages from windows in my windowless application? My app is a single process that runs in the backgorund and has no window. I need to receive a...
  11. Replies
    2
    Views
    1,511

    Re: Read file like Notepad

    problem solved: there were actually nulls in the file. I just replaced them with the following code: .Replace(Convert.ToChar(0), " ")
  12. Replies
    2
    Views
    1,511

    [RESOLVED] Read file like Notepad

    Hi all,

    I need to read the following file in vb .net: "C:\Windows\SoftwareDistribution\DataStore\DataStore.edb". It contains info about installed software updates. I've taken a look at the file by...
  13. Thread: WMI Help!!!

    by sixstorm1
    Replies
    1
    Views
    4,340

    WMI Help!!!

    Hey all, when I try to set the following WMI property, I get the followng error: "Value out of range". I can successfully access the value but can't set it. I am trying to change the computer...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured