PDA, Web, Desktop, GIS, Field Mapping, KML, UTM, Education, Cartoon

Mobile GIS Delphi Sql Server OpenSocial ASP.Net/C# Google KML RSS
Showing posts with label delphi. Show all posts
Showing posts with label delphi. Show all posts

Mar 28, 2008

Data Warehouse Client


Cut consolidation and reporting cycles to spend more time on in-depth analysis and enable more flexible, dynamic planning.

features:


  • Integrate Current System

    offer metadata tool, support Oracle, MS SQL Server, Sybase, DB2, Paradox...

  • Customized Reports
    offer unprecedented control and flexibility, so users can customize reports to suit their individual needs.

  • Reports in a Business Context
    make it easy and intuitive for users to locate and execute the reports they need. Users are insulated from database complexities and need not understand SQL or the underlying database to execute and view reports.

  • High-Quality, Print-Ready Reports
    can deliver information in a variety of formats, including standard HTML reports, or print-ready, export to MS Excel.

Feb 24, 2008

hollow box(small box) issue in word app with Delphi

Instead of Chr(13) & Chr(10), use Chr(11) or the constant wdVerticalTab:


activedocument.FormFields(1).Result = "a" & chr(11) & "b"
Hope this helps,




while (pos(#13#10, value) > 0) do
begin
value :=ReplaceString(value,#13#10, #11);
end;
WrdDoc.FormFields.Item(FieldName).Result := value;





function ReplaceString(Dest, SubStr, Str: string): string;
var
Position: Integer;
begin
Position:=Pos(SubStr, Dest);
Delete(Dest, Position, Length(SubStr));
Insert(Str, Dest, Position);
Result:=Dest;
end;