Click here to Skip to main content
15,888,579 members
Home / Discussions / C#
   

C#

 
AnswerRe: search a string that is in database table or not Pin
sreesiri21-Oct-05 20:34
sreesiri21-Oct-05 20:34 
Questionhow to update database when the page/window is closed Pin
sreesiri21-Oct-05 20:02
sreesiri21-Oct-05 20:02 
AnswerRe: how to update database when the page/window is closed Pin
S. Senthil Kumar21-Oct-05 20:32
S. Senthil Kumar21-Oct-05 20:32 
GeneralRe: how to update database when the page/window is closed Pin
Anonymous21-Oct-05 21:02
Anonymous21-Oct-05 21:02 
GeneralRe: how to update database when the page/window is closed Pin
André Ziegler22-Oct-05 4:25
André Ziegler22-Oct-05 4:25 
GeneralRe: how to update database when the page/window is closed Pin
sreesiri23-Oct-05 18:27
sreesiri23-Oct-05 18:27 
QuestionTreeView node detection Pin
picasso221-Oct-05 19:33
picasso221-Oct-05 19:33 
AnswerRe: TreeView node detection Pin
S. Senthil Kumar21-Oct-05 20:29
S. Senthil Kumar21-Oct-05 20:29 
Get the selected node and decide what to do. The Tag property is very useful for this.
void treeView1_AfterSelect(...)
{
    TreeNode node = treeView1.SelectedNode;
    // Just an arbitrary check
    if (((int)node.Tag) == 1)
    {
        panel1.Controls.Add(new TextBox);
    }
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
Questionhow to redirect to another page when current page is closed Pin
Anonymous21-Oct-05 19:18
Anonymous21-Oct-05 19:18 
AnswerRe: how to redirect to another page when current page is closed Pin
dabuskol22-Oct-05 1:07
dabuskol22-Oct-05 1:07 
AnswerRe: how to redirect to another page when current page is closed Pin
MoustafaS22-Oct-05 6:57
MoustafaS22-Oct-05 6:57 
QuestionBitmap Image in customize control Pin
luckyeagle21-Oct-05 18:52
luckyeagle21-Oct-05 18:52 
QuestionI want to develop a live video display windows form control Pin
varmag21-Oct-05 18:30
varmag21-Oct-05 18:30 
QuestionParentfolderagain Pin
Tran Ngoc Minh21-Oct-05 17:45
Tran Ngoc Minh21-Oct-05 17:45 
AnswerRe: Parentfolderagain Pin
S. Senthil Kumar21-Oct-05 20:38
S. Senthil Kumar21-Oct-05 20:38 
Questionhelp with GDI+ Pin
tawammar21-Oct-05 17:07
tawammar21-Oct-05 17:07 
AnswerRe: help with GDI+ Pin
S. Senthil Kumar21-Oct-05 20:39
S. Senthil Kumar21-Oct-05 20:39 
GeneralRe: help with GDI+ Pin
tawammar21-Oct-05 21:33
tawammar21-Oct-05 21:33 
GeneralRe: help with GDI+ Pin
S. Senthil Kumar21-Oct-05 21:46
S. Senthil Kumar21-Oct-05 21:46 
GeneralRe: help with GDI+ Pin
Sasuko22-Oct-05 0:26
Sasuko22-Oct-05 0:26 
AnswerRe: help with GDI+ Pin
[Marc]23-Oct-05 12:22
[Marc]23-Oct-05 12:22 
QuestionBeginner Question: Data type issue Pin
ivelander21-Oct-05 15:45
ivelander21-Oct-05 15:45 
AnswerRe: Beginner Question: Data type issue Pin
MoustafaS21-Oct-05 16:13
MoustafaS21-Oct-05 16:13 
AnswerRe: Beginner Question: Data type issue Pin
Matt Gerrans21-Oct-05 16:19
Matt Gerrans21-Oct-05 16:19 
AnswerRe: Beginner Question: Data type issue Pin
Matt Gerrans21-Oct-05 16:22
Matt Gerrans21-Oct-05 16:22 

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.