Ask a Question related to ASP.NET General, Design and Development.
-
yma #1
Syntax
Hi,
In a subclass, is
sub new()
end sub
the same as
sub new()
mybase.new()
end sub
Thanks
Chris Ma
yma Guest
-
if/else tag syntax
Hello, I know, how to do if/else in Actionscript, but how can I do something like if/else in MXML syntax? I want to decide on startup/compile... -
Help with SYntax, Please!
I want the name of a product to show IF the Name field is NOT NULL AND if there's an image for that Record. Can anyone help? Here's the code... -
If than syntax help please
I'm trying to say: If price2 equals the selected price than apply the style bold price. If price 2 is nothing or zero than show nothing. If price... -
Syntax again - Help!
I have a movie clip instance named 22mc. Can anyone tell me why this is not good syntax: on (release) { with (_root.22mc) { play(); } } ... -
Help with DB2 Syntax.
Hi Everyone, Recently our comany upgraded their applications from MS ACCESS 2000 to DB2 version 7.2 UDB. I'm not as skilled in DB2 with the... -
Daniel Bass #2
Re: Syntax
No,
the first instantiates <subclass>::new(), and if it exists in the base
class, overrides it so that the <baseclass>::new() is not called.
the seconds does the first, but then calls any instantiation of the
baseclass as well...
the second is used if you have something that's initialised in the base
class, which you want initialised, but then wish to further initialise in
some way...
for example...
base class is called Animal
the sub class is called Dog
you may say that an animal as the class action, which then calls initialises
breathe...
but then the Dog calls this base initialisation and calls Bark... you want
both Bark and Breathe to be initialised or the dog won't be barking for
long!
"yma" <yma@pacbell.net> wrote in message
news:%23guayrWQDHA.1752@TK2MSFTNGP12.phx.gbl...> Hi,
>
> In a subclass, is
>
> sub new()
> end sub
>
> the same as
>
> sub new()
> mybase.new()
> end sub
>
>
> Thanks
>
> Chris Ma
>
>
>
Daniel Bass Guest



Reply With Quote

