2
Answers

How to make installer setup of a project in VB.net

Photo of cholakaka pasary

cholakaka pasary

15y
5.6k
1
I have created a small program using VB.NET and .MS Access database, it makes an .exe file but how do I create a setup program so that I can install my program on other system using installation program not just copying the .exe and the ms access file.  Can anyone help me .

Thanks

Answers (2)

0
Photo of Mitesh Mistry
NA 27 1.4k 9y
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
Photo of Khan Abrar Ahmed
NA 5.8k 200k 9y
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];