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

Search:

Type: Posts; User: benchaz

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    19,333

    Re: Embed .exe in a c++ project

    Sorry, but I'm a noob.
    I downloaded the non-demo file, and realized
    #include "testHarness.h" was in the binres.cpp source file. testHarness was the demo project. The header file was not included...
  2. Replies
    7
    Views
    17,517

    Re: C++/GCC Embedding binary data in executable

    I believe I found a bug in that line of complex o.0 commands.
    it should be

    od -txC -v myfile.bin with the -v, or else it will display an asterisk if the line above repeats. It's supposed to make...
  3. Replies
    8
    Views
    19,333

    Re: Embed .exe in a c++ project

    Thanks Alex!

    I downloaded the demo and tried to build it but i didn't. I needed afxwin.h, which is MFC, which i dont have. Im using vc++ express and can't afford the professional.
    Is there a way...
  4. Replies
    8
    Views
    19,333

    Embed .exe in a c++ project

    Hey,
    Is it possible to embed an extenal executable in a project?
    For example, if i want to run wget.exe, i would normally included the wget executable in the same directory as the main program, and...
  5. Replies
    5
    Views
    2,315

    Re: Sending Bytes to Serial Communication

    If byte is signed

    what if i want to change an integer value '163' into a byte '0b10100011'?
    but if the byte is signed, '0b10100011' will be -93, correct?

    so that means if

    byte a = 163;...
  6. Replies
    5
    Views
    2,315

    Re: Sending Bytes to Serial Communication

    Sorry if i was unclear

    I want a way to combine 0b0000000y and 0b00000xxx into 0b0000yxxx to save bandwidth for serial communication.
    I just dont know how. There is no error (yet!)
  7. Replies
    5
    Views
    2,315

    Sending Bytes to Serial Communication

    Hey guys, I'm pretty noob at java, and i have a problem.

    I want to be able to send a byte via serial communication to my microcontroller, arduino. I need to send one 3 bit number and one 1bit...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured