Changeset 9 for trunk/UFormMain.pas
- Timestamp:
- Apr 22, 2016, 8:35:20 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 AcronymDecoder.exe 3 3 AcronymDecoder.lps 4 AcronymDecoder 5 heaptrclog.trc 6
-
- Property svn:ignore
-
trunk/UFormMain.pas
r8 r9 175 175 begin 176 176 OpenDialog1.DefaultExt := ProjectExt; 177 OpenDialog1.FileName := AcronymDb.FileName; 177 if Assigned(AcronymDb) then 178 OpenDialog1.FileName := AcronymDb.FileName; 178 179 if OpenDialog1.Execute then begin 180 AFileClose.Execute; 181 AFileNew.Execute; 179 182 AcronymDb.LoadFromFile(OpenDialog1.FileName); 180 183 LastOpenedList1.AddItem(OpenDialog1.FileName); … … 380 383 AFileSaveAs.Enabled := Assigned(AcronymDb); 381 384 EditSearch.Enabled := Assigned(AcronymDb); 385 AImport.Enabled := Assigned(AcronymDb); 382 386 383 387 Title := Application.Title;
Note:
See TracChangeset
for help on using the changeset viewer.