Search:

Type: Posts; User: PierreB

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    12,406

    Bioscom serial communication

    Hello,

    Do some of you still make programs for DOS ?
    I am now using Borland Turbo C 2.01 on an IBM PC 433DXS with DOS 6.20.
    I'm trying to make a program which read NMEA data coming for a GPS...
  2. Replies
    3
    Views
    1,084

    Hello Salem Thank you for the fast answer. ...

    Hello Salem

    Thank you for the fast answer.

    >"As for the size of the executable, that's really down to the quality of
    the libraries involved. You may only use sin() inside your code, but you...
  3. Replies
    3
    Views
    1,084

    include and program size

    Hello,

    I wish to make my .exe as small as possible.
    When I load an header file with include, for example #include math.h, does the compiler compile and include inside the exe all the functions of...
  4. Replies
    6
    Views
    1,513

    Hello 'prelude' I use LCC-Win32, and you ? ...

    Hello 'prelude'

    I use LCC-Win32, and you ?

    I forgot a question about your comments :
    What is wrong for the main procedure to call itself ? ( if (a$=='y') main(); )

    Thanks again for your...
  5. Replies
    6
    Views
    1,513

    Waow, thanks for the fast answer !!! >void...

    Waow, thanks for the fast answer !!!


    >void main()
    >void main is not correct, use
    >int main ( void )
    >instead.

    I see void main() in a tutorial, and there is no warning about this with the...
  6. Replies
    6
    Views
    1,513

    remaining input from getch()

    Hello C board,

    At the end of my C program, I want to ask to the user if he want to start again, simply by pressing y or n. So I wrote this :


    void main()
    {
    char a$;
    ...
    ...
  7. Replies
    3
    Views
    1,223

    Thanks a lot ! So simple, and it Works ! All...

    Thanks a lot !
    So simple, and it Works !

    All the Best

    Pierre
  8. Replies
    3
    Views
    1,223

    Individual color of a text field

    Hello

    I have some dificulties to change the color of only one text field in my dialog box. I used first :

    case WM_CTLCOLORSTATIC:
    HBRUSH hBrush;
    hBrush = CreateSolidBrush(RGB(0, 0,...
Results 1 to 8 of 8