从App到Application (CSDN)

80酷酷网    80kuku.com

  VB6升级到VB.NET,App变成了Application

   很多人不清楚这方面的变化,现在简单列举如下:

Imports System.Reflection.Assembly

Imports System.Diagnostics.FileVersionInfo

’App.Path
Application.StartupPath

’App.Title
  GetExecutingAssembly.GetName.Name

’App.ExeName
  GetExecutingAssembly.Location

’App.Major
  GetVersionInfo(GetExecutingAssembly.Location).ProductMajorPart

’App.Minor
  GetVersionInfo(GetExecutingAssembly.Location).ProductMinorPart

’App.Revision
  GetVersionInfo(GetExecutingAssembly.Location).ProductBuildPart

’App.LegalCopyrights
GetVersionInfo(GetExecutingAssembly.Location).LegalCopyright

’App.LegalTrademarks
GetVersionInfo(GetExecutingAssembly.Location).LegalTrademarks

’App.CompanyName
GetVersionInfo(GetExecutingAssembly.Location).CompanyName



分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: