Click here to Skip to main content
15,884,629 members

Comments by Wietze Bron (Top 16 by date)

Wietze Bron 17-Nov-14 12:25pm View    
Thanks for your reply, but please read the question.
Wietze Bron 17-Nov-14 12:24pm View    
Thanks for your reply.
The dll in this case is not meant for end-users but for developers.
Does the set-up procedure make the custom controls visible for the developers ?
I thought the advantage of .Net was that you should be able to run your exe or dll from your default folder.
Wietze Bron 16-Nov-14 5:24am View    
Please read the question !
Wietze Bron 24-Jan-13 13:20pm View    
Hi Kishor, thanks for givin it another try.
The code I need to populate my table is as follows:

Dim DBconnection As String
Dim selectCommand As String
Dim da As SqlDataAdapter
Dim bs As New BindingSource()
Dim dgv As New DataGridView
Dim table As New DataTable()

DBconnection = "user id=...."
selectCommand = "select * from ...."

da = New SqlDataAdapter(selectCommand, DBconnection)
da.Fill(table)
bs.DataSource = table
dgv.DataSource = bs

This means I will not be able to add DataColumns individually.
Wietze Bron 23-Jan-13 12:47pm View    
Yes, hence my question in the first place.
Using field numbers also doesn't gain enough in this case.
I am afraid there is no real solution.