How to design a tree in Console application in C++?
I mean I want to design a tree in console of c++ . And It get possible to make change by adding an element to tree or even delete an element from it. Otherwise if it is impossible how can I design that in Windows forms.
Answers (1)
0
it shows me this error : localhost.SqlParameter does not contain a constructor that takes 2 arguments
in
param[0] = new localhost.SqlParameter("KeyWord", b[1].ToString());
this line...
0
Hi u can try like this
localhost.SqlParameter[] param = new localhost.SqlParameter[2];
param[0] = new localhost.SqlParameter("KeyWord", "Testing");
param[1] = new localhost.SqlParameter("PageSize", 20);
var objGetDetail = Obj1.GetDetail("SP_Related", param).Tables[0];