The first step in configuring DADE for your end users involves setting the properties of the DataSettings object of the Designer component. This object contains the following properties: Property Description AllowEditSQL Determines whether or not the end-user can edit the SQL in the Query Designer. DatabaseName The name of the database from which data will Full Article…
Search the Wiki
Viewing 343 to 345 of 408 items
Ask at Run-Time Support
Ask At Run-Time support refers to the common task of allowing the end-user to specify parameter values that can be used to limit the scope of a report. As an example, for an invoice report, the end-user might specify a company name and date range. ReportBuilder’s AutoSearch feature offers a RAD solution to the drudgery Full Article…
Translate OEM Charset
The following example shows how to add OEM Charset translation to daADO.pas: function TdaChildADOQuery.Translate(Src, Dest: PChar; ToOem: Boolean): Integer; begin if (Src <> nil) then begin if ToOem then CharToOemBuff(Src, Dest, StrLen(Src)+1) else OemToCharBuff(Src, Dest, StrLen(Src)+1); Result:=StrLen(Dest); end else Result:=0; end;