![]() |
Hilfe!!! Delphi 6/7 Compiler Fehler???
Hallo,
im folgenden ein einfacher und kurzer Code, der bei mir sowohl unter D6 als auch unter D7 eine Access Violation produziert, wenn man den KillButton drückt:
Delphi-Quellcode:
Ich mache doch nichts böses, oder?!?
unit Unit1;
interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Menus, StdCtrls; type TForm1 = class(TForm) KillButton: TButton; MainMenu1: TMainMenu; Menu: TMenuItem; SubMenu: TMenuItem; procedure KillButtonClick(Sender: TObject); procedure FormResize(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.KillButtonClick(Sender: TObject); begin SubMenu.Visible:=false; close; end; procedure TForm1.FormResize(Sender: TObject); begin SubMenu.Visible:=true; end; end. Warum dann die Access Violation in der Delphi-Unit Menus in TMenu.SetWindowHandle??? Es müssen übrigens zwei MenuItems sein, mit einem allein tritt der Fehler nicht auf. Sie müssen nicht geschachtelt sein, aber Menu muss vor Submenu kommen. |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Wie sieht denn die DFM aus?
Grundsätzlich ist dieser Code erstmal OK und vorallem für Delphi 7 kann ich solche Fehler nicht bestätigen. Die Reihenfolge von SubMenu und Menü sollten auch keine Rolle spielen. PS: ![]() |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zweite Frage
warum kein Delphi 10.2 Starter? |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zitat:
Delphi-Quellcode:
object Form1: TForm1
Left = -1469 Top = 233 Width = 589 Height = 291 Caption = 'Form1' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -13 Font.Name = 'MS Sans Serif' Font.Style = [] Menu = MainMenu1 OldCreateOrder = False OnResize = FormResize PixelsPerInch = 120 TextHeight = 16 object KillButton: TButton Left = 56 Top = 32 Width = 75 Height = 25 Caption = 'KillButton' TabOrder = 0 OnClick = KillButtonClick end object MainMenu1: TMainMenu Top = 32 object Menu1: TMenuItem Caption = 'Menu' end object SubMenu: TMenuItem Caption = 'SubMenu' end end end Zitat:
Ah, ich sehe das gibts kostenlos. Bisher war ich mit D7 glücklich. Kann das Problem jemand reproduzieren oder tritt das nur bei mir auf? |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Wenn das nun so ein kurzes Testprogramm ist, könntest Du doch vielleicht das komplette Projekt hier hochladen. Dann brauchen wir das nicht per Copy&Paste neu anzulegen
|
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zitat:
Delphi 7, Delphi 8, Delphi 9, Delphi 10. So ist nicht ;) |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zitat:
Zum Thema: Die DFM passt nicht zur Unit. In der DFM gibt es u. a.
Delphi-Quellcode:
in der Unit aber
object MainMenu1: TMainMenu
Top = 32 object Menu1: TMenuItem // in der Unit heißt's nur Menu Caption = 'Menu' end object SubMenu: TMenuItem Caption = 'SubMenu' end
Delphi-Quellcode:
Da ist irgendwas kaputtgegangen, bei mir meckert der Kompiler das an.
MainMenu1: TMainMenu;
Menu: TMenuItem; // nicht Menu1??? SubMenu: TMenuItem; |
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Liste der Anhänge anzeigen (Anzahl: 1)
Zitat:
Zitat:
|
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zitat:
|
AW: Hilfe!!! Delphi 6/7 Compiler Fehler???
Zitat:
Mit Delphi6 bzw 7 war ich bisher glücklich. Das ist schnell, bisher stabil und verfügbar. Und ich kanns bedienen. Ich bin übrigens beileibe nicht der einzige, der D6 bzw. D7 benutzt. Das gabs damals kostenlos als Zeitungsbeilage. P.S. Ein Anfänger hätte den Fehler sicher nicht in 10MB Quellcode mit Multithreading und dynamischen dlls isolieren können! |
Alle Zeitangaben in WEZ +1. Es ist jetzt 00:53 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz