-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathForm_CFATable.frm
60 lines (50 loc) · 1.54 KB
/
Form_CFATable.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} Form_CFATable
Caption = "Confirmatory Factor Analysis"
ClientHeight = 6825
ClientLeft = 120
ClientTop = 465
ClientWidth = 8625
OleObjectBlob = "Form_CFATable.frx":0000
StartUpPosition = 1 'CenterOwner
End
Attribute VB_Name = "Form_CFATable"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public execute As Boolean
Public FitStats As String
Private Sub ModelFit_Click()
Call change_note
End Sub
Private Sub PVal_Click()
Call change_note
End Sub
Private Sub StandNum_Change()
If StandNum.ListIndex > 0 Then
Heading2 = "Standardized Factor Loadings for the Measurement Model"
Else
Heading2 = "Unstandardized Factor Loadings for the Measurment Model"
End If
End Sub
Private Sub UserForm_Initialize()
execute = False
CoefAction.AddItem ("")
CoefAction.AddItem ("Hide coefficients below this size")
CoefAction.AddItem ("Bold coefficients above this size")
CoefAction.ListIndex = 0
End Sub
Private Sub UserForm_Activate()
Call change_note
End Sub
Private Sub CommandButton1_Click()
If IsNumeric(HideBelow) = False Then HideBelow = ""
execute = True
Me.Hide
End Sub
Private Sub change_note()
Note = "Note. "
If PVal.Value = True Then Note = Note & "* p < .05, ** p < .01, *** p < .001. "
If ModelFit = True And FitStats <> "" Then Note = Note & "Model Fit: " & FitStats
End Sub