Ask a Question related to ASP.NET General, Design and Development.
-
VB Programmer #1
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...error> 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...> to> > I have another blue squiggly. I hover above it and it says 'Cannot refer> member> > an instance member of a class from within a shared method or a shared> > initialize without an explicit instance of the class'. When I get an>> > like this, where can I go to get more info/read about the error?
> >
> >
>
VB Programmer Guest
-
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... -
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.... -
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... -
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.... -
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... -
Steve C. Orr, MCSD #2
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...info/read> Thanks. When I get an error like this, where can I go to get morerefer> 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> error> > to> > member> > > an instance member of a class from within a shared method or a shared> > > initialize without an explicit instance of the class'. When I get an>> >> > > like this, where can I go to get more info/read about the error?
> > >
> > >
> >
>
Steve C. Orr, MCSD Guest



Reply With Quote

