1 2 3 > >>   Sort: Date

Install Windows SDK 8.1 with Visual Studio Installer
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If you want to install Windows SDK Version 8.1 with Visual Studio Installer, you can follow this tutorial: 1. Close "Visual Studio". And run "All Programs > Visual Studio Installer". You see "Visu...
2023-12-01, 22588🔥, 0💬

Start Visual Studio Command Prompt
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C++ environment installed. If you have Visual Studio 2017 Community version with Visual C++ environment installed, you can follow this tutorial to start Visual Studio Command Prompt: 1. Run "All Progra...
2017-08-21, 7192🔥, 0💬

Visual Studio Tutorials
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Visual Studio: Getting Started with Visual Studio What Is Visual Studio Download and Run Visual ...
2022-01-22, 5897🔥, 1💬

💬 2022-01-22 perlancar: # This file was a use strict; use warnings; use ExtUtils::Mak my %WriteMakefileA "ABSTRACT" => " "AUTHOR" => "pe "CONFIGURE_REQU...

Install .NET Framework in Visual Studio
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer installed. If you have the Visual Studio Installer ready, you can follow these steps to install .NET Framework in Visual Studio Community 2017. 1. Close Visual Studio, if you are running it. 2. Run "All...
2017-09-19, 5375🔥, 0💬

Visual Studio Error: Windows SDK Version 8.1 not Found
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application in with Visual Studio 2017? You are getting "The Windows SDK version 8.1 was not found" error, because you forgot to install Windows SDK version 8.1 on your computer. Here are the steps to reproduce ...
2023-12-01, 4233🔥, 0💬

"link" - Link Object Files (*.obj)
How to use "link" command tool to link objet files? If you have object files previously compiled by your or others, you can follow this tutorial to link them into executable files: 1. Create a simple C++ program, Hello.cpp, with a text editor: #include <iostream> using namespace std; v...
2017-08-21, 3966🔥, 0💬

Install C++/CLI Support with Visual Studio Installer
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CLI applications. If you want to install "C++/CLI Support" with Visual Studio Installer, you can follow this tutorial: 1. Close "Visual Studio". And run "All Programs > Visual Studio Installer". ...
2023-06-19, 3720🔥, 0💬

Application Release Build with Visual Studio 2017
How to make application release build with Visual Studio 2017? If you want to make a final release build with your application in Visual Studio 2017, you can follow this tutorial: 1. Click "Build > Clean Solution" menu. You see debugging files removed. 2. Change the build configuration from D...
2023-10-27, 2873🔥, 0💬

Error on Building C++/CLI Programs
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Visual C++ supports the C++/CLI (Common Language Infrastructure) programming language, which has additional types and operators to target the .NET programming model. It is done by using the CLR (Common ...
2023-06-19, 2503🔥, 0💬

"cl" - Compile and Link C++ Program
How to use "cl" command tool to compile and link a C++ program? If you want to compile and link a standard C++ program with "cl" command tool, you can follow this tutorial: 1. Create a simple C++ program, Hello.cpp, with a text editor: #include <iostream> using namespace std; void main...
2017-08-21, 2489🔥, 0💬

"MyLib.cs" - VC# Class and Library
How to create a VC# class and build it into a library? If you want to create a VC# class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.cs, with a text editor: // MyLib.cs // Copyright (c) FYIcenter.com using System; namespace fyi { public clas...
2017-08-06, 2464🔥, 0💬

"Hello.c" - Compile and Run C Program
How to use Visual Studio command tools to compile and run a C program? If you want to compile and run a standard C program with Visual Studio command tools, you can follow this tutorial: 1. Create a simple C program, Hello.c, with a text editor: #include <stdio.h> void main() { printf(...
2017-08-21, 2409🔥, 0💬

Visual Studio 2017 .NET Program Folders
In which folders Visual Studio 2017 .NET programs are located on my Windows computer? When Visual Studio 2017 .NET is installed on your Windows computer, its programs are located the following folders: .NET Framework location: C:\Program Files (x86)\Microsoft.NET .NET Framework support for Visual St...
2017-09-19, 2292🔥, 0💬

"MyLibApp.cs" - Call VC# Class from Library
How to call a function from a VC# class provided in a library? If you want to call a function from a VC# class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp...
2017-08-06, 2272🔥, 0💬

"MyLib.vb" - VB Class and Library
How to create a VB class and build it into a library? If you want to create a VB class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.vb, with a text editor: ' MyLib.vb ' Copyright (c) FYIcenter.com Public Class MyLib Public Shared Sub PrintHel...
2017-08-13, 2177🔥, 0💬

Create Visual Basic Project in Visual Studio 2017
How to Create a Visual Basic Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual Basic program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File > New &...
2023-09-16, 2147🔥, 0💬

"MyLibApp.vb" - Call VB Class from Library
How to call a function from a VB class provided in a library? If you want to call a function from a VB class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp.v...
2017-08-13, 2129🔥, 0💬

Create Visual C# Project in Visual Studio 2017
How to Create a Visual C# Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual C# program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File > New > P...
2017-08-13, 2047🔥, 0💬

WPF App with VC# and XAML in Visual Studio 2017
How to build a WPF application with VC# and XAML in Visual Studio 2017? If you want to build a WPF (Windows Presentation Foundation) application with VC# and XAML in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt...
2017-08-13, 1978🔥, 0💬

Windows SDK 8.1 Program Folders
In which folders Windows SDK 8.1 programs are located on my Windows computer? When Windows SDK 8.1 is installed on your Windows computer, its programs are located the following folders: Location: C:\Program Files (x86)\Windows Kits\8.1 Programs: .\bin\x86\certmgr - x86 ECM Certificate Manager .\bin\...
2023-10-27, 1941🔥, 0💬

First C++ Program in Visual Studio 2017
Where to find tutorials on writing First C++ Program in Visual Studio 2017? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on writing First C++ Program in Visual Studio 2017? Create C++ Project with Visual Studio 2017 C++ Console Application with...
2023-12-01, 1922🔥, 0💬

C++ Console Application with Visual Studio 2017
How to write a C++ console application with Visual Studio 2017? A console application runs in a Windows command console without any graphical user interface. You can follow tutorial to write your first new console application in C++ with Visual Studio 2017. 1. Start Visual Studio 2017 with Visual C+...
2023-12-01, 1893🔥, 0💬

"MathLibrary.h" - Header File of DLL Library
How to create a C++ Header File for DLL (Dynamic Link Library)? Using a Dynamic Link Library (DLL) is a great way to reuse code. Rather than re-implementing the same routines in every program that you create, you write them one time and then reference them from apps that require the functionality. B...
2023-09-16, 1891🔥, 0💬

VB Command Line Compiler in Visual Studio 2017
How to use the VB command line compiler provided by Visual Studio 2017? If you want to use the compile your VB code from the command line, you can follow this tutorial to use the VB command line compiler provided in Visual Studio 2017: 1. Create a simple VB console application program, Hello.vb: Mod...
2023-04-25, 1889🔥, 0💬

1 2 3 > >>   Sort: Date