Search:

Type: Posts; User: blundstrom

Search: Search took 0.01 seconds.

  1. Do you mean the AfxBeginThread type of worker...

    Do you mean the
    AfxBeginThread type of worker thread? or do you mean the _beginthread type of thread????

    All Thread Function for the AfxBeginThread must be decalared like this:


    UINT...
  2. Replies
    2
    Views
    4,287

    you need the IP of the other computer that the...

    you need the IP of the other computer that the MySQL server is running on, the correct port number, too.

    And the computer has to be accesible from your location.

    Just like anything else on the...
  3. Replies
    8
    Views
    1,373

    You could also define a struct in the .h that...

    You could also define a struct in the .h that takes all those parameters and the constructor can just take one of those. Also, thing that uses it must include the .h file and therefore the struct:
    ...
  4. Like *ClownPimp* sez, you should probably use...

    Like *ClownPimp* sez, you should probably use polymorphism by Deriving the two classes from the same Base class.

    Because of this a pointer to the base class can then refer to either object and...
  5. Replies
    4
    Views
    1,105

    It sounds like you will have to read a file of...

    It sounds like you will have to read a file of integers like:
    23
    34
    12
    1
    and covert them strings to int and put them in a sorted array.

    I doubt that your prof wants you to learn how to call...
  6. Replies
    0
    Views
    1,985

    ListView Version 6.0 and ImageLists

    First of all, in my searches on the subject I have found a great deal of confusion about ListView and ListCtrl and so on. So allow me to first clarify my situation:

    I am using Visual C++ 6.0 (SP5)...
  7. Replies
    1
    Views
    2,273

    Figured out my mistake!!!

    Nevermind,

    I knew it was a simple solution:



    void CHlfavsDlg::OnItemClickListviewFavs(LPDISPATCH Item)
    {
    VARIANT tag_data;
    CListItem list_item;
  8. Replies
    1
    Views
    2,273

    ListView 6.0 OnListItemClick Problem

    I have added the MS Common Controls ActiveX controls Version 6.0. I am using the MS ListView Control Version 6.0. VC++ 6.0 has added all the neccesary non-editable classes for the control and its...
  9. Replies
    4
    Views
    1,231

    You can use the ATL instead, which apparently is...

    You can use the ATL instead, which apparently is not MFC.

    MFC ActiveX Controls are just easier and you need to make sure your user has your the MFC dlls or you have to staticly link them making...
  10. Replies
    5
    Views
    1,096

    Mostly C and ASM: MFC is a C++ wrapper for the...

    Mostly C and ASM:

    MFC is a C++ wrapper for the C WIN32 Core.
  11. Kewl, Thanks!!! But, what about the fuction with multiple arguments!!!

    Thanks for the solution,

    but what about the if the function has multiple arguments.

    It is impossible?
    :confused:
  12. Struct No Worky!!!

    I tried your suggestion, but struct and struct pointers cannot be converted to (void *), a least the compiler doesn't want to try and if I leave out the (void *) cast it won't link because of the...
  13. _beginthread when function has more than one parameter

    I have been testing multithreading in windows. currently the function for the begin thread takes a single argument.

    I want the addem function to take more that one function but I am unsure of...
Results 1 to 13 of 13