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

Search:

Type: Posts; User: Cambalinho

Search: Search took 0.03 seconds.

  1. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    thanks for tell me that. thanks
  2. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    so i must use virtual functions. thanks for all to all
    realy thanks.
  3. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    :( sorry something:(
    what i'm trying to do is events with class's. thats why i use variables class for use that function.
    sorry my english:( sorry for something:(
    but i understand that i need...
  4. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    i know overload, what i don't is how i can do what you sugest:(
  5. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    how can i do it?
    (you can give me a link for learn, please?)
  6. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    the 1st post;)
    ok. i will repeat:
    test.h:


    #include <iostream>
    class test
    {
    private:
    bool blVisible;
  7. Replies
    17
    Views
    34,701

    Re: about class's and 'events'

    see again the 'correct' main.cpp:

    #include <iostream>
    #include "test.h"
    #include <conio.h>
    #include <fstream>


    using namespace std;
  8. Replies
    17
    Views
    34,701

    about class's and 'events'

    in hedear file(.h):

    class test{
    private:
    bool blVisible;
    public:
    void Show();
    bool Visible()
    {
    return blVisible;
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured