3
Answers

Datagridview Custom Column design Issue

try abc

try abc

16y
8.4k
1
Helllo  All,,
    I have created one datagridview Custom column .. and Its Works Well.
I can Use it at a runtime to create new column. but it can not accesible at design time like Other DataGridViewTextBoxColumn, DatagridViewComboBoxColumn, DataGridViewImage Column etc. can anyone has a Idea how to make it accessible at design time?
   
Answers (3)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();