Click here to Skip to main content
15,867,453 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionDRAG & DROP LABELS SWAP Pin
User 871522210-May-12 0:57
professionalUser 871522210-May-12 0:57 
AnswerRe: DRAG & DROP LABELS SWAP Pin
Dave Kreskowiak10-May-12 2:21
mveDave Kreskowiak10-May-12 2:21 
AnswerRe: DRAG & DROP LABELS SWAP Pin
User 871522210-May-12 23:11
professionalUser 871522210-May-12 23:11 
QuestionGet currency conversion from website Pin
wouterv819-May-12 13:33
wouterv819-May-12 13:33 
AnswerRe: Get currency conversion from website Pin
Dave Kreskowiak9-May-12 18:44
mveDave Kreskowiak9-May-12 18:44 
QuestionThis row already belongs to this table error Pin
rusydan.khir9-May-12 7:03
rusydan.khir9-May-12 7:03 
AnswerRe: This row already belongs to this table error Pin
Dave Kreskowiak9-May-12 10:23
mveDave Kreskowiak9-May-12 10:23 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 18:27
rusydan.khir9-May-12 18:27 
actually this is only some part of the code..
I have table name Seat..in the table have 3 columns named SID, MovieID and Seat.

Actually i want to save the the word to the tables..
Splitword(1) to the MovieID column..
Splitword(2),splitword(3) and so on in the column "seat" with same value Splitword(1) on movieID.

The code as below..but i got "This row is already belongs to this table"..so, what should i do??

Dim SeatNewRow As DataRow
Dim index As Integer = 2
Dim testsplit As String = "Book 9 j18 d7 d8 a9"
Dim SplitWord() As String = testsplit.Split(" ")
SeatNewRow = SeatDS.Tables("Seat").NewRow()
Dim wc As Integer = SplitWord.Length - 1
Do While index <= wc

SeatNewRow.Item("MovieID") = SplitWord(1)
SeatNewRow.Item("Seat") = SplitWord(index)

SeatDS.Tables("Seat").Rows.Add(SeatNewRow)
index += 1
Loop

SeatDA.Update(SeatDS, "Seat")
..
VB


GeneralRe: This row already belongs to this table error Pin
Dave Kreskowiak9-May-12 18:46
mveDave Kreskowiak9-May-12 18:46 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 18:49
rusydan.khir9-May-12 18:49 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 19:01
rusydan.khir9-May-12 19:01 
Questionstrange behavior on adding controls to a form Pin
Ahmad_kelany8-May-12 22:22
Ahmad_kelany8-May-12 22:22 
AnswerRe: strange behavior on adding controls to a form Pin
Dave Kreskowiak9-May-12 10:20
mveDave Kreskowiak9-May-12 10:20 
QuestionHow can I get a sender object of a control handle in VB.net? Pin
Member 37460768-May-12 13:27
Member 37460768-May-12 13:27 
AnswerRe: How can I get a sender object of a control handle in VB.net? Pin
Midnight Ahri8-May-12 15:16
Midnight Ahri8-May-12 15:16 
GeneralRe: How can I get a sender object of a control handle in VB.net? Pin
Member 37460769-May-12 6:55
Member 37460769-May-12 6:55 
AnswerRe: How can I get a sender object of a control handle in VB.net? Pin
Eddy Vluggen9-May-12 0:10
professionalEddy Vluggen9-May-12 0:10 
GeneralRe: How can I get a sender object of a control handle in VB.net? Pin
Member 37460769-May-12 7:06
Member 37460769-May-12 7:06 
AnswerRe: How can I get a sender object of a control handle in VB.net? Pin
Eddy Vluggen9-May-12 7:19
professionalEddy Vluggen9-May-12 7:19 
GeneralRe: How can I get a sender object of a control handle in VB.net? Pin
Member 37460769-May-12 7:16
Member 37460769-May-12 7:16 
Questionabout datagridview in vb.net ?? Pin
Ahmad_kelany8-May-12 9:57
Ahmad_kelany8-May-12 9:57 
AnswerRe: about datagridview in vb.net ?? Pin
JohnPayton8-May-12 12:52
JohnPayton8-May-12 12:52 
GeneralRe: about datagridview in vb.net ?? Pin
Ahmad_kelany8-May-12 20:52
Ahmad_kelany8-May-12 20:52 
QuestionCombobox List population Pin
Carl J Shoup8-May-12 8:35
Carl J Shoup8-May-12 8:35 
AnswerRe: Combobox List population Pin
Jörgen Andersson9-May-12 4:04
professionalJörgen Andersson9-May-12 4:04 

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.