diff options
author | Matt Strapp <strap012@umn.edu> | 2021-03-02 15:35:34 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-03-02 15:35:34 -0600 |
commit | 464993cca3931161a623e6579f2bc08b3de9f8eb (patch) | |
tree | 7660adea8b26f11425644818e2f0822bd384249a /EE3102/Libraries/InstrumentAmp/UL_Form.pas | |
parent | Delete emnpty libs (diff) | |
download | ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar.gz ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar.bz2 ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar.lz ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar.xz ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.tar.zst ee3102-464993cca3931161a623e6579f2bc08b3de9f8eb.zip |
Add libraries
Diffstat (limited to 'EE3102/Libraries/InstrumentAmp/UL_Form.pas')
-rw-r--r-- | EE3102/Libraries/InstrumentAmp/UL_Form.pas | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/EE3102/Libraries/InstrumentAmp/UL_Form.pas b/EE3102/Libraries/InstrumentAmp/UL_Form.pas new file mode 100644 index 0000000..a79f13c --- /dev/null +++ b/EE3102/Libraries/InstrumentAmp/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; + |