Jul 29, 2003 #1 lix Programmer Jul 28, 2003 5 US How can I get the current path with Visual Basic 4.0? Thanks
Jul 29, 2003 #2 nexcar Programmer Jun 30, 2003 49 US not to keen on vb4 but does app.path not work? RUN FunnySignatureMessage Upvote 0 Downvote
Jul 29, 2003 #3 encb Programmer Jul 29, 2003 1 US Sorry, I don't have the experience with VB4, but in VB6 I used: Dim db as Database dim strPath as String Set db = CurrentDb() strPath = db.Name The complete path and app name are then stored in the variable strPath. Hope this helps. Upvote 0 Downvote
Sorry, I don't have the experience with VB4, but in VB6 I used: Dim db as Database dim strPath as String Set db = CurrentDb() strPath = db.Name The complete path and app name are then stored in the variable strPath. Hope this helps.