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

Search:

Type: Posts; User: Christian Hofner

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    796

    ListView change Scrollbar size ?

    is it possible to change size of v-scrollbar ?

    i need this for a touch-screen-application.
  2. Replies
    4
    Views
    1,147

    maybe this SerialPortMonitor can help you ...

    maybe this SerialPortMonitor can help you

    http://www.sysinternals.com/ntw2k/freeware/portmon.shtml
  3. Replies
    4
    Views
    806

    could you explain to me in details why 200.9...

    could you explain to me in details why 200.9 can't be represented exactly on a double
  4. Replies
    4
    Views
    806

    question: double C++

    why is: dA(=200.9) - sSub(=100.3) != dB(=100.6)

    double dA=200.9, dSub=100.3;
    double dB=100.6;

    if( dA-dSub == dB)
    int x=1;
    else
    ...
  5. Replies
    13
    Views
    7,613

    wndclass.style = CS_HREDRAW | CS_VREDRAW...

    wndclass.style = CS_HREDRAW | CS_VREDRAW ;//| CS_NOCLOSE
    wndclass.lpfnWndProc = WndProc;
    wndclass.cbClsExtra = 0 ;
    wndclass.cbWndExtra = 0 ;
    wndclass.hInstance...
  6. Replies
    1
    Views
    3,185

    Web Browser Control Transparent

    I'm using the web browser control and VB6.0.
    How can i show an animated gif in transparent mode and without
    scroll bars?
  7. Replies
    3
    Views
    706

    Re: Set a program to foreground

    Thanks, it works fine. Instead of SetWindowPos i used SetForegroundWindow(hwnd).
  8. Replies
    3
    Views
    706

    Set a program to foreground

    I've a dos box which is often at background. How can i bring this dos-box to foreground? Api-function? Also a program which can do this will help me.
  9. Killing a program with Task-Manager (NT4.0)

    How can a program react when it will be killed by the task-manager?
    The program runs as a background task.
  10. Replies
    1
    Views
    1,279

    .Net & ActiveX

    Is it possible to use ActiveX in .Net programs?
  11. Win Nt4.0 and Dos-Box/Full Screen

    I'm using Win Nt4.0. I'm starting a programm which uses a Dos-Box, then the program switch to Full-Screen automatically. (The property is set to Window.)
    How can i prevent that the dos-programm...
  12. Replies
    2
    Views
    647

    Program Arguments

    I want start my program: test.exe c:\test.dat
    How can i receive c:\test.dat inside my program?
  13. Replies
    2
    Views
    697

    File List in Directory

    How can i get a filelist from a directory. (like dosfindfirst and dosfindnext in Dos) Win32. WNT4.0.
  14. Replies
    3
    Views
    739

    Ctrl+Alt+Del

    How can i disable the Ctrl+Alt+Del (Task-Manager) Key in Windows NT 4.0 ?
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured