Click here to Skip to main content
16,005,121 members
Home / Discussions / C#
   

C#

 
AnswerRe: About A notifyicon without a form Pin
Dave Kreskowiak1-Jan-06 7:22
mveDave Kreskowiak1-Jan-06 7:22 
GeneralRe: About A notifyicon without a form Pin
Amir Jalaly1-Jan-06 20:38
Amir Jalaly1-Jan-06 20:38 
GeneralRe: About A notifyicon without a form Pin
Dave Kreskowiak2-Jan-06 10:48
mveDave Kreskowiak2-Jan-06 10:48 
GeneralRe: About A notifyicon without a form Pin
Amir Jalaly2-Jan-06 19:38
Amir Jalaly2-Jan-06 19:38 
GeneralRe: About A notifyicon without a form Pin
Dave Kreskowiak3-Jan-06 2:18
mveDave Kreskowiak3-Jan-06 2:18 
QuestionSQL and AD Pin
MAGrimsley31-Dec-05 19:58
MAGrimsley31-Dec-05 19:58 
AnswerRe: SQL and AD Pin
Dave Kreskowiak1-Jan-06 7:16
mveDave Kreskowiak1-Jan-06 7:16 
QuestionHow Bind Event Handler For Dynamic Link Button Pin
nomemna31-Dec-05 14:17
nomemna31-Dec-05 14:17 
Hi!
i want to create some link buttons at runtine on click event of one of command button which is placed on the form, at design time. number of link buttons are depends on the requirements from database. problem is that, i write an event handler for all these link buttons, but they are not getting fired. link buttons created perfectly but they dont work. i am writing the code below. somebody help me. its kind of urgent. thanks in advance.

private void btnGo_Click(object sender, System.EventArgs e)
{
Make_Table();
}
private void Make_Table(string SubmitionDate,int TSI,string ExpSheet)
{
HtmlTable tbl=new HtmlTable();
tbl.CellPadding=0;
tbl.CellSpacing=0;

MyHtmlTable.AddRow(tbl);
MyHtmlTable.AddCo(tbl,0,"",SubmitionDate,100,true);
MyHtmlTable.AddRow(tbl);
MyHtmlTable.AddCol(tbl,1,Get_LinkButton(tbl,TSI));
plh.Controls.Add(tbl);
}
private LinkButton Get_LinkButton(HtmlTable InnerTable,int TSI)
{
LinkButton lbtn= new LinkButton();
lbtn.Text="View Time Sheet";
lbtn.ID=TSI+"T";
lbtn.Click+= new System.EventHandler (LinkButton_Click);
return lbtn;
}

private void LinkButton_Click(object sender, System.EventArgs e)
{
//Funtionality of link button.
}

nauman
QuestionGraphic on Windows Media Player Pin
totagi31-Dec-05 3:17
totagi31-Dec-05 3:17 
AnswerRe: Graphic on Windows Media Player Pin
mikailcetinkaya1-Jan-06 7:01
mikailcetinkaya1-Jan-06 7:01 
QuestionThreads Pin
Bassam Saoud31-Dec-05 1:11
Bassam Saoud31-Dec-05 1:11 
AnswerRe: Threads Pin
Jared Parsons31-Dec-05 6:31
Jared Parsons31-Dec-05 6:31 
GeneralRe: Threads Pin
Bassam Saoud31-Dec-05 8:00
Bassam Saoud31-Dec-05 8:00 
GeneralRe: Threads Pin
Ravi Bhavnani31-Dec-05 8:11
professionalRavi Bhavnani31-Dec-05 8:11 
GeneralRe: Threads Pin
Bassam Saoud31-Dec-05 8:44
Bassam Saoud31-Dec-05 8:44 
GeneralRe: Threads Pin
Ravi Bhavnani31-Dec-05 9:05
professionalRavi Bhavnani31-Dec-05 9:05 
GeneralRe: Threads Pin
Bassam Saoud31-Dec-05 9:37
Bassam Saoud31-Dec-05 9:37 
GeneralRe: Threads Pin
Jared Parsons31-Dec-05 13:09
Jared Parsons31-Dec-05 13:09 
GeneralRe: Threads Pin
Igor Vigdorchik31-Dec-05 13:40
Igor Vigdorchik31-Dec-05 13:40 
GeneralRe: Threads Pin
AndrewPeters31-Dec-05 14:34
AndrewPeters31-Dec-05 14:34 
GeneralRe: Threads Pin
Igor Vigdorchik31-Dec-05 14:51
Igor Vigdorchik31-Dec-05 14:51 
GeneralRe: Threads Pin
AndrewPeters31-Dec-05 15:16
AndrewPeters31-Dec-05 15:16 
GeneralRe: Threads Pin
Igor Vigdorchik31-Dec-05 15:29
Igor Vigdorchik31-Dec-05 15:29 
GeneralRe: Threads Pin
Bassam Saoud1-Jan-06 0:38
Bassam Saoud1-Jan-06 0:38 
QuestionFolder View Pin
rakesh_nits30-Dec-05 19:26
rakesh_nits30-Dec-05 19:26 

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.