Re: [Axapta-Knowledge-Village] Question on X++ Basics

2010-05-28 Thread mahesh tej
ct: Re: [Axapta-Knowledge-Village] Question on X++ Basics   Like any other OO Laungauage X++ also follows all principles of object oriented programming. Every form is an instance of FORMRUN class which is restricted by a keyword FINAL which means it cannot be inherited further.. So it cant form

Re: [Axapta-Knowledge-Village] Question on X++ Basics

2010-05-28 Thread Pankaj Gupta
Like any other OO Laungauage X++ also follows all principles of object oriented programming. Every form is an instance of FORMRUN class which is restricted by a keyword FINAL which means it cannot be inherited further.. So it cant form a new instance every time when u create a new form by its name,

[Axapta-Knowledge-Village] Question on X++ Basics

2010-05-27 Thread mahesh tej
Hi Experts, Does anyone know why class declaration of all forms in Ax is: final class FormRun extends ObjectRun   Instead of something like   final class <> extends FormRun Let it be a stupid, silly question :-). Thanks, Mahesh Tej