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
|
sSheetName = oRange.getSpreadsheet.getName
|
||||||
If oSheets.hasByName (sSheetName & "_correl") Then
|
If oSheets.hasByName (sSheetName & "_correl") Then
|
||||||
sExisted = "Spreadsheet """ & sSheetName & "_correl"" exists. Overwrite?"
|
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
|
If nResult = IDNO Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
@ -45,7 +45,7 @@ Sub subRunPairedTTest As Object
|
|||||||
sSheetName = oRange.getSpreadsheet.getName
|
sSheetName = oRange.getSpreadsheet.getName
|
||||||
If oSheets.hasByName (sSheetName & "_ttest") Then
|
If oSheets.hasByName (sSheetName & "_ttest") Then
|
||||||
sExisted = "Spreadsheet """ & sSheetName & "_ttest"" exists. Overwrite?"
|
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
|
If nResult = IDNO Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
@ -57,7 +57,7 @@ Sub subRunIndependentTTest As Object
|
|||||||
Else
|
Else
|
||||||
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
||||||
End If
|
End If
|
||||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||||
If nResult = IDNO Then
|
If nResult = IDNO Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
@ -57,7 +57,7 @@ Sub subRunANOVA As Object
|
|||||||
Else
|
Else
|
||||||
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
sExisted = "Spreadsheet " & sExisted & " exists. Overwrite?"
|
||||||
End If
|
End If
|
||||||
nResult = MsgBox(sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
nResult = MsgBox (sExisted, MB_YESNO + MB_DEFBUTTON2 + MB_ICONQUESTION)
|
||||||
If nResult = IDNO Then
|
If nResult = IDNO Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
@ -45,7 +45,7 @@ Sub subRunChi2GoodnessOfFit As Object
|
|||||||
sSheetName = oRange.getSpreadsheet.getName
|
sSheetName = oRange.getSpreadsheet.getName
|
||||||
If oSheets.hasByName (sSheetName & "_chi2") Then
|
If oSheets.hasByName (sSheetName & "_chi2") Then
|
||||||
sExisted = "Spreadsheet """ & sSheetName & "_chi2"" exists. Overwrite?"
|
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
|
If nResult = IDNO Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
Loading…
Reference in New Issue
Block a user