Click here to Skip to main content
15,890,947 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Paste in next available row Pin
Eddy Vluggen9-May-14 5:21
professionalEddy Vluggen9-May-14 5:21 
GeneralRe: Paste in next available row Pin
David Rubin6-May-14 7:28
David Rubin6-May-14 7:28 
QuestionHow i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 7:47
professionaltastini5-May-14 7:47 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
Wes Aday5-May-14 8:28
professionalWes Aday5-May-14 8:28 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 8:41
professionaltastini5-May-14 8:41 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
ZurdoDev5-May-14 9:13
professionalZurdoDev5-May-14 9:13 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
Eddy Vluggen5-May-14 8:44
professionalEddy Vluggen5-May-14 8:44 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 8:46
professionaltastini5-May-14 8:46 
i tried this way

USE [Activation]
GO
/****** Object: StoredProcedure [dbo].[SearchRecord] Script Date: 05/05/2014 21:24:16 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[SearchRecord]
@Activation nvarchar(50),
@DateActivation date




AS
BEGIN
set dateformat yyyymmdd
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

-- Insert statements for procedure here
SELECT * from Activation.dbo.tblActivationMain WHERE DateOfActivation=@DateActivation AND Activated=@Activation
END

no chance
QuestionRe: How i can use stored procedure in vb.net with two parameters Pin
Eddy Vluggen5-May-14 9:00
professionalEddy Vluggen5-May-14 9:00 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 9:13
professionaltastini5-May-14 9:13 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
Eddy Vluggen6-May-14 7:38
professionalEddy Vluggen6-May-14 7:38 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
ZurdoDev5-May-14 9:13
professionalZurdoDev5-May-14 9:13 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 9:18
professionaltastini5-May-14 9:18 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
ZurdoDev5-May-14 9:26
professionalZurdoDev5-May-14 9:26 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 9:34
professionaltastini5-May-14 9:34 
QuestionRe: How i can use stored procedure in vb.net with two parameters Pin
ZurdoDev5-May-14 9:35
professionalZurdoDev5-May-14 9:35 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
tastini5-May-14 9:36
professionaltastini5-May-14 9:36 
AnswerRe: How i can use stored procedure in vb.net with two parameters Pin
ZurdoDev5-May-14 9:38
professionalZurdoDev5-May-14 9:38 
GeneralRe: How i can use stored procedure in vb.net with two parameters Pin
Dave Kreskowiak5-May-14 9:28
mveDave Kreskowiak5-May-14 9:28 
Questioncopying cells to another worksheet in next available cell per column Pin
David Rubin5-May-14 5:51
David Rubin5-May-14 5:51 
SuggestionRe: copying cells to another worksheet in next available cell per column Pin
ZurdoDev5-May-14 9:14
professionalZurdoDev5-May-14 9:14 
GeneralRe: copying cells to another worksheet in next available cell per column Pin
David Rubin5-May-14 9:22
David Rubin5-May-14 9:22 
AnswerRe: copying cells to another worksheet in next available cell per column Pin
ZurdoDev5-May-14 9:29
professionalZurdoDev5-May-14 9:29 
GeneralRe: copying cells to another worksheet in next available cell per column Pin
David Rubin5-May-14 9:40
David Rubin5-May-14 9:40 
AnswerRe: copying cells to another worksheet in next available cell per column Pin
ZurdoDev5-May-14 9:43
professionalZurdoDev5-May-14 9:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.