Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~400 People Reached
Favorite Tags
Member Avatar for NitendraTRIC

[code] cmd=new sqlcommand("insert_student",con) cmd.commandtype=commandType.StoredProcedure Add.Parameters.AddwithValue("@stuid",txtstuid.text) Add.Parameters.AddwithValue("@name",txtname.text) Add.Parameters.AddwithValue("@course",txtcourse.text) con.open() cmd.ExecuteNonQuery() [/code] i want to create method for executing procedure but how it possible... [code] Function ExecuteStoredProc(Proc as String) cmd=new sqlcommand(Proc,con) cmd.commandtype=commandType.StoredProcedure Add.Parameters.AddwithValue(????,?????) con.open() cmd.ExecuteNonQuery() end function [/code] how to call this function can anybody help me.........

Member Avatar for prateekpk5
0
115
Member Avatar for NitendraTRIC

i m developing web application .when i add new web page it's working but when i add web page and select master page and after that when i click on web page my pc is hang why it is happening can any body help me. i have installed visual studio2008 …

Member Avatar for Fortinbra
0
64
Member Avatar for NitendraTRIC

i m creating project in vb.net i m facing problem with related tables how the data will insert in muliple tables. and correct data are displaying in text boxes from multiple tables can any body help me plz..... [code] con = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Lecture'sManagement\Lecture'sManagementSystem\LectureManagement.mdb;Persist Security Info=True") da = New OleDbDataAdapter("select …

0
50
Member Avatar for NitendraTRIC

i m creating one project in vb.net i m taking database msaccess. i m able to insert update delete when i m taking single table.but i m facing problem with multiple tables which is related to each other how to define the relationship between tables in dataset and how to …

Member Avatar for prvnkmr194
0
171