2023-03-03 14:29:04 -05:00
|
|
|
VERSION 5.00
|
|
|
|
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} part
|
|
|
|
Caption = "Part Picker"
|
2023-04-24 21:09:12 -04:00
|
|
|
ClientHeight = 1335
|
2023-03-03 14:29:04 -05:00
|
|
|
ClientLeft = 120
|
|
|
|
ClientTop = 465
|
2023-04-24 21:09:12 -04:00
|
|
|
ClientWidth = 9285.001
|
2023-03-03 14:29:04 -05:00
|
|
|
OleObjectBlob = "part.frx":0000
|
|
|
|
StartUpPosition = 1 'CenterOwner
|
|
|
|
End
|
|
|
|
Attribute VB_Name = "part"
|
|
|
|
Attribute VB_GlobalNameSpace = False
|
|
|
|
Attribute VB_Creatable = False
|
|
|
|
Attribute VB_PredeclaredId = True
|
|
|
|
Attribute VB_Exposed = False
|
|
|
|
Option Explicit
|
|
|
|
|
2023-04-24 21:09:12 -04:00
|
|
|
Public useval As Boolean
|
2023-03-03 14:29:04 -05:00
|
|
|
|
2023-04-24 21:09:12 -04:00
|
|
|
Private Sub cmdCancel_Click()
|
|
|
|
useval = False
|
|
|
|
Me.Hide
|
2023-03-03 14:29:04 -05:00
|
|
|
End Sub
|
|
|
|
|
2023-04-24 21:09:12 -04:00
|
|
|
Private Sub cmdOK_Click()
|
|
|
|
useval = True
|
|
|
|
Me.Hide
|
|
|
|
End Sub
|
2023-03-03 14:29:04 -05:00
|
|
|
|
|
|
|
Private Sub UserForm_Activate()
|
|
|
|
useval = False
|
2023-03-09 10:32:58 -05:00
|
|
|
cbPart.list = shSupportingData.ListObjects("ITEM").DataBodyRange.value
|
2023-03-03 14:29:04 -05:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
|