Making a close form button in visual basic 6
Closed
gurumanyu
EdoubleU
- Posts
- 2
- Registration date
- Monday October 26, 2015
- Status
- Member
- Last seen
- October 26, 2015
EdoubleU
- Posts
- 109
- Registration date
- Friday August 28, 2015
- Status
- Contributor
- Last seen
- November 3, 2015
Related:
- The visual basic for applications project in the database is corrupted
- Visual basic 6.0 projects with ms access database pdf - Download
- How to connect microsoft access database to visual basic 6.0 pdf - Guide
- Microsoft visual basic 6.0 download - Download
- How do I fix a corrupted MS Access database? ✓ - Forum - Software
- Visual basic editor download - Download
1 reply
EdoubleU
Oct 26, 2015 at 07:29 AM
- Posts
- 109
- Registration date
- Friday August 28, 2015
- Status
- Contributor
- Last seen
- November 3, 2015
Oct 26, 2015 at 07:29 AM
All you should have to do is write this in the event handler for your your button.
this.Close();
this.Close();
Oct 26, 2015 at 07:36 AM
Private Sub BtnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnClose.Click Me.Close() End Sub