Click here to Skip to main content
15,919,423 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Using VB .NET to Generate An E-mail Automatically Pin
Dave Kreskowiak25-Oct-07 4:43
mveDave Kreskowiak25-Oct-07 4:43 
QuestionAccess database size is increasing Pin
dimuthuvbnet25-Oct-07 3:22
dimuthuvbnet25-Oct-07 3:22 
AnswerRe: Access database size is increasing Pin
Tom Deketelaere25-Oct-07 3:30
professionalTom Deketelaere25-Oct-07 3:30 
AnswerRe: Access database size is increasing Pin
Dave Kreskowiak25-Oct-07 4:02
mveDave Kreskowiak25-Oct-07 4:02 
QuestionBinding Navigator Binding Problem Pin
SekharOne25-Oct-07 2:40
SekharOne25-Oct-07 2:40 
AnswerRe: Binding Navigator Binding Problem Pin
Dave Kreskowiak25-Oct-07 4:36
mveDave Kreskowiak25-Oct-07 4:36 
GeneralRe: Binding Navigator Binding Problem Pin
SekharOne25-Oct-07 18:30
SekharOne25-Oct-07 18:30 
GeneralRe: Binding Navigator Binding Problem Pin
Dave Kreskowiak26-Oct-07 2:12
mveDave Kreskowiak26-Oct-07 2:12 
SekharOne wrote:
I wanted to know when the bindingsource's binding data getting completed.


There's no way to know that. The BindingCompleted event fires for EACH field in the row, not when the entire row is done all at once.

SekharOne wrote:
the textbox's value gets changed and so does the value of the boolean variable.


Why are you using the Textchanged events of the TextBox's?? You don't have to.

SekharOne wrote:
and when the user clicks on the next,previous buttons it should track whether data on the form has changed or not.


I showed you that. It fires when any field in the current row changes.

SekharOne wrote:
And if changed it should ask the question.


This I misunderstood. The changes you make in the textboxes get made to the underlying DataSet. Unless you want to commit the changes to the database while leaving each changed row, you would normally just track if the dataSet is dirty and needs to be written back. Doing this on every change to the dataset would be a bit excessive.

But, if this is what you want, then you reset the dirty flag only after you call Update on the DataAdapter and write the changes back to the database.



A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


QuestionUDL Files in Vb.net Pin
Saftaj25-Oct-07 0:29
Saftaj25-Oct-07 0:29 
AnswerRe: UDL Files in Vb.net Pin
Dave Kreskowiak25-Oct-07 3:40
mveDave Kreskowiak25-Oct-07 3:40 
GeneralRe: UDL Files in Vb.net Pin
Saftaj25-Oct-07 22:02
Saftaj25-Oct-07 22:02 
GeneralRe: UDL Files in Vb.net Pin
Dave Kreskowiak26-Oct-07 2:33
mveDave Kreskowiak26-Oct-07 2:33 
QuestionHow to create Properties Dynamically in Property grid Pin
Anuradha61225-Oct-07 0:15
Anuradha61225-Oct-07 0:15 
AnswerRe: How to create Properties Dynamically in Property grid Pin
Dave Kreskowiak25-Oct-07 3:37
mveDave Kreskowiak25-Oct-07 3:37 
AnswerRe: How to create Properties Dynamically in Property grid Pin
visualhint25-Oct-07 5:32
visualhint25-Oct-07 5:32 
GeneralRe: How to create Properties Dynamically in Property grid Pin
Dave Kreskowiak25-Oct-07 6:20
mveDave Kreskowiak25-Oct-07 6:20 
GeneralRe: How to create Properties Dynamically in Property grid Pin
visualhint25-Oct-07 6:36
visualhint25-Oct-07 6:36 
GeneralRe: How to create Properties Dynamically in Property grid Pin
Dave Kreskowiak25-Oct-07 7:03
mveDave Kreskowiak25-Oct-07 7:03 
AnswerRe: How to create Properties Dynamically in Property grid Pin
darkelv25-Oct-07 17:19
darkelv25-Oct-07 17:19 
GeneralRe: How to create Properties Dynamically in Property grid Pin
visualhint26-Oct-07 2:45
visualhint26-Oct-07 2:45 
QuestionPopulate Property Grid with Datatable rows Pin
danasegaranea24-Oct-07 23:10
danasegaranea24-Oct-07 23:10 
AnswerRe: Populate Property Grid with Datatable rows Pin
Dave Kreskowiak25-Oct-07 3:36
mveDave Kreskowiak25-Oct-07 3:36 
AnswerRe: Populate Property Grid with Datatable rows Pin
visualhint25-Oct-07 5:35
visualhint25-Oct-07 5:35 
GeneralRe: Populate Property Grid with Datatable rows Pin
danasegaranea25-Oct-07 18:20
danasegaranea25-Oct-07 18:20 
GeneralRe: Populate Property Grid with Datatable rows Pin
visualhint26-Oct-07 2:48
visualhint26-Oct-07 2:48 

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.