aboutsummaryrefslogtreecommitdiffstats
path: root/PCB/Libraries/InstrumentAmp/UL_Form.dfm
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-03-28 10:12:10 -0500
committerMatt Strapp <strap012@umn.edu>2021-03-28 10:12:10 -0500
commitf3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb (patch)
treedd3ab9128eee3ca38e86f83d705526d596c0f732 /PCB/Libraries/InstrumentAmp/UL_Form.dfm
parentAdded intial PIC24 Firmware (diff)
downloadee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.gz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.bz2
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.lz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.xz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.zst
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.zip
Add a basic VtoI function
Also rearrange things and commit iconoclasm
Diffstat (limited to 'PCB/Libraries/InstrumentAmp/UL_Form.dfm')
-rw-r--r--PCB/Libraries/InstrumentAmp/UL_Form.dfm49
1 files changed, 49 insertions, 0 deletions
diff --git a/PCB/Libraries/InstrumentAmp/UL_Form.dfm b/PCB/Libraries/InstrumentAmp/UL_Form.dfm
new file mode 100644
index 0000000..2d57e92
--- /dev/null
+++ b/PCB/Libraries/InstrumentAmp/UL_Form.dfm
@@ -0,0 +1,49 @@
+object UL_Form: TUL_Form
+ Left = 0
+ Top = 0
+ BorderStyle = bsDialog
+ Caption = 'UL Import'
+ ClientHeight = 80
+ ClientWidth = 473
+ Color = clBtnFace
+ Font.Charset = DEFAULT_CHARSET
+ Font.Color = clWindowText
+ Font.Height = -11
+ Font.Name = 'Tahoma'
+ Font.Style = []
+ OldCreateOrder = False
+ Position = poScreenCenter
+ PixelsPerInch = 96
+ TextHeight = 13
+ object TxtFile: TEdit
+ Left = 80
+ Top = 8
+ Width = 384
+ Height = 21
+ TabOrder = 0
+ end
+ object BtnFile: TButton
+ Left = 8
+ Top = 8
+ Width = 64
+ Height = 24
+ Caption = 'File...'
+ TabOrder = 1
+ OnClick = BtnFileClick
+ end
+ object BtnImport: TButton
+ Left = 188
+ Top = 40
+ Width = 96
+ Height = 32
+ Caption = 'Start Import'
+ TabOrder = 2
+ OnClick = BtnImportClick
+ end
+ object OpenDlg: TOpenDialog
+ DefaultExt = '.txt'
+ Filter = 'UL Altium Output (*.txt)|*.txt'
+ Left = 8
+ Top = 40
+ end
+end