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

Search:

Type: Posts; User: jp185088

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    670

    Re: Undefined type error

    yes it worked! I also added an include in the C.cpp file


    C.cpp file



    #include "A.h"

    C::C()
  2. Replies
    2
    Views
    670

    Undefined type error

    Hi,

    Im having problem with my code. No matter how i look at it, there seems no error. But when i try to compile, it will show "error: C2027 undefined type".

    Here's my code: hope you guys can...
  3. Replies
    9
    Views
    2,765

    Re: how to extract the milliseconds

    oh. maybe the moderators can help me transfer this thread to the correct forum.

    Thanks!
  4. Replies
    9
    Views
    2,765

    Re: how to extract the milliseconds

    thanks to all your replies. I am coding in linux 64bit. sorry i didnt mention it on my first post.

    I already got the answer to my problem. My reply to D_Drmmr as you can see solved the problem!...
  5. Replies
    9
    Views
    2,765

    Re: how to extract the milliseconds

    oh i see. it was originally in type long long then i converted it to unix time using



    void timevmstounix( long long *vmstimein, time_t *epochout )
    {
    long long timevalue = *vmstimein;

    ...
  6. Replies
    9
    Views
    2,765

    how to extract the milliseconds

    i have been searching the net for 3hours now on how to solve my problem about how to extract the milliseconds from an input but still found no answers. sigh! :(. Im trying my luck here that maybe...
  7. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    thanks for the great explanation.

    then why does this runtime error Type mismatched occurs once in a blue moon? Currently our application seems stable. We dont know when will the error happen...
  8. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    oh, so it's a different thing in c++ where each line will be executed line per line. No matter how busy a line of code is, everything after that will wait until it finishes.
  9. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    but I still don’t understand why it could miss things even in single thread.
  10. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    Thanks a lot! Hope I wont see the Type Mismatch error anymore.
  11. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    UpdateColumn just does this:



    Private Sub UpdateColumn(lRow As Long, strColumnName As String, strValue As String)
    If grdMain.CellText(lRow, grdMain.ColumnIndex(strColumnName)) <> strValue...
  12. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    do you mean to say that this has something to do with out of bounds?
  13. Replies
    16
    Views
    2,138

    Re: Runtime error 13 Type Mismatched

    i dont think i actually understand what you said.
  14. Replies
    16
    Views
    2,138

    Runtime error 13 Type Mismatched

    We have this application that's been running for years but recently we encountered a "Runtime error 13 Type mismatched" which occurs not so often. This happens when we try to view the clients...
  15. Replies
    4
    Views
    1,264

    Re: C++ Set and Get help

    int main()
    {
    students st;
    string name;
    cout <<" Enter your name : ";
    cin >> name;
    st.setName(name);
    cout<< "Enter your ID :";
    int ID;
    cin >> ID;
  16. has anyone tried to code a speed controller?

    I have a program that would output lines of texts. What I want to do is to control its output, basically the speed of delivering texts. Like, if I want to output 1000 lines of texts per second or if...
Results 1 to 16 of 17





Click Here to Expand Forum to Full Width

Featured