I'm working on VB6 application, which is connected to MS Access database, so I don't want to allow user to open multiple instances of my application as this will create conflicts & alter connected database. Also, if user tries to open another instance, the currently running instance must be focused. How can I attain this? Thanks in advance.......... :-)
相关问题
- Convert VB's Val to Java?
- Invalid Picture In Visual basic 6
- Compile is really slow for a solution with many pr
- vb6 Open File For Append issue Path Not Found
- DSN-less ODBC connect string for legacy Sybase Ada
相关文章
- Reading (with Filesystem.FileGet) VB6 record file
- Trim all types of whitespace, including tabs
- How to destroy an object
- COM+ object activation in a different partition
- How to prepend a header in a text file
- VB6 — using POST & GET from URL and displaying in
- Using a VB6.dll in .Net
- Dynamic two or more levels sub-menu generation in
Use
App.PrevInstance
: