price volume colors

This commit is contained in:
pt 2020-03-06 00:32:12 -05:00
parent 7e57d4621f
commit 19021da028
2 changed files with 38 additions and 4 deletions

View File

@ -4,7 +4,7 @@ Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} fpvt
ClientHeight = 8445.001 ClientHeight = 8445.001
ClientLeft = 120 ClientLeft = 120
ClientTop = 465 ClientTop = 465
ClientWidth = 9285.001 ClientWidth = 8940.001
OleObjectBlob = "fpvt.frx":0000 OleObjectBlob = "fpvt.frx":0000
StartUpPosition = 1 'CenterOwner StartUpPosition = 1 'CenterOwner
End End
@ -97,8 +97,9 @@ Private Sub butAdjust_Click()
Exit Sub Exit Sub
End If End If
Case Else Case Else
MsgBox ("not on an adjustable tab") doc = tbAPI.text
Exit Sub 'MsgBox ("not on an adjustable tab")
'Exit Sub
End Select End Select
Call handler.request_adjust(doc, fail) Call handler.request_adjust(doc, fail)
@ -434,10 +435,31 @@ End Sub
Private Sub opPlugPrice_Click() Private Sub opPlugPrice_Click()
calc_val calc_val
If opPlugPrice.value = True Then
opPlugPrice.BackColor = -2147483624
Else
opPlugPrice.BackColor = -2147483644
End If
If opPlugVol.value = True Then
opPlugVol.BackColor = -2147483624
Else
opPlugVol.BackColor = -2147483644
End If
End Sub End Sub
Private Sub opPlugVol_Click() Private Sub opPlugVol_Click()
calc_val calc_val
If opPlugVol.value = True Then
opPlugVol.BackColor = -2147483624
Else
opPlugVol.BackColor = -2147483644
End If
If opPlugPrice.value = True Then
opPlugPrice.BackColor = -2147483624
Else
opPlugPrice.BackColor = -2147483644
End If
End Sub End Sub
Private Sub sbpd_Change() Private Sub sbpd_Change()
@ -737,6 +759,18 @@ Private Sub UserForm_Activate()
pickSWAP.list = Application.transpose(Worksheets("mdata").Range("F2:F1672")) pickSWAP.list = Application.transpose(Worksheets("mdata").Range("F2:F1672"))
Call x.frmListBoxHeader(Me.lbSWAPH, Me.lbSWAP, "Original", "Sales", "Replacement", "Fit") Call x.frmListBoxHeader(Me.lbSWAPH, Me.lbSWAP, "Original", "Sales", "Replacement", "Fit")
'---------price volume radio button colors----------
If opPlugPrice.value = True Then
opPlugPrice.BackColor = -2147483624
Else
opPlugPrice.BackColor = -2147483644
End If
If opPlugVol.value = True Then
opPlugVol.BackColor = -2147483624
Else
opPlugVol.BackColor = -2147483644
End If
Call handler.month_tosheet(month, basket) Call handler.month_tosheet(month, basket)
Application.StatusBar = False Application.StatusBar = False
@ -771,7 +805,7 @@ Sub crunch_array()
ReDim mload(UBound(month, 1), 5) ReDim mload(UBound(month, 1), 5)
For i = 0 To UBound(month, 1) For i = 0 To UBound(month, 1)
mload(i, 0) = Format(month(i, 0), "#,###") mload(i, 0) = month(i, 0)
mload(i, 1) = Format(month(i, 1), "#,###") mload(i, 1) = Format(month(i, 1), "#,###")
mload(i, 2) = Format(month(i, 4), "#,###") mload(i, 2) = Format(month(i, 4), "#,###")
mload(i, 3) = Format(month(i, 5), "#,###") mload(i, 3) = Format(month(i, 5), "#,###")

BIN
fpvt.frx

Binary file not shown.