how to reference a file that was included in the project in vb.net
in which directory is an image copied when you i开发者_如何学Pythonnclude it in your project?
If it's copied to the output directory, you can use Path.Combine
:
Shared ReadOnly AppDirectory As String = Path.GetDirectoryName(New Uri(GetType(Program).Assembly.CodeBase).LocalPath)
Dim filePath As String = Path.Combine(AppDirectory, "MyFile.jpg")
精彩评论