1 2 >   Sort: Rank

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, 1673👍, 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, 1492👍, 0💬

WPF App with VB Code in Visual Studio 2017
How to build a WPF application with VB code to control its behavior in Visual Studio 2017? After you have created your WPF application with XAML to define its UI elements, you can follow this tutorial to add VB code to control its behavior in Visual Studio 2017: 1. Create a "WPF App (.NET Framework)...
2023-09-16, 1272👍, 0💬

WPF App with VB and XAML in Visual Studio 2017
How to build a WPF application with VB and XAML in Visual Studio 2017? If you want to build a WPF (Windows Presentation Foundation) application with VB and XAML in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File > ...
2023-09-16, 1252👍, 0💬

Release Build of VB Code in Visual Studio 2017
How to make a release build of the final executable code of my VB application in Visual Studio 2017? If you want to make a final release build of your VB application in Visual Studio 2017, you can follow this tutorial: 1. Click "Build > Clean Solution" menu. You see debugging files removed. 2...
2023-09-16, 1105👍, 0💬

What Is Visual Studio
What Is Visual Studio? Visual Studio is an Integrated Development Environment (IDE) from Microsoft that allows to develop applications for Websites, Microsoft Windows, mobile devices and other platforms. Visual Studio supports the following programming languages and technologies: Microsoft Visual C/...
2023-07-29, 1284👍, 0💬

Using Visual C++ in Visual Studio
Where to find tutorials on Using Visual C++ in Visual Studio? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Visual C++ in Visual Studio: Install Visual C++ in Visual Studio Setup Visual Studio 2017 for Visual C++ Main Features on Visual...
2023-07-29, 1198👍, 0💬

Download and Run Visual Studio 2017 Installer
How to Download and Run Visual Studio 2017 Installer? When you try to download the Visual Studio package from Microsoft Website, it actually forces you to download and run the Visual Studio Installer first. Here are the steps of How to download and run Visual Studio Installer: 1. Go to https://www.v...
2023-07-29, 1162👍, 0💬

Getting Started with Visual Studio
Where to find tutorials on Getting Started with Visual Studio? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Getting Started with Visual Studio: What Is Visual Studio Download and Run Visual Studio 2017 Installer Visual Studio Installer Progr...
2023-07-29, 1113👍, 0💬

Visual Studio Installer Program Folders
In which folders Visual Studio Installer Programs are located on my Windows computer? When Visual Studio Installer is installed on your Windows computer, its programs are located the following folders: Location: C:\Program Files (x86)\Microsoft Visual Studio\Installer Programs: vs_installer.exe - Th...
2023-07-29, 1079👍, 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, 2694👍, 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, 1888👍, 0💬

"MyLib.lib" - C++ Class and Static Library
How to create a C++ class and build it into a static library? If you want to create a C++ class and build it into a static library, you can follow this tutorial: 1. Create the header file, MyLib.h, with a text editor: // MyLib.h // Copyright (c) FYIcenter.com namespace fyi { class MyLib { public: st...
2023-06-19, 1167👍, 0💬

"MyLibApp.cpp" - Call C++ Class from Static Library
How to call a function from a C++ class provided in a static library? If you want to call a function from a C++ class provided in a static library, you can follow this tutorial: 1. Specify the namespace of the C++ class: using namespace fyi; 2. Reference the function with the class name prefix: MyLi...
2023-06-19, 1127👍, 0💬

Build and Run C++/CLI Programs
How to build and run a C++/CLI program with Visual Studio command tools? I have "C++/CLI Support" installed. If you have "C++/CLI Support" installed with Visual Studio, you can follow this tutorial to build and run a C++/CLI program: 1. Enter the C++/CLI program, HelloCLI.cpp with a text editor: // ...
2023-06-19, 1078👍, 0💬

First Visual Basic Program in Visual Studio 2017
Where to find tutorials on writing First Visual Basic 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 Visual Basic Program in Visual Studio 2017? Create Visual Basic Project in Visual Studio 2017 WPF...
2023-05-31, 1405👍, 0💬

"MathLibrary.cpp" - Build DLL Library
How to build a C++ DLL library with Visual Studio command tools? The next step to create a DLL library is to create library source code and build the library .dll file as shown in this tutorial: 1. Create the C++ source file, MathLibrary.cpp, with a text editor: // MathLibrary.cpp : Defines the expo...
2023-05-31, 1359👍, 1💬

💬 2022-11-22 Octan: Beauty in simplicity.

What Is .NET Framework
What Is .NET Framework? .NET Framework Microsoft that provides primarily a standard program execution environment and a standard library: Common Language Runtime (CLR) - An application virtual machine that provides services such as security, memory management, and exception handling. Any application...
2023-05-31, 1284👍, 0💬

"MathClient.cpp" - Reference DLL Library
How to create and build a C++ application that reference a DLL library? I have the .h, .lib and .dll files of the library. If you want to use a DLL library provided by others, you can follow this tutorial: 1. Create the C++ source file, MathClient.cpp, with a text editor. Remember to include the Mat...
2023-05-31, 1219👍, 2💬

💬 2022-12-03 FYIcenter.com: @Octan, Thanks for the correction.

💬 2022-11-23 Octan: The correct second comment in the source file MathClient.cpp should be: // Compile by using: cl /EHsc MathClient.cpp /link MathL...

Using .NET Framework in Visual Studio
Where to find tutorials on Using .NET Framework in Visual Studio? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using .NET Framework in Visual Studio: What Is .NET Framework Install .NET Framework in Visual Studio Visual Studio 2017 .NET Prog...
2023-05-31, 1155👍, 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, 1489👍, 0💬

Windows Forms App with VB in Visual Studio 2017
How to build a Windows Forms application with VB code in Visual Studio 2017? If you want to build a Windows Forms application with VB code in Visual Studio 2017, you can follow this tutorial: 1. Click "File > New > Project" menu. You see the new project box showing up. 2. Select "Windo...
2023-04-25, 1366👍, 0💬

Console App with VB Code in Visual Studio 2017
How to build a console application with Visual Basic code in Visual Studio 2017? If you want to build a console application with Visual Basic code in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File > New > P...
2023-04-25, 1206👍, 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, 5351👍, 1💬

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

1 2 >   Sort: Rank