It's quite unconventional, but yes it is possible.
Set inputparameters property for your form to something like:
@CatID=[Which CatID would you like to see:]
and have a sproc like this:
create procedure CategoriesByCatID
(@CatID int)
as
select * from Categories
where CategoryID=@CatID