|
[ANN]:Auto generate flowchart from sourcecode!
AgFlowchart is a excellent source code flowcharting tool to generate flowchart from source code. Its flowchart can expand and shrink. and you can pre-define the the width , height,Horizontal spacing and vertical spacing. Move and zoom is also very easy. It can export the flowchart as a Microsoft Word file or a bitmap file. It can help programmers understand, document and visualize source code.
It supports C,C++,VC++(Visual C++ .NET),Delphi(Object Pascal).
Maybe it can help you!
Related Discussions - REPEATING FUNCTIONS (2001-01-04 09:46:34)The OnIdle event is not hardware dependent. It is called when the program has idle time. The OnIdle event is in TApplication and is a warpper...
- HOW TO FREE UP A QUICKREPORT COMPONENT IN MEMORY...? (2001-01-09 08:05:01)Use :
Begin
if RepForm=Nil then
RepForm:=TRepForm.Create(Application);
End;
- HOW TO FIND OUT IF MY APP WAS AUTO - OR MANUALY STARTED? (2001-01-11 05:46:20)Yeah, I see no other possibility.
By the way, you can get the numbers of params with the function ParamCount.
Gru"z,
Obeliks
- OPEN URL IN DEFAULT BROWSER AND AUTO FILL FORM FIELDS (2001-01-11 14:50:36)>The only way to really do this is to use the Windows API to
>get the handle of the browser window, and then send the
>text to the window....
- 'AUTORUN'-COMPONENT BY ABF-SOFTWARE (2001-01-25 08:15:36)use parameters, and check for those parameters in your program
for i:= 1 to parametercount do
begin
if paramstr(i) = 'runbyabfcomponents'...
- IS IT POSSIBLE TO RUN SOME DELPHI PROGRAMS IN DOS ? (2001-01-26 00:56:00)You can compile your app as a 'console application'. You will find the 'Generate Console Application' on the Linker tab of the Project Options...
- DELETING THE EXEFILE... (2001-01-28 04:05:04)function CreateTempFileName: string;
var TempDir: array of Char;
count, len: LongInt;
dummy, sec: Word;
start: string;
begin...
- STOPPING AUTO-FOCUS ON MDI CHILD CREATE (2001-01-29 07:55:39)I do not know how to fix your problem, but why do you not use threads if you only do calculations? Threads will be much more efficient.
Stephan
- CD DRIVE LETTER (2001-01-29 11:09:39)ParamStr(0) is the letter of the drive your program is running from... For example, use "WinExec(PChar(ParamStr(0)+':\Setup.exe'),SW_SHOWNORMAL);"
- DATA ENTRY WINDOW THAT LOOKS LIKE A PAPER FORM (2001-02-01 06:51:58)Thanks for the answers!
Someone on the Delphi newsgroups recommended the Defined Forms 6.0 package (www.defined.net). It seems to be the way to...
|