Click here to Skip to main content
15,886,513 members
Home / Discussions / C#
   

C#

 
AnswerRe: Create a chart in PowerPoint using C#. Pin
OriginalGriff4-Jun-17 22:43
mveOriginalGriff4-Jun-17 22:43 
Questioncustom controls not binding wpf Pin
Member 112967764-Jun-17 7:52
Member 112967764-Jun-17 7:52 
AnswerRe: custom controls not binding wpf Pin
Gerry Schmitz5-Jun-17 5:36
mveGerry Schmitz5-Jun-17 5:36 
GeneralRe: custom controls not binding wpf Pin
Member 112967765-Jun-17 18:30
Member 112967765-Jun-17 18:30 
QuestionConfigure Remote Machine's IP in C# Service At Install Time Pin
Django_Untaken3-Jun-17 22:58
Django_Untaken3-Jun-17 22:58 
AnswerRe: Configure Remote Machine's IP in C# Service At Install Time Pin
Eddy Vluggen4-Jun-17 2:55
professionalEddy Vluggen4-Jun-17 2:55 
AnswerRe: Configure Remote Machine's IP in C# Service At Install Time Pin
Gerry Schmitz4-Jun-17 4:45
mveGerry Schmitz4-Jun-17 4:45 
QuestionReport cant be display on report viewer page in c#.net windows form Pin
Member 132383512-Jun-17 22:31
Member 132383512-Jun-17 22:31 
//Report Load page code using dataset
private void RPT_SupplierPer_Load(object sender, EventArgs e)
{
crystalReportViewer1.ReportSource = null;
DataTable dt = new DataTable();
SqlConnection con = new SqlConnection(cs.cstring());
con.Open();
SqlCommand cmd = new SqlCommand("RPT_Sup_All", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@id",ID);
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new System.Data.DataSet();
//SupplierPer sp = new SupplierPer();
//da.Fill(ds);
// ds.Tables[0].TableName="RPT_Sup_All";
SupplierPer sp = new SupplierPer();
sp.Database.Tables[0].SetDataSource(ds.Tables[0]);

sp.SetDataSource(ds);
crystalReportViewer1.ReportSource = sp;
crystalReportViewer1.Refresh();




}
//print button code
private void btnPrint_Click(object sender, EventArgs e)
{
int id = Convert.ToInt16(txt_id.Text);
RPT_SupplierPer pt = new RPT_SupplierPer(id);
pt.Show();
}
AnswerRe: Report cant be display on report viewer page in c#.net windows form Pin
User 41802543-Jun-17 3:32
User 41802543-Jun-17 3:32 
QuestionHow to solve 2 js script file crash problem Pin
Member 130563031-Jun-17 16:22
Member 130563031-Jun-17 16:22 
AnswerRe: How to solve 2 js script file crash problem Pin
Gerry Schmitz1-Jun-17 16:47
mveGerry Schmitz1-Jun-17 16:47 
GeneralRe: How to solve 2 js script file crash problem Pin
OriginalGriff1-Jun-17 20:25
mveOriginalGriff1-Jun-17 20:25 
AnswerRe: How to solve 2 js script file crash problem Pin
Pete O'Hanlon1-Jun-17 21:49
mvePete O'Hanlon1-Jun-17 21:49 
Questiondatagrid view to pdf by iTextsharp Pin
Member 130230281-Jun-17 9:07
Member 130230281-Jun-17 9:07 
AnswerRe: datagrid view to pdf by iTextsharp Pin
Afzaal Ahmad Zeeshan1-Jun-17 10:46
professionalAfzaal Ahmad Zeeshan1-Jun-17 10:46 
AnswerRe: datagrid view to pdf by iTextsharp Pin
Gerry Schmitz1-Jun-17 16:46
mveGerry Schmitz1-Jun-17 16:46 
QuestionHow can i effectively write the code for calling a function before and after execution of every function in a class. Pin
yeswanthkumar30-May-17 2:51
yeswanthkumar30-May-17 2:51 
AnswerRe: How can i effectively write the code for calling a function before and after execution of every function in a class. Pin
Pete O'Hanlon30-May-17 3:11
mvePete O'Hanlon30-May-17 3:11 
AnswerRe: How can i effectively write the code for calling a function before and after execution of every function in a class. Pin
Gerry Schmitz30-May-17 12:41
mveGerry Schmitz30-May-17 12:41 
AnswerRe: How can i effectively write the code for calling a function before and after execution of every function in a class. Pin
BillWoodruff1-Jun-17 6:06
professionalBillWoodruff1-Jun-17 6:06 
GeneralRe: How can i effectively write the code for calling a function before and after execution of every function in a class. Pin
yeswanthkumar1-Jun-17 20:31
yeswanthkumar1-Jun-17 20:31 
GeneralRe: How can i effectively write the code for calling a function before and after execution of every function in a class. Pin
BillWoodruff2-Jun-17 6:07
professionalBillWoodruff2-Jun-17 6:07 
QuestionUsing A Generic Class with a Type Constraint Pin
Richard Andrew x6429-May-17 9:24
professionalRichard Andrew x6429-May-17 9:24 
AnswerRe: Using A Generic Class with a Type Constraint Pin
OriginalGriff29-May-17 22:24
mveOriginalGriff29-May-17 22:24 
GeneralRe: Using A Generic Class with a Type Constraint Pin
Richard Andrew x6430-May-17 1:13
professionalRichard Andrew x6430-May-17 1: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.