Forum: VB.NET Mar 11th, 2008 |
| Replies: 2 Views: 774 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: 756 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,528 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,186 Focus
txtBox.Focus
Colour
txtBox.BackColor = Yellow |
Forum: ASP.NET Sep 23rd, 2007 |
| Replies: 1 Views: 7,127 The asp.net comment mark is <%-- and --%>
It would have the same runtime effect as
Setting the Visible Property to False
or
In the page load event textbox1.visible = False |
Forum: VB.NET Jun 20th, 2007 |
| Replies: 2 Views: 3,010 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 |