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

Search:

Type: Posts; User: oscar22

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    865

    Re: generating a sine wave

    void CSine_wave1View::OnPaint()
    {
    CPaintDC dc(this);
    CRect Recto;
    GetClientRect(&Recto);
    CBrush bgBrush(BLACK_BRUSH);
    dc.SelectObject(bgBrush);
    dc.Rectangle(Recto);

    CPen...
  2. Replies
    5
    Views
    865

    [RESOLVED] generating a sine wave

    Hay guys,
    I'm trying to generate a sine wave. I have some code but I don't know what i'm missing from it.
    Any help or comments would be great.
    [code]
    void CSine_wave1View::OnPaint()
    {
    CPaintDC...
  3. Replies
    1
    Views
    531

    Serial Port Communication

    Hi guy,
    I'm doing a serial port communication program and I've to add a project to the file. It's called Microsoft Communications Control, version 6.0 in Registered ActiveX Controls. I don't have it...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured