diff options
Diffstat (limited to 'EE3102/Libraries/LM741/UL_Form.pas')
-rw-r--r-- | EE3102/Libraries/LM741/UL_Form.pas | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/EE3102/Libraries/LM741/UL_Form.pas b/EE3102/Libraries/LM741/UL_Form.pas new file mode 100644 index 0000000..a79f13c --- /dev/null +++ b/EE3102/Libraries/LM741/UL_Form.pas @@ -0,0 +1,14 @@ + +procedure TUL_Form.BtnFileClick(Sender: TObject); +begin + If OpenDlg.Execute Then Begin + TxtFile.Text := OpenDlg.FileName; + End; +end; + +procedure TUL_Form.BtnImportClick(Sender: TObject); +begin + ImportAscIIData(TxtFile.Text); + Close; +end; + |