CREATE PROCEDURE dbo.Talisma_Search(@Talisma_Search NVARCHAR(255))ASSELECT[dbo].[tblTalisma_Lookup].[tName], [dbo].[tblTalisma_Lookup].[tSSN], [dbo].[tblTalisma_Lookup].[tEmail]FROM[dbo].[tblTalisma_Lookup]WHERE[dbo].[tblTalisma_Lookup].[tName] LIKE '%'+@Talisma_Search + '%'OR [dbo].[tblTalisma_Lookup].[tSSN] LIKE '%'+@Talisma_Search + '%'OR [dbo].[tblTalisma_Lookup].[tEmail] LIKE '%'+@Talisma_Search + '%'ORDER BY[dbo].[tblTalisma_Lookup].[tName]
EXEC dbo.talisma_Search @talisma_Search ='savage'
What I want is a button on a Windows form that allows me to type in a name or SSN or email and then displays the result at the bottom of the form. I have been researching this and have been unable to find any information on this type of project.
This is my first attempt at creating an application using Visual Studio. I am very much a beginner so any help would be appreciated.
Thank you,
Mary