Advertisement
Advertisement
| 07.14.2008 at 11:31PM PDT, ID: 23565159 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: |
' If we are unable to connect display a red error message
' If we are connected then display a blue message
If ConnectionStatus = False Then
Label5.Text = "Unable to connect to the database"
Label5.ForeColor = Color.Red
ConnectionStatus = False
MDIParent1.ReportsToolStripMenuItem.Enabled = False
ElseIf ConnectionStatus = True Then
Label5.Text = "You are connected to the database"
Label5.ForeColor = Color.Blue
Write_Database_XML_Doc()
ConnectionStatus = True
MDIParent1.ReportsToolStripMenuItem.Enabled = True
End If
|