Click here to Skip to main content
16,018,534 members

Comments by kespinko (Top 7 by date)

kespinko 2-Sep-12 14:58pm View    
No My dataGrid work perfect but I dont know how to give a chart from this dataGrid :) I dont know how to work with chart controls
kespinko 23-Aug-12 12:30pm View    
not working . Give Error :
Cannot clear this list.
kespinko 23-Aug-12 12:10pm View    
i think i don't . How I should call dataBind()?
kespinko 23-Aug-12 11:58am View    
Yes I want show only new data and remove the old but dgView.DataSource = null
does not working
kespinko 1-Aug-12 16:24pm View    
I have connection to my DB.Like i told i can insert records.I don't how to select them with where clause.I know how to create Usual select. But don't know how to get a variable from c# and use with "clause" like a parameter name. the code Up in page is the code from gridview "add query".

My connection is :

class ConnectionString
{

public string getString()
{
string server = "localhost";
string database = "HFM";
string uid = "root";
string password = "";
string connectionString;
connectionString = "SERVER=" + server + ";" + "DATABASE=" +
database + ";" + "UID=" + uid + ";" + "PASSWORD=" + password + ";";

return connectionString;
}


But i think i dont Have any problem with connection.