hey guys i have an xml file that contains the structure and records of my database. i want to get the data from the xml file and insert it to ms access. i can already read and get the tables, columns and data type from the xml file (im not using dataset). also i can already create table and add...
i have already connected to MySQL database and was also able to list the databases i have in a combox in vb, but i got stuck up in listing tables from mysql database into a listview in vb.net
here are my codes:
sql = "show tables from " & dbName
mycommand.connection = conn...
I have this code:
Private Sub btnSummary_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSummary.Click
For Each element As RadioButton In grpCPU.Controls
If (element.Checked = True) Then
Me.lstDisplay.Items.Add(element.Text)...