Click here to Skip to main content
15,922,533 members

Comments by Sabarish Mahalingam (Top 5 by date)

Sabarish Mahalingam 5-Jan-16 9:31am View    
i didn't search any servies regarding this query, kindly suggest some site to solve this issue.
Sabarish Mahalingam 5-Jan-16 9:29am View    
Not yet to check it out, can you suggest some API?
Sabarish Mahalingam 16-Jul-15 7:08am View    
rptDisplay.ServerReport.ReportServerCredentials = new MyReportServerCredentials();
Sabarish Mahalingam 15-Jul-15 2:11am View    
hi Mika,
Actually, my problem is How to fetch the data's from soap client using wcf Services through our application's?
Sabarish Mahalingam 7-Jan-15 7:30am View    
private void Paydate_ValueChanged(object sender, EventArgs e)
{
DateTime paydate = Convert.ToDateTime(Paydate.Text);
DateTime duedate1 = Convert.ToDateTime(duedate.Text);
TimeSpan diff = paydate - duedate1;

if (diff.TotalDays>30)

{


OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\finance.accdb");
con.Open();
string s = "select Duedate,Dueamount from Duedetails" + textBox1.Text + " where SNo='" + noofdue.Text + "'";
OleDbCommand cmd = new OleDbCommand(s, con);
OleDbDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
double a = Convert.ToDouble(textBox4.Text);
double b = a + 100;
string c = Convert.ToString(b);

//duedate.Text = dr.GetString(0);
//c = dr.GetString(1);
textBox4.Text = c.ToString();

}
i wrote this code according to my requirment. but its not working xactly.