Click here to Skip to main content
15,894,740 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Stream file saved in Oracle as BLOB to a Windows application Pin
crazylad6-Aug-09 12:15
crazylad6-Aug-09 12:15 
QuestionWhile Debugging Cannot See Whats Going on Application in VS 2008 Pin
εїзεїзεїз4-Aug-09 21:10
εїзεїзεїз4-Aug-09 21:10 
AnswerRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
Eddy Vluggen4-Aug-09 23:46
professionalEddy Vluggen4-Aug-09 23:46 
GeneralRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
εїзεїзεїз5-Aug-09 0:22
εїзεїзεїз5-Aug-09 0:22 
GeneralRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
Adrian Cole5-Aug-09 11:43
Adrian Cole5-Aug-09 11:43 
Questiondatabinding in Grid Pin
jpk4204-Aug-09 19:05
jpk4204-Aug-09 19:05 
AnswerRe: databinding in Grid Pin
dan!sh 4-Aug-09 19:52
professional dan!sh 4-Aug-09 19:52 
AnswerRe: databinding in Grid Pin
Henry Minute4-Aug-09 23:11
Henry Minute4-Aug-09 23:11 
When I code a Setter for a property, I usually do it like this
public int SomeProperty
{
    get
    {
         return this.someField;
    }

    set
    {
        if (this.someField != value)
        {
            this.someField = value;
            // do all sorts of stuff here that only happens if someField has actually changed
            this.Invalidate();
        }
    }
}


and this is probably what is happening in your case. Setting a field to the value that it already holds, results in nothing actually happening.

To solve your problem you really need to use the more complex version of DataBinding which includes change management. So that changes you make to objSapient are automatically reflected by the binding.

Take a look at the documentation for BindingSource, or Google for complex databinding to objects (or similar)

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

QuestionHow to dynamically load images in Crystal Reports in Winform Pin
Nguyen Huong1-Aug-09 16:36
Nguyen Huong1-Aug-09 16:36 
Questionedit or update problem Pin
vinayh31-Jul-09 1:28
vinayh31-Jul-09 1:28 
AnswerRe: edit or update problem Pin
Dave Kreskowiak31-Jul-09 4:15
mveDave Kreskowiak31-Jul-09 4:15 
AnswerRe: edit or update problem Pin
Arindam Sinha1-Aug-09 1:42
Arindam Sinha1-Aug-09 1:42 
Questioncomboboxcontrol on Winform2008 Pin
vinayh30-Jul-09 20:29
vinayh30-Jul-09 20:29 
AnswerRe: comboboxcontrol on Winform2008 Pin
darkelv30-Jul-09 23:54
darkelv30-Jul-09 23:54 
GeneralRe: comboboxcontrol on Winform2008 Pin
vinayh31-Jul-09 0:48
vinayh31-Jul-09 0:48 
GeneralRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak31-Jul-09 4:14
mveDave Kreskowiak31-Jul-09 4:14 
AnswerRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak31-Jul-09 4:13
mveDave Kreskowiak31-Jul-09 4:13 
GeneralRe: comboboxcontrol on Winform2008 Pin
Mycroft Holmes1-Aug-09 23:54
professionalMycroft Holmes1-Aug-09 23:54 
GeneralRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak2-Aug-09 6:14
mveDave Kreskowiak2-Aug-09 6:14 
GeneralRe: comboboxcontrol on Winform2008 Pin
Luc Pattyn2-Aug-09 7:53
sitebuilderLuc Pattyn2-Aug-09 7:53 
Questioncaption/text property of Button control Pin
vinayh30-Jul-09 20:13
vinayh30-Jul-09 20:13 
AnswerRe: caption/text property of Button control Pin
Ashfield31-Jul-09 1:24
Ashfield31-Jul-09 1:24 
AnswerRe: caption/text property of Button control Pin
Dave Kreskowiak31-Jul-09 4:05
mveDave Kreskowiak31-Jul-09 4:05 
AnswerRe: caption/text property of Button control Pin
Arindam Sinha1-Aug-09 1:46
Arindam Sinha1-Aug-09 1:46 
QuestionSDI vs. MDI: Old question, new parameters Pin
pierrecor29-Jul-09 22:30
pierrecor29-Jul-09 22:30 

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.