Skip to main content

Posts

Showing posts from August, 2019

Pop Up message Visual Studio "The operation could not be completed. The process cannot access the file because it is being used by another process"

Run your Visual Studio as Administrator account

Parent Child Data VB.Net

                                Dim DS_ParentChild As New DataSet()                 DS_ParentChild.Tables.Add(DTMaterial)                 DS_ParentChild.Tables.Add(DTChild)                 'Relation                 DS_ParentChild.Relations.Add("MODEL",                                              DTMaterial.Columns("CODE"),                                              DTChild.Columns("CHILD")                                              )                 .DataSource = DS_ParentChild                 .ActiveSheet.Columns(0).DataField = "CODE"