opening an .mdb file
-
please let me know how to open an .mdb (MS Access) file from a VC6.0 application . thanks in advance . aanandi
Use
ShellExecute(..., "open", "file.mdb", ...)
."Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for, in order to get to the job you need to pay for the clothes and the car and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
please let me know how to open an .mdb (MS Access) file from a VC6.0 application . thanks in advance . aanandi
Do you want to connect to an Access database? Check in MSDN the following classes: CDatabase CRecordset or CDaoDatabase CDaoRecordset
Demian. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true. I no longer know how to use my telephone." -Bjarne Stroustrup, computer science professor, designer of C++ programming language (1950- )
-
Do you want to connect to an Access database? Check in MSDN the following classes: CDatabase CRecordset or CDaoDatabase CDaoRecordset
Demian. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true. I no longer know how to use my telephone." -Bjarne Stroustrup, computer science professor, designer of C++ programming language (1950- )
-
Use
ShellExecute(..., "open", "file.mdb", ...)
."Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for, in order to get to the job you need to pay for the clothes and the car and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
please let me know how to open an .mdb (MS Access) file from a VC6.0 application . thanks in advance . aanandi