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

Search:

Type: Posts; User: Mike Lajeunesse

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    2,024

    Write into AVI, Mov, Mpeg file

    Hi everybody!

    Does someone can tell me the functions, object, to read, write image and sound into popular movies files? I need to write a programe to edit that kink of files.

    I was previously...
  2. Replies
    2
    Views
    901

    A Sample chat program

    Hi!

    I build a sample UPD chat using Winsock and it run really fine on my local network.

    But there is a BIG thing that I dont understand. How program (MSN, ICQ, mIrc) can connect and send data...
  3. Replies
    0
    Views
    438

    Dangers of Direct Draw

    Hi,

    I recently used DirectX for a program that I am working on and after 9 fatal blue screen (Reboot), my AGP slot have burn. The motherboard work but the AGP slot is no longer working. (I test...
  4. Replies
    1
    Views
    511

    developping Firewall

    Hi,

    I search for information about Developping a Firewall. Does someone know a web site were I can find lot of information?

    I really dont know where to start? Can I do a firewall with...
  5. Replies
    6
    Views
    869

    Re: inline asm

    I want to write 80586 inline asm with Visual C++.

    Is the inline asm of Visual C++ is similar to MASM?
  6. Replies
    6
    Views
    869

    Re: inline asm

    Hi!

    I want to write faster algo with inline asm for Intel 8088 CPU.

    I did lot of optimisations in my C code but now, it time to try with asm...

    Mike.
  7. Replies
    6
    Views
    869

    inline asm

    Hi!

    Does someone know where I can find some good information and some examples of writing inline assembly with Visual C++? I've took a look in the online information (microsoft web site) and...
  8. Replies
    3
    Views
    4,708

    Re: Drawing images in MFC

    You are drawing bitmaped image with Setpixel? That must be very slow! the best, its to create an empty bitmap. Make byte operation to draw in your own HBITMAP and then, draw the bitmap with...
  9. Replies
    1
    Views
    660

    Direct Draw access

    Hi!

    Is there a faster way to access pixel memory in a Direct Draw surface? Presentely, Y use that:

    DDSURFACEDESC srf;
    unsigned char *ptr;
    int x,y;

    srf.dwSize = sizeof(DDSURFACEDESC);...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured