I create in Access report based on user defined function(UDF) in SQL Server which returns table.
CREATE FUNCTION MyFunc_VP (@VP varchar(12))
RETURNS TABLE
AS
RETURN (SELECT......
In Access, I am calling a report with DoCmd.OpenRepor t method.
DOCMD.OpenRepor t stDocName, acPreview
How to call report passing a parameter from form (Forms!FormName !TextBox)
(solution with where clause doesn't match my problem).
CREATE FUNCTION MyFunc_VP (@VP varchar(12))
RETURNS TABLE
AS
RETURN (SELECT......
In Access, I am calling a report with DoCmd.OpenRepor t method.
DOCMD.OpenRepor t stDocName, acPreview
How to call report passing a parameter from form (Forms!FormName !TextBox)
(solution with where clause doesn't match my problem).
Comment