| Line 61... |
Line 61... |
| 61 |
Sub RenderDaemonStatusForRelease(irtag_id,isize)
|
61 |
Sub RenderDaemonStatusForRelease(irtag_id,isize)
|
| 62 |
Call GetDaemonStatusForRelease(irtag_id)
|
62 |
Call GetDaemonStatusForRelease(irtag_id)
|
| 63 |
Call RenderDaemonStatus(irtag_id,isize)
|
63 |
Call RenderDaemonStatus(irtag_id,isize)
|
| 64 |
End Sub
|
64 |
End Sub
|
| 65 |
|
65 |
|
| 66 |
'--------------------------------------------------------------------------------------------------------------------------
|
- |
|
| 67 |
' Like Cint, but handles NULL by replacing it with a default value
|
- |
|
| 68 |
Function NiceInt( val, def)
|
- |
|
| 69 |
If isNull(val) Then
|
- |
|
| 70 |
NiceInt = def
|
- |
|
| 71 |
Else
|
- |
|
| 72 |
NiceInt = CInt(val)
|
- |
|
| 73 |
End If
|
- |
|
| 74 |
End Function
|
- |
|
| 75 |
|
- |
|
| 76 |
'----------------------------------------------------------------------------------------------------------------------------------------------
|
66 |
'----------------------------------------------------------------------------------------------------------------------------------------------
|
| 77 |
' Gets the daemon summary for a specified release
|
67 |
' Gets the daemon summary for a specified release
|
| 78 |
' Parameters:
|
68 |
' Parameters:
|
| 79 |
' irtag_id: the specified release
|
69 |
' irtag_id: the specified release
|
| 80 |
' Assumes GetDaemonStatus or GetDaemonStatusForRelease has already been called
|
70 |
' Assumes GetDaemonStatus or GetDaemonStatusForRelease has already been called
|