Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #55.0K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Lee21

As far as I can see this line is where it hangs: sda.Fill(dt) So the only way you can also run a progress bar is to have either this or the progress bar running on another thread. And that's fun. [CODE]Dim th As New System.Threading.Thread(AddressOf [B]YourProgressBarRoutine[/B]) th.SetApartmentState(Threading.ApartmentState.STA) th.Start()[/CODE]

Member Avatar for Lee21
0
2K
Member Avatar for like_bilal02

[I]Dim vr_nos As String = CDbl(vr_mast.vr_no) [/I] That will still cause a problem becos you are still trying to convert a string to a double. So leave out the cdbl and just pull in the full string: [B]Dim vr_nos As String = vr_mast.vr_no[/B] So you have, say, 'cust9' or 'vend9' …

Member Avatar for ShahanDev
0
171
Member Avatar for Scottyyboyy

To write to a csv file simply create a string with the values separated by commas and write it to a text file. x = listboxitem1 & "," & listboxitem2 & "," & listboxitem3 Dim objReader As StreamWriter objReader = New StreamWriter(YourFilePath) objReader.Write(x) objReader.Close() It will then open in Excel …

Member Avatar for Kylua
0
104

The End.