I know how to use queries but what if there is a button on a form that use a query to assing the result to a value?
For example
this query will gives the totall of the all employees whish is 5
I want to use this query throw a from to assing the result to a variable, For instance:
can anyone advise how to assing the query to X ?
For example
this query will gives the totall of the all employees whish is 5
Code:
SELECT Count(*) FROM Employees;
Code:
Dim x as Integer x= ???
Comment