Ask a Question related to ASP.NET General, Design and Development.
-
Andreas Klemt #1
Difference between "Protected WithEvents myClassName" And "Protected myClassName" ?
Hello,
what is the difference between
a) Protected WithEvents myClassName
b) Protected myClassName
Thanks,
Andreas
Andreas Klemt Guest
-
What is the difference between a DNS "zone" and a DNS "domain"?
Gurus, What is the difference between a DNS "zone" and a DNS "domain"? I've been studying DNS a lot and grasp the concept, but I want to hear... -
CFINPUT type="radio" w/ "value" requires "label"
On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'... -
"Statement not protected!" in db2diag.log??
It happens every time Quest tools are used. Tested it again and again and found that it can be easily reproduced. Obviously something/ some query... -
what's the difference between ". cmd" and "cmd" in shell script??
Thank u very much!! -- Zhao YouBing, Ph.D student State Key Lab of CAD&CG,Zhejiang University, Hangzhou, 310027, P.R.China Tel :... -
"Start" "Program" "Menu" list is empty
For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your... -
James J. Foster #2
Re: Difference between "Protected WithEvents myClassName" And "Protected myClassName" ?
WithEvents is a VB.NET keyword to indicate that the object you are declaring
can raise events, and you want to support the ability to respond to those
events.
--
James J. Foster, DotNetCoders
[url]http://www.dotnetcoders.com[/url]
"Andreas Klemt" <aklemt68@hotmail.com> wrote in message
news:u0XaBNoQDHA.2476@TK2MSFTNGP10.phx.gbl...> Hello,
>
> what is the difference between
> a) Protected WithEvents myClassName
> b) Protected myClassName
>
> Thanks,
> Andreas
>
>
James J. Foster Guest
-
Andreas Klemt #3
Re: Difference between "Protected WithEvents myClassName" And "Protected myClassName" ?
Hello James,
does this mean, when I have a UserControl Class like this
Protected WithEvents ctlID As myUserControlClass
that any Events in my UserControlClass like Button.Click will be
automatically bubbled up to the parent class?
What would happen when I only do this
Protected ctlID As myUserControlClass
Thanks you for any help!!
Andreas
"James J. Foster" <james@dotnetcoders.com> schrieb im Newsbeitrag
news:eHYNQ4oQDHA.2036@TK2MSFTNGP10.phx.gbl...declaring> WithEvents is a VB.NET keyword to indicate that the object you are> can raise events, and you want to support the ability to respond to those
> events.
>
> --
> James J. Foster, DotNetCoders
> [url]http://www.dotnetcoders.com[/url]
>
>
> "Andreas Klemt" <aklemt68@hotmail.com> wrote in message
> news:u0XaBNoQDHA.2476@TK2MSFTNGP10.phx.gbl...>> > Hello,
> >
> > what is the difference between
> > a) Protected WithEvents myClassName
> > b) Protected myClassName
> >
> > Thanks,
> > Andreas
> >
> >
>
Andreas Klemt Guest



Reply With Quote

