Add-In for Team Foundation Server - vba

Is there any add - in for VBA in TFS for performing source control activities like Check in, Check out ?
Basically, I am developing an application in VBA and I am using VSTS as my version control tool. I am not aware as to how can I integrate VBA with Visual Studio team system to directly check in or check out my code.

Not sure, is this VBA in office? If the application can use Visual Source Safe then you might be able to use the MSSCCIProvider. If not then the windows shell extensions (explorer integration) in the TFS 2010 Power tools might be useful, at least you won't need to have Visual Studio open.

Related

How do I create a package of my application in VB.net which can run on other's systems too?

I made an application in Visual Studio 2012 using VB.net language.
I want to make a package or a setup so that any user whether they have visual studios or not can run my application.
I searched on internet and what I found is that there is something like statically or dynamically linking. Do these relate to my question?
Please give me a step by step method of packaging so that my application can run on Windows without needing Visual Studio or any other program to run it.
You will find it in the menu under Build -> Publish.
This will produce an executable that can be run without Visual Studio. The .NET Framework has to be installed on the computer though, but that usually is.

How to open visual basic 6 program with visual studio.net

I want to open a program (written in Visual basic 6) to be open in Visual Studio.net. Please guide, how could I do that?
While trying to open VB6 (.vbp file) program directly from the OPEN project option in visual studion.net, I was getting this error,
"Visual Basic 6 (.vbp) files cannot be opened in Visual Studio"
I am trying to open in VS 2010.
Visual Studio 2010 does not support VB6 projects. See the link here
From the msdn documentation:
Visual Studio 2010 does not provide tools for upgrading applications and projects from Visual Basic 6.0. If you want to upgrade your project from Visual Basic 6.0 to Visual Basic 2010, you can use the upgrade tools provided with earlier versions of Visual Studio and then upgrade the project again in Visual Studio 2010.
Visual Basic Tools for Visual Studio
There's a plugin called Visual Basic Tools for Visual Studio that provides the following features:
load classic VB workspace- and project-files and offers quick access to the extension´s options
integrates with the solution explorer and the code editor having support for syntax highlighting, basic outlining (allows to expand/collapse methods, properties and types) as well as navigation bar support.
Classes, Types, Modules, Forms and Controls can be inspected using the Object Browser and Class View.
From the reading, it's unclear if you can actually build the project, though it does say:
The import tool creates a new solution and MSBuild compatible projects.
Links to the plugin by VS Version
2012-2013
2015
2017
RAD Basic
There is also an independent IDE called RAD Basic that claims the following features:
New and modern IDE (Integrated Development Environment) with form designer supporting drag and drop, code completion, refactoring tools, etc.
RAD Basic Compiler: Compiler 100% compatible with your VB6 project (vbp, frm, bas and cls files). Generate native executables (exe and ocx) in both 32-bit and 64-bit.
RAD Basic Forms: Reimplementation of common VB6 controls and components supporting 32-bit and 64-bit.
etc.
Speaking from my experience, it's not easy to open a Visual Basic 6.0 project in any versions of Visual Studio above 2008.
Although 2008 and below versions do provide an automatic function to convert Vb6 code to the VB.net framework. But, the problem starts after the conversion - it can skip some code, add functions/variables on its own, or modify the functional behavior on its own, and with that the VB.proj will be created with errors and you will not be able to open it anywhere as a solution file. The same with any 3rd party tools.
If you want to open the VB6 code try Visual Basic 6.0 Portable edition.
But headache will still follow you there, please refer this link
Installation of VB6 on Windows 7 / 8 / 10
Make sure you are clicking on the project file itself... Right click on the file and select "Open With" and select your visual studio program. It may need to be converted and if so, it will prompt you to convert the project.
Thanks!
Download Visual Basic Tools for Visual Studio,allows to work with classic VB workspaces and projects

Integrate Visual Basic 2010 Express with Team Foundation Server?

I've used MS Visual Basic 2010 Express to build a very simple VB.Net Windows app. I need to check the code into our Team Foundation Server Source Control. Is there a TFS plug-in for VB Express? If not, do I need to check the code in manually?
You will have to do it manually as stated here .
Given my experience with TFS I would check the code in manually. Package it all up nicely and get one changeset for the lot.
TFS isn't supported in any of the express editions of Visual Studio. I'm not sure if TFS is integrated into Windows Explorer for manually updates and commits. Other with experience would need to comment.

VB.NET in Visual Studio 2008 on Vista 32bit building a WSP

I am trying to build a WSP file in VS2008 on my VB.NET project. How would I go about doing this? I can find a lot of plugins for C# but not VB.NET.
I don't know if your file is a sharepoint web part, but if it is, you can use sharepoint tools for visual studio. Then you can simply create a new project -> Sharepoint -> WebPart
WSPBuilder is the quickest and easiest way I have yet found to both build and deploy WSPs.
There is a good integration with VS2008.
It can be downloaded from here;
http://wspbuilder.codeplex.com/
Trust me, if you are doing this manually then this tool is going to be the greatest thing you ever used...
I would not use the MS Visual Studio Extensions as they are not flexible enough for most developments.

Visual Studio Tools for Office (VSTO 2005) newbie deployment question

I have Visual Studio setup with a VSTO word project, and when I hit run it runs fine.
But, how do I setup a word document to use my code without having Visual Studio running?
You must deploy the VSTO runtime whether by hand or with an installer. Check out this blog post for a detailed explanation.
You can do it using a Windows Installer project; starting point here. You can also use the Publish Wizard.
A more general starting point can be found in MSDN here.