Imports System.Drawing
Imports System.Windows.Forms
Public Class Class1
Dim CwMsgBox As New Form
Public Sub New()
Dim BtnSQL As New Button
Dim BtnLegacy As New Button
Dim BtnBoth As New Button
BtnBoth.Text = "Export To SQL and Legacy Access DB's"
BtnSQL.Text = "Export To SQL Server DB's"
BtnLegacy.Text = "Export To Legacy Acess DB's"
BtnBoth.Location = New Point(279, 45)
BtnLegacy.Location = New Point(29, 45)
BtnSQL.Location = New Point(152, 45)
CwMsgBox.Size = New System.Drawing.Size(400, 200)
CwMsgBox.Location = New System.Drawing.Point(0, 0)
CwMsgBox.Controls.Add(BtnSQL)
CwMsgBox.Controls.Add(BtnLegacy)
CwMsgBox.Controls.Add(BtnBoth)
End Sub
Private Sub BtnSQL_Click(sender As Object, e As EventArgs) Handles BtnSQL.Click
End Sub
Private Sub BtnBoth_Click(sender As Object, e As EventArgs) Handles BtnBoth.Click
End Sub
Private Sub BtnLegacy_Click(sender As Object, e As EventArgs) Handles BtnLegacy.Click
End Sub
End Class
Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.