Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.3K
~1K People Reached
Favorite Forums

3 Posted Topics

Member Avatar for laghaterohan

hi! please try this [code] Dim frmMMF7 As New frmGenerateEtimateP frmMMF7.MdiParent = Me frmMMF7.Show() With frmMMF7 .TabControl1.SelectTab(2) End With [/code]

Member Avatar for rmjagnaan
0
125
Member Avatar for tskmjk

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.

Member Avatar for rmjagnaan
0
165
Member Avatar for apchidara

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;") …

Member Avatar for rmjagnaan
0
962

The End.