Forum: VB.NET Mar 11th, 2008 |
| Replies: 2 Views: 779 Hi,
Open "Visual Studio"
Select "Tools > Options"
Tick "Show all Settings" (Lower Left)
Select "Debugging"
Select "Just-in-Time"
... |
Forum: VB.NET Nov 14th, 2007 |
| Replies: 4 Views: 757 It is your IfsIf * Then
'Do This
Else
'Or Do This
End If
'AND
If *2 Then
'Do This
Else
'Or Do This |
Forum: VB.NET Nov 8th, 2007 |
| Replies: 2 Views: 7,626 You will need to add the extra spaces to make up the gapsDim fmtstr As String = "{0,-10}{1,12}{2,14}"
With lstservices.Items
.Clear()
.Add(String.Format(fmtstr, "Room Rentals ",... |
Forum: VB.NET Oct 10th, 2007 |
| Replies: 2 Views: 7,306 Focus
txtBox.Focus
Colour
txtBox.BackColor = Yellow |
Forum: VB.NET Jun 20th, 2007 |
| Replies: 2 Views: 3,041 I have found the solution
Dim assem As Reflection.Assembly = Me.GetType.Assembly
Dim frm As Form = assem.CreateInstance(assem.GetName.Name & ".frmMaint")
frm.Show()
Thanks |