intellisence

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andy Read

    intellisence

    Dear all,

    Can anyone tell me why the VS IDE does not display the methods /
    functions etc for the base class object. This may be a stupid question but
    I expected to see the ToString function or the Equals function in the
    intellisense?

    Example:

    Dim obj as New Object

    obj. ???

    Am I going mad?

    Thanks


  • Angela

    #2
    Re: intellisence

    I think you're going mad. : P

    I'm not sure why the Intellisense isn't working for your
    object. I just tried it to see if I could do it and it
    worked.

    Example:
    object obj = new object();

    //typing obj. produced an Intellisense list consisting of:
    Equals
    GetHashCode
    GetType
    ToString



    [color=blue]
    >-----Original Message-----
    >Dear all,
    >
    > Can anyone tell me why the VS IDE does not display[/color]
    the methods /[color=blue]
    >functions etc for the base class object. This may be a[/color]
    stupid question but[color=blue]
    >I expected to see the ToString function or the Equals[/color]
    function in the[color=blue]
    >intellisense ?
    >
    >Example:
    >
    >Dim obj as New Object
    >
    >obj. ???
    >
    >Am I going mad?
    >
    >Thanks
    >
    >
    >.
    >[/color]

    Comment

    • Chris Dunaway

      #3
      Re: intellisence

      "Andy Read" <qzrlsd@btinter net.com> wrote in
      news:bi5mc8$3nt $1@titan.btinte rnet.com:
      [color=blue]
      >
      > Can anyone tell me why the VS IDE does not display the methods /
      > functions etc for the base class object. This may be a stupid[/color]

      Longshot: Check your setting and make sure that the "Hide Advanced
      Members" checkbox is cleared for the VB editor.

      [color=blue]
      >
      > Am I going mad?
      >[/color]

      Do the voices talk to you too? :)

      HTH

      chris

      Comment

      • Andy Read

        #4
        Re: intellisence

        Thanks to all that replied, I cleared the check box "Hide Advanced Members"
        and it now works a treat.

        Cheers.

        "Chris Dunaway" <dunawayc@lunch meatsbcglobal.n et> wrote in message
        news:Xns93DF971 CB5C9dunawaycsb cglobalnet@207. 46.248.16...[color=blue]
        > "Andy Read" <qzrlsd@btinter net.com> wrote in
        > news:bi5mc8$3nt $1@titan.btinte rnet.com:
        >[color=green]
        > >
        > > Can anyone tell me why the VS IDE does not display the methods /
        > > functions etc for the base class object. This may be a stupid[/color]
        >
        > Longshot: Check your setting and make sure that the "Hide Advanced
        > Members" checkbox is cleared for the VB editor.
        >
        >[color=green]
        > >
        > > Am I going mad?
        > >[/color]
        >
        > Do the voices talk to you too? :)
        >
        > HTH
        >
        > chris[/color]


        Comment

        Working...