Click here to Skip to main content
15,890,123 members
Home / Discussions / C#
   

C#

 
AnswerRe: Unit Test a database update code? Pin
Abhinav S7-Oct-10 22:39
Abhinav S7-Oct-10 22:39 
AnswerRe: Unit Test a database update code? Pin
LLambert8-Oct-10 0:43
LLambert8-Oct-10 0:43 
AnswerRe: Unit Test a database update code? Pin
Richard A. Dalton8-Oct-10 6:00
Richard A. Dalton8-Oct-10 6:00 
QuestionFlowLayourPanel only removes visible control? [modified] Pin
Charles Cox7-Oct-10 16:06
Charles Cox7-Oct-10 16:06 
AnswerRe: FlowLayourPanel only removes visible control? Pin
Luc Pattyn7-Oct-10 16:30
sitebuilderLuc Pattyn7-Oct-10 16:30 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Charles Cox7-Oct-10 16:46
Charles Cox7-Oct-10 16:46 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Luc Pattyn7-Oct-10 16:53
sitebuilderLuc Pattyn7-Oct-10 16:53 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Charles Cox7-Oct-10 17:03
Charles Cox7-Oct-10 17:03 
I rework of the methods for loop seems to make it work. Rather than incrementing through the collection I start at the end and work my way down.

public void RemovePictures()
{
    ControlCollection controls = this.flpPanel.Controls;
    PictureBox pb;
    for (int i = controls.Count -1; i > -1 ; i--)
    {
        pb = (PictureBox)controls[i];
        pb.Image = null;
        this.flpPanel.Controls.Remove(pb);
    }
}



I am still unsure what you mean by disposing the Image of the PB. Aside from the fact that the variable used to assign it to the PB already being disposed each time its used in the Add method.

Is what I have done above (setting it to null) what you mean?
GeneralRe: FlowLayourPanel only removes visible control? Pin
Luc Pattyn7-Oct-10 17:16
sitebuilderLuc Pattyn7-Oct-10 17:16 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Charles Cox7-Oct-10 17:24
Charles Cox7-Oct-10 17:24 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Luc Pattyn7-Oct-10 17:29
sitebuilderLuc Pattyn7-Oct-10 17:29 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Charles Cox7-Oct-10 17:33
Charles Cox7-Oct-10 17:33 
GeneralRe: FlowLayourPanel only removes visible control? Pin
Luc Pattyn7-Oct-10 17:36
sitebuilderLuc Pattyn7-Oct-10 17:36 
QuestionHow to present an openning screen (form) in C# application? Pin
Shultz 27-Oct-10 9:23
Shultz 27-Oct-10 9:23 
AnswerRe: How to present an openning screen (form) in C# application? Pin
Ian Shlasko7-Oct-10 9:40
Ian Shlasko7-Oct-10 9:40 
GeneralRe: How to present an openning screen (form) in C# application? Pin
Luc Pattyn7-Oct-10 9:59
sitebuilderLuc Pattyn7-Oct-10 9:59 
GeneralRe: How to present an openning screen (form) in C# application? Pin
Shultz 27-Oct-10 10:55
Shultz 27-Oct-10 10:55 
GeneralRe: How to present an openning screen (form) in C# application? Pin
Luc Pattyn7-Oct-10 11:01
sitebuilderLuc Pattyn7-Oct-10 11:01 
GeneralRe: How to present an openning screen (form) in C# application? Pin
Shultz 27-Oct-10 13:07
Shultz 27-Oct-10 13:07 
GeneralRe: How to present an openning screen (form) in C# application? Pin
Luc Pattyn7-Oct-10 13:24
sitebuilderLuc Pattyn7-Oct-10 13:24 
AnswerRe: How to present an openning screen (form) in C# application? Pin
#realJSOP7-Oct-10 23:39
mve#realJSOP7-Oct-10 23:39 
QuestionAdd in module Pin
Wamuti7-Oct-10 6:28
Wamuti7-Oct-10 6:28 
AnswerRe: Add in module Pin
Nish Nishant7-Oct-10 8:19
sitebuilderNish Nishant7-Oct-10 8:19 
AnswerRe: Add in module Pin
Kelvin Armstrong7-Oct-10 11:03
Kelvin Armstrong7-Oct-10 11:03 
AnswerRe: Add in module Pin
Chris Trelawny-Ross7-Oct-10 11:33
Chris Trelawny-Ross7-Oct-10 11:33 

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.