{*--------------------------------------
Level einer Exception
-------------------------------------------}
EIExceptionType = (biError, biWarning, biNotice);
{*-----------------------------------------------
Hilfsklasse
-----------------------------------------------}
TImport_Help = class
class function SpaceCut (s : string; le : integer) : string;
end;
implementation
{*-------------------------------------------
String an der Leerstelle zerschneiden
@param s Der String, welcher zerschnitten werden soll
@param le Lnge auf die der String begrenzt ist
@return linker Teil des abgeschnitten Strings
------------------------------------------------}
class function TImport_Help.SpaceCut(s: string; le: integer): string;
var
i : integer;
begin
(...)
end;
-----
Sorry, the Documentation ist in German, but that should be no problem, I think ;-)
Thomas P.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
great Programm.
I want to Fill the Description for
Summary
Description
Author
on the Main Page.
Where can I add the tags for the Main Page?
Some bugs I've found :
On every Unit Page there is : Fonctions
I think it must be "Functions" ?
How can I add information for the "link" Tag at the end of every page?
Or is not not implemented, yet?
Description in source above "class functions" is not recognized by the DelphiCodetodocTool
Thank you
Thomas P.
* The Description for Summary, Description, Author on the Main Page
-> NOT IMPLEMENTED. Will be add in v0.6 (in few days now!)
* On every Unit Page there is : Fonctions I think it must be "Functions" ?
-> YES, it is already fixed in v0.5.1a - Tracker #940588
*How can I add information for the "link" Tag at the end of every page?
-> NOT IMPLEMENTED for the moment. Will be add later.
*Description in source above "class functions" is not recognized by the DelphiCodetodocTool
-> Can u give me an example, i don't understand your prob.
Thancks for the submission, be patient for few days until next release !
{*--------------------------------------
Unit fr Klassen mit Hilfsfunkionen
@Version 2004/03/31 Unit implementiert
----------------------------------------}
unit Import_Help;
interface
uses Classes, Sysutils, Dialogs, IniFiles, STrUtils, MQuery, ADODB;
type
{*--------------------------------------
Level einer Exception
-------------------------------------------}
EIExceptionType = (biError, biWarning, biNotice);
{*-----------------------------------------------
Hilfsklasse
-----------------------------------------------}
TImport_Help = class
class function SpaceCut (s : string; le : integer) : string;
end;
implementation
{*-------------------------------------------
String an der Leerstelle zerschneiden
@param s Der String, welcher zerschnitten werden soll
@param le Lnge auf die der String begrenzt ist
@return linker Teil des abgeschnitten Strings
------------------------------------------------}
class function TImport_Help.SpaceCut(s: string; le: integer): string;
var
i : integer;
begin
(...)
end;
-----
Sorry, the Documentation ist in German, but that should be no problem, I think ;-)
Thomas P.
ok, bug reproduced and identified.
I Will try to fix it in next release.
I have open a new tracker.
Fixed in v0.5.alpha.3
http://sourceforge.net/tracker/index.php?func=detail&aid=953997&group_id=96281&atid=614255