How can you use Microsoft SQL Server Notification Services in Delphi 6?
Latest Answer: there same "Exit" command available. you can use Abort stop any operation(s). ...
Latest Answer: If you write your own code to instantiate objects, you are responsible for disposing of them as well. Every object inherits a Destroy method (called a destructor) from TObject. To destroy an object, however, you should call the Free method (also inherited ...
Latest Answer: It is a function in Delphi to find the Total memory status.It accepts TMemoryStatus variable as var parameter.It fills the variable entity with different memory status info like Total phisical Memory, available phisical memory, total vrtual memory ...
Latest Answer: The initialization section is optional. It begins with the reserved word initialization and continues until the beginning of the finalization section or, if there is no finalization section, until the end of the unit. The initialization section contains ...
Latest Answer: TActiveForm is the base class for a VCL Form exposed as an ActiveX control. TActiveForm represents a form that is created by a class factory (in Delphi) or using the Active Template Library (C++) and used as an ActiveX control in ActiveX host applications.A ...
What are the types of arrays handled by Delphi?
Latest Answer: There are two types of arrays. 1.Static - array[indexType1, ..., indexTypen] of baseType2. Dynamic - array of baseType ...
Latest Answer: Set the form's autoscroll property to true. ...
Latest Answer: Every identifier (type, routine, variable, and so on) that you declare in the Interface portion of a unit becomes visible to any other unit of the program. ...
Latest Answer: Unit is nothing but a text file that can be complied in a module of code.there are 2 different types of units Project Source unit and it can be saved with an extension of .DPRand Source code unit with an associated form and can be ...
View page [1] 2 3 Next >>

Go Top