当前位置:  开发笔记 > 编程语言 > 正文

调试VB6应用程序时如何设置工作目录?

如何解决《调试VB6应用程序时如何设置工作目录?》经验,为你挑选了3个好方法。

我正在调试VB6可执行文件.可执行文件在运行时从其当前目录加载dll和文件.在调试器中运行时,当前目录似乎是VB6的目录.

如何设置VB6的工作目录?



1> Pascal Parad..:

对于这件事,它似乎不是一个"开箱即用"的解决方案.

摘自软件论坛上的老乔尔

无论如何..把这个话题放在一边..以下是我的VB6解决方案:我在我的VB项目"MPDEBUG"和"MPRELEASE"中定义了2个符号,并将以下函数作为我的apps入口点函数中的第一个操作.

Public Sub ChangeDirToApp()
#If MPDEBUG = 0 And MPRELEASE = 1 Then
  ' assume that in final release builds the current dir will be the location
  ' of where the .exe was installed; paths are relative to the install dir
  ChDrive App.path
  ChDir App.path
#Else
  ' in all debug/IDE related builds, we need to switch to the "bin" dir
  ChDrive App.path
  ChDir App.path & BackSlash(App.path) & "..\bin"
#End If
End Sub



2> GSerg..:

"只有当您使用File-Open打开项目时,"当前目录似乎是VB6的目录".

在IDE关闭的情况下双击.vbp文件打开它.



3> Kris Erickso..:

解决方案,我发现工程使用a Sub Main,并检查程序是否在IDE中运行.

Dim gISIDE as Boolean

Sub Main()
    If IsIDE Then
        ChDrive App.Path
        ChDir   App.Path
    End If

    ' The rest of the code goes here...

End Sub

Public Function IsIDE() As Boolean '
        IsIDE = False
        'This line is only executed if running in the IDE and then returns True
        Debug.Assert CheckIDE 
        If gISIDE Then 
            IsIDE = True
        End If
End Function

Private Function CheckIDE() As Boolean ' this is a helper function for Public Function IsIDE() 
        gISIDE = True 'set global flag 
        CheckIDE = True 
End Function

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有