Click here to Skip to main content
15,915,852 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Error updating Dataset to Reflect into the Original Table Pin
Dave Kreskowiak6-Jun-07 16:30
mveDave Kreskowiak6-Jun-07 16:30 
QuestionProgress indicator Pin
DanB19834-Jun-07 3:56
DanB19834-Jun-07 3:56 
AnswerRe: Progress indicator Pin
Dave Kreskowiak4-Jun-07 6:38
mveDave Kreskowiak4-Jun-07 6:38 
AnswerRe: Progress indicator Pin
Thomas Stockwell4-Jun-07 8:22
professionalThomas Stockwell4-Jun-07 8:22 
QuestionVBA Excel Help Pin
Duane in Japan4-Jun-07 3:50
Duane in Japan4-Jun-07 3:50 
QuestionAfter sorting in a DataGridView the Row.EndEdit causes row change Pin
Marcus J. Smith4-Jun-07 2:36
professionalMarcus J. Smith4-Jun-07 2:36 
AnswerRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Dave Kreskowiak4-Jun-07 9:01
mveDave Kreskowiak4-Jun-07 9:01 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Marcus J. Smith4-Jun-07 9:17
professionalMarcus J. Smith4-Jun-07 9:17 
Dave Kreskowiak wrote:
Why are you setting the values in the data in code? Why not just bind theTextBox to the fields?


They are bound but I guess Im not sure how to apply those changes except for changing rows.
Dim searchKeys() As String = {value1, value2, value3} 

            Dim updateRow As DataRow = DsCirculars1.tblAPCirculars.Rows.Find(searchKeys)
            Try
                With updateRow
                    .BeginEdit()
                    .Item("FirstName") = uxFirstName.Text
                    .Item("LastName") = uxLastName.Text
                    .Item("Address") = uxAddress.Text
                    .Item("City") = uxCity.Text
                    .Item("State") = State.Text
                    .Item("ZipCode") = uxZipCode.Text
                    .EndEdit()
                End With
This does work when there is no column sorted and only causes the row to change if I change a value that is within that column.


CleaKO

"Now, a man would have opened both gates, driven through and not bothered to close either gate." - Marc Clifton (The Lounge)

GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Dave Kreskowiak4-Jun-07 10:24
mveDave Kreskowiak4-Jun-07 10:24 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Marcus J. Smith4-Jun-07 10:56
professionalMarcus J. Smith4-Jun-07 10:56 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Dave Kreskowiak4-Jun-07 13:38
mveDave Kreskowiak4-Jun-07 13:38 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Marcus J. Smith5-Jun-07 2:26
professionalMarcus J. Smith5-Jun-07 2:26 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Marcus J. Smith5-Jun-07 8:09
professionalMarcus J. Smith5-Jun-07 8:09 
GeneralRe: After sorting in a DataGridView the Row.EndEdit causes row change Pin
Dave Kreskowiak6-Jun-07 16:36
mveDave Kreskowiak6-Jun-07 16:36 
QuestionDataSet writing errors with code Pin
Quecumber2564-Jun-07 2:26
Quecumber2564-Jun-07 2:26 
AnswerRe: DataSet writing errors with code Pin
Sathesh Sakthivel4-Jun-07 3:12
Sathesh Sakthivel4-Jun-07 3:12 
GeneralRe: DataSet writing errors with code Pin
Quecumber2564-Jun-07 4:53
Quecumber2564-Jun-07 4:53 
GeneralRe: DataSet writing errors with code Pin
Marcus J. Smith4-Jun-07 9:20
professionalMarcus J. Smith4-Jun-07 9:20 
GeneralRe: DataSet writing errors with code Pin
Quecumber2564-Jun-07 10:17
Quecumber2564-Jun-07 10:17 
Questionvb.net Pin
srinivassam4-Jun-07 2:01
srinivassam4-Jun-07 2:01 
AnswerRe: vb.net Pin
kubben4-Jun-07 2:26
kubben4-Jun-07 2:26 
AnswerRe: vb.net Pin
Christian Graus4-Jun-07 2:52
protectorChristian Graus4-Jun-07 2:52 
Questiona question about row-index Pin
vbbeg4-Jun-07 1:47
vbbeg4-Jun-07 1:47 
AnswerRe: a question about row-index Pin
Dave Kreskowiak4-Jun-07 4:06
mveDave Kreskowiak4-Jun-07 4:06 
GeneralRe: a question about row-index Pin
vbbeg4-Jun-07 4:56
vbbeg4-Jun-07 4:56 

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.