S
Stuart Shay
Hello All
In my DataTable the following data is returned
Object_IDX Object_FullName
48984232 |MS_Net|EUR|Server02
48986409 |MS_Net|EUR|Server21
48990195 |MS_Net|EUR|WKS23
48995964 |MS_Net|EUR|WKS2
48996647 |MS_Net|EUR|Test01
I want to parse out the Object_FullName and create 3 Columns in the
DataTable
Object_IDX Object_FullName Network Domain Host
oDataTable = oDataSet.Tables[0];
oDataTable.Columns.Add("Network",typeof(string));
oDataTable.Columns.Add("Domain",typeof(string));
oDataTable.Columns.Add("Host",typeof(string));
How do populate these Cols?
Results
Object_IDX Object_FullName Network Domain Host
48984232 |MS_Net|EUR|Server02 MS_Net EUR Server02
Thanks
Stuart
In my DataTable the following data is returned
Object_IDX Object_FullName
48984232 |MS_Net|EUR|Server02
48986409 |MS_Net|EUR|Server21
48990195 |MS_Net|EUR|WKS23
48995964 |MS_Net|EUR|WKS2
48996647 |MS_Net|EUR|Test01
I want to parse out the Object_FullName and create 3 Columns in the
DataTable
Object_IDX Object_FullName Network Domain Host
oDataTable = oDataSet.Tables[0];
oDataTable.Columns.Add("Network",typeof(string));
oDataTable.Columns.Add("Domain",typeof(string));
oDataTable.Columns.Add("Host",typeof(string));
How do populate these Cols?
Results
Object_IDX Object_FullName Network Domain Host
48984232 |MS_Net|EUR|Server02 MS_Net EUR Server02
Thanks
Stuart