When i open my query in VB6 I want to hide the Ms Access background and just have the query form showing is this possible.
Printable View
When i open my query in VB6 I want to hide the Ms Access background and just have the query form showing is this possible.
Did you create an instance of access in code? (I ask because in a previous post, you had created an instance of access in your code.) If so then you can't hide it, but you don't have to create an instance of access to run your query in VB. Just make a database connection and select * from query. Then return it to a recordset. Do this through ADO.
I'm using ado, i follow what you saying