1

很抱歉我缺乏VB知识(我不是VB或.net开发人员),我采用了一个非常古老且简单的插件软件,可能是用VB或VB.NET编写的,源代码包括文件带有流动的后缀。

.dsx; .frm; .frx; msi; ,res; .sln; .vbp; .wip; .Dsr; .cls; .frm;

这是 .sln 文件的内容:

Microsoft Visual Studio Solution File, Format Version 1.00
Project("{73393D18-DAC4-11D1-88FC-0000F8064EBB}") = "Agile Plugin", "AgilePlugin.wip", "    {17DC5F11-9B32-47FE-9F12-71923EC1C0DC}"
EndProject
Global
GlobalSection(LocalDeployment) = postSolution
    StartupProject = {00000000-0000-0000-0000-000000000000}
EndGlobalSection
GlobalSection(BuildOrder) = postSolution
    0 = {17DC5F11-9B32-47FE-9F12-71923EC1C0DC}
EndGlobalSection
GlobalSection(DeploymentRoot) = postSolution
EndGlobalSection
EndGlobal

这是 .cls 文件的一部分内容:

VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "EventClassModule"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
Option Base 1

Public WithEvents App As Application
Attribute App.VB_VarHelpID = -1
Public WithEvents Proj As Project
Attribute Proj.VB_VarHelpID = -1

Dim NewTaskIDs() As Long
Dim NumNewTasks As Long

有人可以告诉我该程序是由 VB 还是 VB.NET 编写的?哪个 Visual Studio 可以编辑它?我尝试了 VS 2008,但收到一条错误消息:“无法打开,因为此版本的 Visual Studio 不支持其项目类型(.wip)”。

非常感谢..

4

1 回答 1

4

那是带有基于Visual Installer的安装项目的 VB6。

它们不再受支持。

于 2012-05-02T15:44:51.013 回答