Einzelnen Beitrag anzeigen

Benutzerbild von s.h.a.r.k
s.h.a.r.k

Registriert seit: 26. Mai 2004
3.159 Beiträge
 
#1

Probleme beim Zugriff auf Variable

  Alt 27. Apr 2005, 15:09
Hallo! Ich hab zwar grad im Forum gesucht, aber auf die Schnelle nicht gefunden! Ich hoffe, dass diese Thema nocht nicht angsprochen wurde: Und zwar habe ich folgendes Problem: ich habe eine globale Variable wie folgt defeniert:
Delphi-Quellcode:
type
  TMyFont = class
              Name: String;
              Size: Integer;
              Color: TColor;
              Bold: Boolean;
              Italic: Boolean;
              Underline: Boolean;
            end;
  TMyToolbar = class
              Standard: TPoint;
              Explorer: TPoint;
              Syntax: TPoint;
            end;
  TSyntaxHighlighter = (hlFalse, hlCpp, hlPascal, hlHTML, hlPHP, hlJava);

  TAppConfig = class
              Font: TMyFont;
              ShowLineNumber: Boolean;
              WordWarp: Boolean;
              Syntax: TSyntaxHighlighter;
              DocumentName: String;
              ExplorerHeight: Integer;
              ToolBar: TMyToolbar;
            end;

(* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *)

var
  cfg: TAppConfig;
Das funktioniert soweit auch ganz gut, allerdings kann ich nicht auf die Variable zugreifen. Da kommt dann immer ein Zugriffsfehler! warum kann ich eucht nicht sagen... daher hoffe ich, dass einer von euch mir da weiterhelfen kann!
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
  Mit Zitat antworten Zitat