No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
hi! please try this [code] Dim frmMMF7 As New frmGenerateEtimateP frmMMF7.MdiParent = Me frmMMF7.Show() With frmMMF7 .TabControl1.SelectTab(2) End With [/code]
hi tskmjk! I use the same technique you used and did get the same null values. what i did was format the excel column (in your case your version column in your excel file) into text and it solved the problem.
hi apchidara! here's how I did it using visual studio express and vb.net windows apps. hope you like it [code] Try Dim opn as New OpenFileDialog opn.InitialDirectory = "c:\wheremyfileis\myXLfiles" opn.Filter = "Excel Files (*.xls)|*.xls" opn.FilterIndex = 1 If opn.Showdirectory = Windows.Forms.DialogResult.Ok Then dim sb as system.text.stringbuilder = new system.text.stringbuilder("") sb.append("Provider=Microsoft.Jet.OLEDB.4.0;") …
The End.
rmjagnaan