Forum: VB.NET Dec 6th, 2008 |
| Replies: 10 Views: 43,156 Hi! Wayne The reply that i sent is working on my two forms. Remember the button1 is on the first form and that's where the code goes.
first form button 1
Private Sub Button1_Click(ByVal sender... |
Forum: VB.NET Dec 5th, 2008 |
| Replies: 10 Views: 43,156 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show() 'This code call the second form to be displayed
Me.Hide() '... |
Forum: VB.NET Dec 5th, 2008 |
| Replies: 4 Views: 981 Hi Have you Tried the code below? If not try it.
Form2.Button5.Enabled = False |
Forum: VB.NET Dec 5th, 2008 |
| Replies: 7 Views: 4,171 Hi! according to what i understand you post is that you want to open an mp3 file from a filedialog box. If this is what you mean then do the following
1) Double click on the button that you want... |