Hai i need advice and guide.i have probleam with my code. I got an error 'ItemNameTextBox3' and 'ItemquantityTextBox3.Text' is not a member of 'WindowsApplication1.storeremove'. Here is my code, i am using visual studio 2005, dtabase sql2005, my database name is Store and table name is ItemIn.
here i am created ` new new windows form named storeremove and other other windows form named as page..The reason is i dont want to put this code in page form because if i run the application all data which in database are can seen at the textbox. So that why i am create a new form which i can remove the data from fresh textbox.

Help help me
Public Class storeremove
Private Sub btnremove_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnremove.Click
page.Validate()
page.ItemInTableAdapter.Delete
(Me.ItemNameTextBox3.Text, Me.ItemquantityTextBox3.Text)
page.ItemInTableAdapter.Fill(page.StoreDataSet.Ite mIn)
MsgBox("Data Remove")
End Sub