BananaQuaalude
02-19-2004, 12:21 PM
I am trying to use a msgbox with the following code:
'put All Labor Data into main array
If Not RS_Graph.EOF Then
strAllLaborData = RS_Graph.GetString
arrAllLaborData = Split(strAllLaborData, Chr(13))
else
blnNoData = true
msgBox("No data for the selected report",vbOKOnly,"Report Results")
exit sub
End If
I get the following error:
An exception of type 'Microsoft VBScript runtime error: Permission denied: 'msgBox'' was not handled.
Do I have to change some setting in IIS for this to work? It seems pretty straight forward to me.
?
'put All Labor Data into main array
If Not RS_Graph.EOF Then
strAllLaborData = RS_Graph.GetString
arrAllLaborData = Split(strAllLaborData, Chr(13))
else
blnNoData = true
msgBox("No data for the selected report",vbOKOnly,"Report Results")
exit sub
End If
I get the following error:
An exception of type 'Microsoft VBScript runtime error: Permission denied: 'msgBox'' was not handled.
Do I have to change some setting in IIS for this to work? It seems pretty straight forward to me.
?