Search Result

Collapse
5 results in 0.0040 seconds.
Keywords
Members
Tags
virtual
  •  

  • Rafael Justo
    started a topic Pure virtual methods cannot be inherit?
    in C

    Pure virtual methods cannot be inherit?

    Check the following code example:

    Code:
    ///////////////////////
    
    class A
    {
    public:
      int a;
    };
    
    ///////////////////////
    
    class B : public A {};
    
    ///////////////////////
    
    class C
    {
    public:
      virtual void c(A *a) = 0;
    };
    
    ///////////////////////
    
    class D : public C
    {
      void c(B *b) {}
    };
    ...
    See more | Go to post

  • how do i document.forms[0].submit() a form to a window.open?

    I have a virtual form with inputs like this...
    Code:
    newInput = document.createElement("INPUT");
    newInput.type = "hidden";
    newInput.name = "deprecated_form_id";
    newInput.value = deprDocID;
    document.forms[0].appendChild(newInput);
    and when i do a document.forms[0].submit(); how do I get it to submit to a window.open with specific options like toolbar=no, location=no...
    See more | Go to post

  • error UserControl(ascx) does does not exist when accessing thru virtual dir

    Hi Team,

    I am trying to access a user control on a aspx page but I am getting error:
    "The file '/ajax/include/aspnet/Web.TopBanner4. ascx' does not exist"

    Let me explain the situation - I have an application running on IIS and located in D drive of the server, recently I have added a virtual directory in "C:\Inetpub\www root\" as "ajax". I can access virtual dir thru www.myapplicati on/ajax...
    See more | Go to post

  • Queesh
    started a topic How do you create a temporary virtual C drive?

    How do you create a temporary virtual C drive?

    I can't find any links that explain it the way I need it. Software needs to install a program directory to the C: drive, but my main partition is F:.

    I had a similar problem around 2 years ago. I added a simple line of code in the DOS prompt to make my F: drive read as a C: drive until a reboot. I just can't for the life of me remember how it's done.

    I'm using Win XP Pro 32-Bit.
    See more | Go to post

  • Floogle
    Guest started a topic virtual == operator
    in C

    virtual == operator

    how do i create a virtual == operator. I've tried the following but
    it's incorrect...

    class Interface
    {
    ...

    public:

    virtual bool operator==(cons t Interface& rhs)const=0;
    };

    class MyClass : public Interface
    {
    ...

    public:

    bool operator==(cons t MyClass& rhs)const;
    };

    thanks...
    See more | Go to post
Working...