A
Angelina
Hi,
I have got a table in my access.adp (MSDE) database as
shown below:
Meal table:
Meal_name
Meal_cost
i have created a SPROC in access.adp to insert values
into this table based on what the user enters at the
interface:
INSERT INTO dbo.Available_Meals
SELECT Meal_desc, Cost
FROM dbo.Available_Meals
WHERE (Meal_desc = @Meal_desc) AND (Cost = @Cost)
what i need help on is what code (or actions on the IDE)
to write in vb.net so i can call this sproc and pass
these parameters to it from the 2 textboxes i have.
Can someone help me? I am a complete beginner?
I have got a table in my access.adp (MSDE) database as
shown below:
Meal table:
Meal_name
Meal_cost
i have created a SPROC in access.adp to insert values
into this table based on what the user enters at the
interface:
INSERT INTO dbo.Available_Meals
SELECT Meal_desc, Cost
FROM dbo.Available_Meals
WHERE (Meal_desc = @Meal_desc) AND (Cost = @Cost)
what i need help on is what code (or actions on the IDE)
to write in vb.net so i can call this sproc and pass
these parameters to it from the 2 textboxes i have.
Can someone help me? I am a complete beginner?