I want to know if the following is possible: suppose if made a query.
When i turn to sql view it says (simplified):
select name, address, phone
from tbladdresses, tbllookup
where bla, bla, bla
Now i want to copy it into unbound txtbox1 and push a button.
The second txtbox should look like this:
select
name,
address,
phone
from
tbladdresses,
tbllookup
where
bla,
bla,
bla
Now it's more readable for auditors.
Can someone provide me the code for the button ? (if it is possible of course)
I tried this on other forums, but nobody would/could help me.
When i turn to sql view it says (simplified):
select name, address, phone
from tbladdresses, tbllookup
where bla, bla, bla
Now i want to copy it into unbound txtbox1 and push a button.
The second txtbox should look like this:
select
name,
address,
phone
from
tbladdresses,
tbllookup
where
bla,
bla,
bla
Now it's more readable for auditors.
Can someone provide me the code for the button ? (if it is possible of course)
I tried this on other forums, but nobody would/could help me.