Forum: VB.NET Jun 24th, 2008 |
| Replies: 10 Views: 3,687 You can try creating your own Control and define the events and properties as you want them to be.
I guess that will help you as you seem to need multiple 'blinking' buttons. |
Forum: VB.NET Jun 24th, 2008 |
| Replies: 3 Views: 2,741 This is how I did it-
Public Class Form4
Private Sub Form4_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cn As New... |
Forum: VB.NET Jun 21st, 2008 |
| Replies: 3 Views: 589 You may try to make an MDI and then create instances for your individual forms. |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 5 Views: 867 I suggest you use the same Command Object (cmd) , the same Adapter (adp) and the same Dataset (ds) in the code for event Form3_VisibleChanged.
Try it and let me know if it worked. |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 5 Views: 867 Are you getting any error messages?
Could you post them and the line numbers? |
Forum: VB.NET Jun 15th, 2008 |
| Replies: 1 Views: 1,123 Well the number of rows really do not matter.
In the code that I have posted below, I hold the number of rows in a variable named total.
I have chosen to extract the contents of the first... |
Forum: VB.NET Jun 15th, 2008 |
| Replies: 6 Views: 9,324 let us say you have a login button on the registration form which gets enabled on validation of registration details.
code for login button- form2.showdialog()
in the form_load for the 2nd... |