Fixed styles (added a space after MsgBox and the following open parenthesis.)
This commit is contained in:
parent
38f767c386
commit
c81698e63a
@ -45,7 +45,7 @@ Sub subRunCorrelation As Object
|
||||
sSheetName = oRange.getSpreadsheet.getName
|
||||
If oSheets.hasByName (sSheetName & "_correl") Then
|
||||
sExisted = "Spreadsheet """ & sSheetName & "_correl"" exists. Overwrite?"
|
||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
If nResult = IDNO Then
|
||||
Exit Sub
|
||||
End If
|
||||
|
@ -45,7 +45,7 @@ Sub subRunPairedTTest As Object
|
||||
sSheetName = oRange.getSpreadsheet.getName
|
||||
If oSheets.hasByName (sSheetName & "_ttest") Then
|
||||
sExisted = "Spreadsheet """ & sSheetName & "_ttest"" exists. Overwrite?"
|
||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
If nResult = IDNO Then
|
||||
Exit Sub
|
||||
End If
|
||||
|
@ -57,7 +57,7 @@ Sub subRunIndependentTTest As Object
|
||||
Else
|
||||
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
||||
End If
|
||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
If nResult = IDNO Then
|
||||
Exit Sub
|
||||
End If
|
||||
|
@ -57,7 +57,7 @@ Sub subRunANOVA As Object
|
||||
Else
|
||||
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
||||
End If
|
||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
If nResult = IDNO Then
|
||||
Exit Sub
|
||||
End If
|
||||
|
@ -45,7 +45,7 @@ Sub subRunChi2GoodnessOfFit As Object
|
||||
sSheetName = oRange.getSpreadsheet.getName
|
||||
If oSheets.hasByName (sSheetName & "_chi2") Then
|
||||
sExisted = "Spreadsheet """ & sSheetName & "_chi2"" exists. Overwrite?"
|
||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||
If nResult = IDNO Then
|
||||
Exit Sub
|
||||
End If
|
||||
|
Loading…
Reference in New Issue
Block a user