Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: get the user name from an access project

    you can declare a global var in a form and assign it and hide the form

  • RE: search for a string in a stored procedure

     

    -- exec proc sp_Find_in_Proc('searchstring")

    CREATE proc sp_Find_in_Proc

    @SeachString varchar(255) = NULL

    AS

    IF  @SeachString is Null

       Begin

        Print 'Missing Parameter @SeachString!'

        return

       end

     

    DECLARE @Pattern as varchar(255)

    SELECT @Pattern = '%"' + @SeachString + '%'

    Print...

Viewing 2 posts - 1 through 2 (of 2 total)