Best way to localized applications in .NET 2.0?
Hi,
I would like to ask you what is the best way to localize applications in .NET 2.0 and
how Microsoft do it in Vista?
cyberjoe
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
madhava reddyPosted Jan 11, 2007, 7:57 AM
private void bttok_click(object sender, System.EventArgs e)
{
con.Open();
SqlCommand myCommand = new SqlCommand("select * from employee where
txtname.text=id",con);
SqlDataAdapter myAdapter=new SqlDataAdapter(myCommand);
DataSet ds = new DataSet();
myAdapter.Fill(ds);
datagrid1.DataSource=ds;
datagrid1.DataBind();
mycommand.ExecuteReader()
con.Close();
try this because C# is line by line excuter and here u r trying to get data so u shuld use reader or scaler not non query non query is uses to insert or delete data
best of luck
madhava reddyPosted Jan 11, 2007, 7:57 AM
private void bttok_click(object sender, System.EventArgs e)
{
con.Open();
SqlCommand myCommand = new SqlCommand("select * from employee where
txtname.text=id",con);
SqlDataAdapter myAdapter=new SqlDataAdapter(myCommand);
DataSet ds = new DataSet();
myAdapter.Fill(ds);
datagrid1.DataSource=ds;
datagrid1.DataBind();
mycommand.ExecuteReader()
con.Close();
try this because C# is line by line excuter and here u r trying to get data so u shuld use reader or scaler not non query non query is uses to insert or delete data
best of luck