Search:

Type: Posts; User: Erhard Henkes

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    10,911

    C-Programming of ATmega...

    How do you programm ATmega-µC with C or Assembler?
    cf. http://www.henkessoft.de/Roboter/ASURO.htm
  2. Replies
    8
    Views
    80,607

    Sticky: http://www.henkessoft.de/C++/WinAPI/WinAPI%20Kapit...

    http://www.henkessoft.de/C++/WinAPI/WinAPI%20Kapitel%201%20bis%206/api1.htm
  3. No, I don't run this website. It is a...

    No, I don't run this website. It is a live-online-elearning-board with a learnlinc server. You only need the client software and a headset. The current cost is 60 Euro per year (perhaps you can ask...
  4. "Modern C++ and Basics of OO Programming" (e-learning course)

    If anybody is interested in an interactive e-learning C++ course, here is an English one at www.machm-it.de
    "Modern C++ and Basics of OO Programming"...
  5. Sometimes such errors happen by deleting a...

    Sometimes such errors happen by deleting a pointer which should be valid further on.
  6. Replies
    6
    Views
    1,373

    This function works with pointers and changes...

    This function works with pointers and changes array elements outside its scope. In big programs this is not desired. Perhaps you should use classes and references (C++ style).

    Some people need...
  7. Replies
    25
    Views
    2,363

    http://www.henkessoft.de/WinAPI_7_GDI.htm Look...

    http://www.henkessoft.de/WinAPI_7_GDI.htm

    Look at the GDI-programs (script is in German). Perhaps they might help you understanding GDI.
  8. Replies
    5
    Views
    1,085

    WinExec(...) e.g.: ...

    WinExec(...)

    e.g.:

    ::WinExec("calc.exe",SW_NORMAL);
  9. Replies
    5
    Views
    3,587

    Look at this: #include #include...

    Look at this:


    #include <iostream>
    #include <conio.h>
    using namespace std;

    void rekursion( int n )
    {
    if( n>1 )
  10. Replies
    7
    Views
    1,480

    C++: #include void wait() { ...

    C++:


    #include <iostream>

    void wait()
    {
    std::cin.clear();

    // std::cin.ignore( std::cin.rdbuf()->in_avail() );
  11. To my mind noobies with a C++ starter book do not...

    To my mind noobies with a C++ starter book do not need projects. They often use single xxx.cpp. With Dev-C++ this is just a snap. No project, just a new source file and compiling/linking/running. ...
  12. I would recommend using Dev-C++ (...

    I would recommend using Dev-C++ ( www.bloodshed.net ) because its easy. For C++ you don't need .Net. Dev-C++ regards C++ ISO (1998) standard.

    Here is an easy example.

    #include <iostream> ...
  13. Replies
    5
    Views
    3,905

    Perhaps this example helps you to get rid of...

    Perhaps this example helps you to get rid of WM_TIMER:

    // time measurement

    #include <iostream>
    #include <ctime> // clock_t, clock(), ...
    #include <conio.h>
    #include <cmath>
    using namespace...
  14. Replies
    3
    Views
    11,008

    It is really like a handle to the video memory....

    It is really like a handle to the video memory. MS Windows cares for the interface between your programm and your video card.

    example:

    case WM_PAINT:
    hdc = BeginPaint (hwnd, &ps);...
Results 1 to 14 of 14