7.APPENDIX OPERATION B-82604EN/01
- 64 -
if err_type_no = 84 then err_type = "DMDR"
if err_type_no = 85 then err_type = "FRSY"
if err_type_no = 87 then err_type = "FLEX"
if err_type_no = 88 then err_type = "IB-S"
if err_type_no = 89 then err_type = "RTCP"
if err_type_no = 90 then err_type = "TG"
if err_type_no = 92 then err_type = "PROF"
if err_type_no = 93 then err_type = "RPC"
if err_type_no = 95 then err_type = "TSDT"
if err_type_no = 99 then err_type = "ELSE"
err_no = PointGet("ALME_NO[" & Cstr(alm_no) & "]")
err_no_str = PointGet("ALME_MSG[" & Cstr(alm_no) &
"]")
err_num = right$("000" & Cstr(err_no), 3)
If (err_no_str <> "") And (err_no_str <> "R E S E T") And
(err_type <> "") Then
fname = "C:/Diagnostics/alarms/" & err_type &
".htm#" & err_type & "-" & err_num
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate fname
IE.Visible = True
Set IE = Nothing
End If
When the alarm is not RESET, the variable fname is set the file path
created from Alarm ID and Alarm Number, and is given to the
Internet Explorer object.
If you hope to put the HTML contents on the Web Server, create the
URL string from Alarm ID and Alarm Number such as, for example,
“http://192.168.0.1/Diagnostics/alarms/SRVO.htm#SRVO-001”