3
Answers

how to deploy windows form application c# ?

Mani Kandan

Mani Kandan

8y
272
1
Hello Everyone,
 
Please Advice me.
 
I am trying to developing Windows Application with WPF Visual Studio 2012 and the database is SQL Server.
 
How can I install SQL Server with database also automatically when I am installing .exe file on any other local computers? I want to happen, both are at the same time.
 
Is it possible ?
 
Advance Thanks,
Abhilash.J.A 
Answers (3)
0
Javeed M Shaikh

Javeed M Shaikh

NA 7.8k 69.7k 11y
can you try to set some hard coded value like this:

timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
darma teja

darma teja

NA 493 194.2k 11y
Hi,

gridView.Rows[1].Cells[1].Value= "text here";

Darma