Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bluejacket

    Serial Comm. Driver

    Does anyone know where to get a free serial communication driver code written in Visual C++ out there?
  2. bluejacket

    Need confirmation on CFile::Write()

    What you guessed is correct. sizeof(SomeCharPointer)is the size of SomeCharPointer pointer (4 bytes) because you defined it as a pointer.
  3. bluejacket

    Class Wizard

    When using Class Wizard, I realized that some of the classes are not accessible. Then I deleted the *.clw file and rebuilt the *.clw. This time, Class Wizard complained that it couldn't find the header & source files of some of the classes although I could see the requested files were included...
  4. bluejacket

    sscanf in MFC

    Does anyone know any function in MFC equivalent to the standard C function sscanf ?
  5. bluejacket

    Windows CE

    I am about to jump into the Windows CE development world but do not know where to start. Any suggestion?
  6. bluejacket

    Change colors

    Does anyone know how to change the colors of the Visual C++ editor screen?
  7. bluejacket

    TRACE macro

    Does anyone know how to setup VisualC++ in order to see the display of the TRACE macros for debugging?
  8. bluejacket

    Visual C++ textbook

    Does anyone know any Visual C++ book that has exercises at the end of each chapter?
  9. bluejacket

    Passing references between Dialogs

    Try to use Windows messages for passing references between dialogs. BlueJacket
  10. bluejacket

    How to see DLL files using Window explorer

    Hi, Can anyone tell me how to set up Window explorer for viewing DLL files? Thanks. Blue jacket
  11. bluejacket

    Network Adapter Address

    The MAC address should be physically printed somewhere in the Ethernet card. Hope this will be helpful.
  12. bluejacket

    Pointers

    Your defined the type of parameter y in function void Trial to be a pointer to an integer while passing an integer value instead of its pointer when calling the function in the line:<br><br>Trial(x);<br><br>To fix the problem, pass the address of x as follow:<br><br>Trial(&x);<br><br>and the...
  13. bluejacket

    Weird Pointer problems

    What was the type of FCurrent and NewFile? I may help you here but need to know a litte bit further about the type you defined for both variables mentioned.<br><br>Blue Jacket
  14. bluejacket

    Compile and Linker Problem

    Why don't you try to use the Link list utility that has already been available in Visual C++ or STL (Standard Template Library) instead?<br>
  15. bluejacket

    Serial port driver

    Does anyone know some Visual C++ books that talk about the description of the serial port driver in Visual C++ and how to use it? Please let me know. Thank you.<br>
  16. bluejacket

    Sending Click events from one prog to another

    Use USER DEFINED MESSAGE. Define a message ID in the child program. In parent program use &quot;Send&quot; or &quot;Post&quot; message to the child program using the defined message ID. In the child program, map the desired function with the defined message ID in the MESSAGE MAP.<br> <br> Hope...
  17. bluejacket

    STL problems....

    You need to specify the type of vector (i.e. vector&lt;int&gt;, vector&lt;char&gt; ...). As you mentioned p_cards has type of RCard so what you need to do is define p_cards as:<br> <br> vector&lt;RCard&gt; p_cards;
  18. bluejacket

    CGI problem

    I had a problem of building CGI using Visual C++. The book said that in order to get the input stream from the browser the following code can be used: (METHOD = POST):<br> <br> // Get the size of the input stream<br> char* contentSize = getenv(&quot;CONTENT_LENGTH&quot;);<br> if...
  19. bluejacket

    STL for Visual C++

    Thanks! what your described is what I am looking for. My following questions are:<br> 1. Can I use the mentioned STL (which is in the Standard C++ Library) and MFC together in a Visual C++ program?<br> 2. Have MFC already had somethings look like STL?<br> <br> Please let me know. Thank you.<br>
  20. bluejacket

    STL for Visual C++

    As far as I know, Visual C++ does not support STL (standard template library) (please correct me if I am wrong). However, I want to have STL available in Visual C++. Please let me know what I should do.<br> <br> Thank you.<br> <br>

Part and Inventory Search

Back
Top