Click here to Skip to main content
16,008,469 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to store data from DataGridView to SQL Sever 2005 [modified] Pin
Francis K Antony26-Aug-08 2:57
Francis K Antony26-Aug-08 2:57 
AnswerRe: How to store data from DataGridView to SQL Sever 2005 Pin
D4ever26-Aug-08 9:05
D4ever26-Aug-08 9:05 
QuestionRe: How to store data from DataGridView to SQL Sever 2005 Pin
Francis K Antony26-Aug-08 20:51
Francis K Antony26-Aug-08 20:51 
AnswerRe: How to store data from DataGridView to SQL Sever 2005 Pin
D4ever27-Aug-08 9:21
D4ever27-Aug-08 9:21 
QuestionRe: How to store data from DataGridView to SQL Sever 2005 Pin
Francis K Antony27-Aug-08 20:25
Francis K Antony27-Aug-08 20:25 
AnswerRe: How to store data from DataGridView to SQL Sever 2005 Pin
D4ever28-Aug-08 7:57
D4ever28-Aug-08 7:57 
Questionruntime error 53 - "file not found" Pin
Vikas K.26-Aug-08 2:38
Vikas K.26-Aug-08 2:38 
AnswerRe: runtime error 53 - "file not found" Pin
Manas Bhardwaj26-Aug-08 3:00
professionalManas Bhardwaj26-Aug-08 3:00 
AnswerRe: runtime error 53 - "file not found" Pin
jzonthemtn26-Aug-08 5:47
jzonthemtn26-Aug-08 5:47 
AnswerRe: runtime error 53 - "file not found" Pin
Vikas K.28-Aug-08 0:44
Vikas K.28-Aug-08 0:44 
Questiongetting System.Type object Pin
indian14326-Aug-08 0:34
indian14326-Aug-08 0:34 
AnswerRe: getting System.Type object Pin
Manas Bhardwaj26-Aug-08 0:58
professionalManas Bhardwaj26-Aug-08 0:58 
AnswerRe: getting System.Type object Pin
N a v a n e e t h26-Aug-08 1:15
N a v a n e e t h26-Aug-08 1:15 
GeneralRe: getting System.Type object Pin
indian14326-Aug-08 1:38
indian14326-Aug-08 1:38 
GeneralRe: getting System.Type object Pin
indian14326-Aug-08 5:41
indian14326-Aug-08 5:41 
AnswerRe: getting System.Type object Pin
Guffa26-Aug-08 4:06
Guffa26-Aug-08 4:06 
AnswerRe: getting System.Type object Pin
Polymorpher27-Aug-08 14:19
Polymorpher27-Aug-08 14:19 
Questionsome problem when change C# to VB.net Pin
Golden Jing26-Aug-08 0:21
Golden Jing26-Aug-08 0:21 
AnswerRe: some problem when change C# to VB.net Pin
Manas Bhardwaj26-Aug-08 1:00
professionalManas Bhardwaj26-Aug-08 1:00 
AnswerRe: some problem when change C# to VB.net Pin
Tom Deketelaere26-Aug-08 1:36
professionalTom Deketelaere26-Aug-08 1:36 
1: next time post the error you get
2: before you post here read the error
to few arguments to ... paints a pretty clear picture of what is wrong

3: to solve this

change 'private allstands as list(of integer)' to 'private allstands as list(of list(of integer))

and in the constructor (public sub new in case you do not know)
put the following:

allStands = New List(Of List(Of Integer))
allStands.Add(Stand1plates)
allStands.Add(Stand2plates)
allStands.Add(Stand3plates)

this should work
RantRe: some problem when change C# to VB.net Pin
jzonthemtn26-Aug-08 5:55
jzonthemtn26-Aug-08 5:55 
Questionmaking it possible for VBA macros to store variables at the application scope Pin
fulbright26-Aug-08 0:05
fulbright26-Aug-08 0:05 
QuestionHow to capture the details of visited web site from a computer Pin
yesu prakash25-Aug-08 23:00
yesu prakash25-Aug-08 23:00 
AnswerRe: How to capture the details of visited web site from a computer Pin
jzonthemtn26-Aug-08 8:12
jzonthemtn26-Aug-08 8:12 
QuestionSet focus to Data Grid View Cell using vb.net Pin
~Khatri Mitesh~25-Aug-08 21:51
~Khatri Mitesh~25-Aug-08 21:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.