Insert Parameter Value to Query Builder
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
WHERE (AccountsEntries.Posted = 'No') AND ([References].Date >= @Begin) AND ([References].Date <= @End) GROUP BY AccountsEntries.AccountNo ----- From my SQLdataadapter wizard (i use wizard to conenct to database), i type part of sql statement above in query builder and i want to insert parameter value to @Begin and @End from VB.code. How to do it?