V3.0 beta1 is released

January 14, 2010 by admin · 1 Comment
Filed under: AutoFlowchart 

AutoFlowchart V3.0 beta1 is released!

http://www.ezprog.com/AutoFlowchart_v3beta1.rar

It use a new framework  and suit for more program language.

In the version, add a treeview to show the source code struct.

The flowchart can be docked.

AFC_V3b1

AutoFlowchart : Found a bug

January 12, 2010 by admin · Leave a Comment
Filed under: AutoFlowchart 

From Larry, and released a new version (v2.4.7) to fix it.  Thanks Larry.
 
The following function in Pascal does not render a flowchart:
 
—-start of snippet————————————————————————————————————————-
function Tseznam.znacka_popis_ex(zn,i:longint):string_mdp;
var z,x:longint;
  begin
    if not ziju then begin debouk(’E05: Neziju – znacka_popis_ex’);znacka_popis_ex:=”;exit;end;
    if (zn>=0) and (zn<=znacky_posl) and (i>=0) and (i<kjpvp) then
      begin
        z:= znacky^[zn]^.popi^.jpo[i];if z<>1 then inc(z);
        x:= znacky^[zn]^.popi^.jpo[i+1];
 
        if (z>=x) then
            begin
              if i=c_pop_datod then znacka_popis_ex:=datum_od_default
              else
              if i=c_pop_datdo then znacka_popis_ex:=datum_do_default
              else
              znacka_popis_ex:=”;
            end
          else znacka_popis_ex:=copy(znacky^[zn]^.popi^.text,z,znacky^[zn]^.popi^.jpo[i+1]-z)
      end
    else begin debouk(’E06: znacka_popis_ex – out of range’);znacka_popis_ex:=’XXXXXXXX’;end;
  end;
—end of snippet——————————————————————————————————————
 
AutoFlowchart drives the CPU utilization up between 50 to 70% (as measured by TaskManager) but
does nothing visibly. Selecting another function from the file usually works but is delayed by many
seconds (Vista Home Premium). 

AutoFlowchart: start a new framework to parse!

December 18, 2009 by admin · 1 Comment
Filed under: AutoFlowchart 

Start a new framework to parse source code today.

The new framework used a database to save all reserve word information for every program language.

A software read the database and compile to DLL.

AutoFlowchart use the DLL to parse source code  and export a reserve word array.

The new framework can parse any language with simple define. and flowchart generate and draw is separate.