Thanks Berry, I am very new to this so I will take all of the help I can. I changed it to:
CREATE PROCEDURE hhb_InsertNewCompany
/* Variable Declaration */
@WebCompanyName nvarchar(255),
@WebCompanyStreet nvarchar(50),
@WebCompanyCity nvarchar(255),
@WebCompanyState nvarchar(50),
@WebCompanyZip nvarchar(255),
@Division nvarchar(255),
@ZipPlusFour nvarchar(50),
@Suspended int,
@Deleted int,
@PhoneNumber nvarchar(50),
@BarCustomerNumber nvarchar(50),
@WebCompanyCountry nvarchar(50),
@MailCode char(10),
@parmIdentity int = 0 output
AS
INSERT INTO tblWebCompanies
(WebCompanyName, WebCompanyStreet, WebCompanyCity, WebCompanyState, WebCompanyZip, Division, ZipPlusFour, Suspended, Deleted, PhoneNumber, BarcustomerNumber, WebCompanyCountry, MailCode)
VALUES
(@WebCompanyName, @WebCompanyStreet, @WebCompanyCity, @WebCompanyState, @WebCompanyZip, @Division, @ZipPlusFour, @Suspended, @Deleted, @PhoneNumber, @BarcustomerNumber, @WebCompanyCountry, @MailCode)
SELECT @parmIdentity = Scope_Identity()
GO
I guess if that is correct, I will start to work on calling it from VB. This may take even longer for me. By the way, thanks for all of the help that you have given me.
-Uncle Cake