Informační tok Funkční structura Datová struktura ER model Modulová struktura Typová struktura Relační model Dokumentace


[Celkový datový model] [Funkce] [Externí rohraní] [Stavové diagramy] [Datové elementy] [Entity] [Relace]
[Databáze] [Události] [Materiály] [Generovací funkce] [Vyhodnocovací funkce] [Konfigurace] [Uživatelé] [Projekt] [Home]



Vyhodnocovací funkce
Typestructures
(Web Publishing)


Vytvořeno: 04-16-1997 14:45:13
Poslední změna: 01-14-2003 12:58:37

Lists all type structures in the current system.

Modul

Module: Web Publishing

Zdrojový kód:

PROCEDURE Typestructures()
BEGIN

  //IMPORTANT NOTE: It is NOT possible to generate linked Typestructure pages at this
  //place, because their generation requires the knowledge of the XOffset and YOffset
  //values returned by OLE Automation WritePicture. So don't try to incorporate such
  //functionality later here in that function.

  CALL Header("Přehled typových struktur");
  CALL H2 ("Typové struktury");

  foundsomething! = FALSE;
  FOREACH Typestructure DO
    foundsomething! = TRUE;
    BREAK;
  END

  IF foundsomething! THEN
    PRINT {HTML} "<TABLE CELLPADDING=2 NOWRAP VALIGN=BASELINE>",NL;
    PRINT {HTML} " <TR>",NL;
    PRINT {HTML} " <TH VALIGN=BASELINE ALIGN=LEFT COLSPAN=2><FONT SIZE=2 FACE=""Verdana, Arial"">Název </FONT></TH>",NL;
    CALL GenStandardColsHeader();
    PRINT {HTML} " </TR>",NL;

    FOREACH Typestructure ORDER BY Name DO
      PRINT {HTML} " <TR>",NL;
      PRINT {HTML} " <TD ALIGN=CENTER VALIGN=TOP><FONT SIZE=2 FACE=""Verdana, Arial"">";
      PRINT {HTML} "<img src=""bullet.gif""> ";
      PRINT {HTML} "</FONT></TD>",NL;
      PRINT {HTML} " <TD ALIGN=LEFT VALIGN=TOP><FONT SIZE=2 FACE=""Verdana, Arial"">";
      PRINT {HTML} Anchor$("<B>" + Conv$(Boxname) + "</B>", "", Str$(Object) + ".htm");
      PRINT {HTML} "</FONT></TD>",NL;

      CALL GenStandardCols(Object);
      
      PRINT {HTML} " </TR>",NL;
    END
    PRINT {HTML} "</TABLE>",NL;
  ELSE
    CALL H2_Spaceless("V projektu nejsou žádné typové struktury.");
    PRINT {HTML} "<BR>",NL;
  END
  
  CALL Footer("");
END


Generováno: 16.10.2003 7:41 Systém: C:\Documents and Settings\hajsman\Dokumenty\Vyuka\Irs2\Projekt case40\Projekt03.csf Generováno systémem case/4/0
Vygeneroval: Administrator Soubor: C:\Documents and Settings\hajsman\Dokumenty\Vyuka\Irs2\Projekt case40\html\14179.htm (C) microTOOL GmbH 2002