Question: How to get more info on tooltip error/squiggly

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Question: How to get more info on tooltip error/squiggly

    Thanks. When I get an error like this, where can I go to get more info/read
    about the error? I need to be able to 'look it up'.

    "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    news:ensQ%23bAQDHA.1148@TK2MSFTNGP11.phx.gbl...
    > You have not instantiated your object.
    > You have something like this:
    > Dim A as cMyObject
    > A.MyMethod() 'error - object has been declared but not instantiated
    >
    > You need to have it more like this:
    > Dim A as NEW cMyObject 'declare AND instantiate
    > A.MyMethod() 'success
    >
    > --
    > I hope this helps,
    > Steve C. Orr, MCSD
    > [url]http://Steve.Orr.net[/url]
    >
    >
    > "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    > news:OSg4aYAQDHA.3144@tk2msftngp13.phx.gbl...
    > > I have another blue squiggly. I hover above it and it says 'Cannot refer
    > to
    > > an instance member of a class from within a shared method or a shared
    > member
    > > initialize without an explicit instance of the class'. When I get an
    error
    > > like this, where can I go to get more info/read about the error?
    > >
    > >
    >
    >

    VB Programmer Guest

  2. Similar Questions and Discussions

    1. Tooltip question
      I have an application that was developed in ASP.NET/C#. On one of the pages, we are using tooltip to display the description of the textboxes. Wehn...
    2. tooltip throws actionscript error in cftree
      The screen read " Illegal usage of actionscript" for a <cftree> in a flash form. The only action script I use in any form element is GetURL....
    3. File info question
      Hi guys I just upgraded to MX and am trying to work out a way to use the file info function in Freehand. My problem is the web based browser that...
    4. Question: Response.write (squiggly line)
      I can use response.write in any one of my webforms. But when I try to use it in a Module's public sub there is a squiggly blue line under response....
    5. HACMP question - additional problem info
      gk15374@yahoo.com (Andy) wrote in message news:<e01e9fdb.0306131100.1b5adda7@posting.google.com>... Alan I agree I've had the same issue with...
  3. #2

    Default Re: Question: How to get more info on tooltip error/squiggly

    If the squiggly is under a .NET class variable then look up that class in
    the documentation to view the different ways that you can instantiate it.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    news:e5MpPeAQDHA.2244@TK2MSFTNGP11.phx.gbl...
    > Thanks. When I get an error like this, where can I go to get more
    info/read
    > about the error? I need to be able to 'look it up'.
    >
    > "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    > news:ensQ%23bAQDHA.1148@TK2MSFTNGP11.phx.gbl...
    > > You have not instantiated your object.
    > > You have something like this:
    > > Dim A as cMyObject
    > > A.MyMethod() 'error - object has been declared but not instantiated
    > >
    > > You need to have it more like this:
    > > Dim A as NEW cMyObject 'declare AND instantiate
    > > A.MyMethod() 'success
    > >
    > > --
    > > I hope this helps,
    > > Steve C. Orr, MCSD
    > > [url]http://Steve.Orr.net[/url]
    > >
    > >
    > > "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    > > news:OSg4aYAQDHA.3144@tk2msftngp13.phx.gbl...
    > > > I have another blue squiggly. I hover above it and it says 'Cannot
    refer
    > > to
    > > > an instance member of a class from within a shared method or a shared
    > > member
    > > > initialize without an explicit instance of the class'. When I get an
    > error
    > > > like this, where can I go to get more info/read about the error?
    > > >
    > > >
    > >
    > >
    >
    >

    Steve C. Orr, MCSD Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139