Hello Everybody
prop lame
i am making a access sql helper
and for writing the insert this code
Dim i As Integer
TextBox6.Text &= "Insert Into " & ComboBox2.Text & " ("
For i = 0 To ListBox1.Items.Count - 1
TextBox6.Text &= ListBox1.Items.Item(i).ToString() & ","
Next
TextBox6.Text &= ")"
it works very good
example of the code
Insert Into Contacts (Address,ContactID,FirstName,LastName,)
,
i want to remove this access comma