As others have stated, there are only so many things that can go wrong with the code you have shown:
1) the TMenuItem.Tag may contain the wrong value.
2) TempResultFile may not be assigned a valid TEdit pointer. Despite what others have said, leaving the variable uninitialized DOES NOT guarantee that an Access Violation will occur, though it is likely. There is also the possibility that if the TEdit was not created correctly, or has been freed, that the pointer being assigned may be nil. That will cause an AV if you try to use it.
3) SaveDialog1.Execute() may be returning False. That happens if you cancel the dialog, but it can also happen if the dialog has an internal error. In some situations, you can use CommDlgExtendedError() to check for that condition.
4) SaveDialog1.FileName is empty, which should not happen if SaveDialog1.Execute() returns true, however it can happen if you are using a fairly modern Delphi version, running your app on Windows Vista or later, and select a non-filesystem file.
During your debugging, make sure you are checking for all those conditions, eg:
var
Item: TMenuItem;
TempResultFile : TEdit;
S: String;
begin
Item := Sender as TMenuItem;
case Item.Tag of
1: TempResultFile := ResultTFile1;
2: TempResultFile := ResultTFile2;
3: TempResultFile := ResultTFile3;
else
raise Exception.CreateFmt('%s.Tag (%d) is not an expected value!', [Item.Name, Item.Tag]);
end;
if TempResultFile = nil then
raise Exception.Create('TempResultFile is nil!');
if not SaveDialog1.Execute then
raise Exception.CreateFmt('SaveDialog1.Execute returned false! Possible CommDlg error? (%d)', [CommDlgExtendedError()]);
S := SaveDialog1.FileName;
if S = '' then
raise Exception.Create('SaveDialog1.FileName is empty!');
TempResultFile.Text := S;
end;
As an alternative to using the TMenuItem.Tag, the TPopupMenu.PopupComponent property will tell you which Button displayed the PopupMenu. You can set the TButton.Tag property to point at the TEdit component that corresponds to that Button, then you don't have to use the TMenuItem.Tag property anymore to hunt for the TEdit component, eg:
procedure TForm1.FormCreate(Sender: TObject);
begin
ResultTButton1.Tag := NativeInt(ResultTFile1);
ResultTButton2.Tag := NativeInt(ResultTFile2);
ResultTButton3.Tag := NativeInt(ResultTFile3);
end;
procedure TForm1.MenuItemClick(Sender: TObject);
var
ResultTButton : TButton;
TempResultFile : TEdit;
begin
ResultTButton := PopupMenu.PopupComponent as TButton;
TempResultFile := TEdit(ResultTButton.Tag);
if TempResultFile <> nil then begin
if SaveDialog1.Execute then
TempResultFile.Text := SaveDialog1.FileName;
end;
end;
ResultTFile1etc. are declared. And tell us what "it doesn't work means". That's never enough info. Complete error message and point in code where error is raised are required. – David Heffernan Aug 2 '12 at 14:06TempResultFiledoes point to the component. An object reference is just that, a reference. Split the if/then statement onto two lines so that you can check whether or notSaveDialog1.Executeis returningTrueorFalse. Do that under the debugger. – David Heffernan Aug 2 '12 at 14:14SaveDialog1.FileNameis empty or thatSaveDialog1.ExecutereturnsFalse. OtherwiseTempResultFileshouldn't point to any edit which would result in an access violation. – NGLN Aug 2 '12 at 18:34