Click here to Skip to main content
15,898,035 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to start method after another one finishes (Thread) Pin
choopie3-Apr-07 2:28
choopie3-Apr-07 2:28 
GeneralRe: How to start method after another one finishes (Thread) Pin
choopie3-Apr-07 2:30
choopie3-Apr-07 2:30 
AnswerRe: How to start method after another one finishes (Thread) Pin
Bijesh3-Apr-07 2:38
Bijesh3-Apr-07 2:38 
GeneralRe: How to start method after another one finishes (Thread) Pin
choopie3-Apr-07 2:57
choopie3-Apr-07 2:57 
Questionhow to see raw xml in webservices Pin
turgut eren3-Apr-07 1:32
turgut eren3-Apr-07 1:32 
AnswerRe: how to see raw xml in webservices Pin
Marek Grzenkowicz3-Apr-07 3:46
Marek Grzenkowicz3-Apr-07 3:46 
QuestionDatabase Pin
kk.tvm3-Apr-07 1:28
kk.tvm3-Apr-07 1:28 
AnswerRe: Database Pin
karam chandrabose3-Apr-07 1:41
karam chandrabose3-Apr-07 1:41 
QuestionAlign toolstrip backgroundimage to the right? [modified] Pin
akkram3-Apr-07 1:03
akkram3-Apr-07 1:03 
Questionhi Pin
sooreeagt3-Apr-07 0:27
sooreeagt3-Apr-07 0:27 
AnswerRe: hi Pin
originSH3-Apr-07 0:35
originSH3-Apr-07 0:35 
GeneralRe: hi Pin
Martin#3-Apr-07 0:54
Martin#3-Apr-07 0:54 
GeneralRe: hi Pin
J4amieC3-Apr-07 1:15
J4amieC3-Apr-07 1:15 
GeneralRe: hi Pin
Martin#3-Apr-07 1:19
Martin#3-Apr-07 1:19 
GeneralRe: hi Pin
karam chandrabose3-Apr-07 1:39
karam chandrabose3-Apr-07 1:39 
GeneralRe: hi Pin
Martin#3-Apr-07 1:42
Martin#3-Apr-07 1:42 
JokeRe: hi Pin
joon vh.3-Apr-07 1:27
joon vh.3-Apr-07 1:27 
GeneralRe: hi Pin
originSH3-Apr-07 2:47
originSH3-Apr-07 2:47 
QuestionHow can I determine total day size of a specific month? Pin
memix2-Apr-07 23:38
memix2-Apr-07 23:38 
AnswerRe: How can I determine total day size of a specific month? Pin
Christian Graus2-Apr-07 23:45
protectorChristian Graus2-Apr-07 23:45 
GeneralDateTime.DaysInMonth() is enough for me. Pin
memix3-Apr-07 0:13
memix3-Apr-07 0:13 
QuestionRemove row from tablelayoutpanel Pin
waddie12-Apr-07 23:20
waddie12-Apr-07 23:20 
AnswerRe: Remove row from tablelayoutpanel Pin
joon vh.2-Apr-07 23:33
joon vh.2-Apr-07 23:33 
found this solution on the Scripts, by Losweg

Hi,

I was struggling with the same problem today.
In the first column of my TableLayoutPanel, I'm showing a checkbox.
When the user is checking it, a new row needs to be created.
When the user is unchecking it, the row containing the checkbox should be
removed.

Logically to remove a row in the TableLayoutPanel, I would think to do
something like this:
tableLayoutPanel.RowStyles.RemoveAt(index);

But I found out this is not enough.
You need to clear the controls for that given row as well!
tableLayoutPanel.Controls.RemoveAt(...);
tableLayoutPanel.Controls.RemoveAt(...);

Once the controls in the Controls-collection are gone, the Event that
redraws your tableLayoutPanel doesn't draw them again.

Hopes this is working for you as well...




Visual Studio can't evaluate this, can you?
public object moo<br />
        {<br />
__get { return moo; }<br />
__set { moo = value; }<br />
}

GeneralRe: Remove row from tablelayoutpanel Pin
waddie13-Apr-07 0:09
waddie13-Apr-07 0:09 
Questionuser control properties given serialization error Pin
topcatalpha2-Apr-07 23:13
topcatalpha2-Apr-07 23:13 

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.