Tag - C++

Best Programming Languages for Games

The creation of video games is a successful industry. The approximate $200 billion worldwide gaming market is expected to increase during the upcoming years. Hence, more businesses are being intrigued by game development. You must be aware of the programming languages that work best for game creation if you want to create games. There are...

Getting Started With Mobile Application Architecture

High competitiveness motivates businesses to constantly improve their services, making them more convenient, faster, and easier to access. Building a mobile application is one of the most effective ways to increase brand awareness and gain a desired position in customers' mobile devices. According to Statista, there are 3.5 billion mobile phone users worldwide in 2020,...

Synchronous vs. Asynchronous Programming

Synchronous and asynchronous programming styles are two distinct programming styles, each with its own set of benefits and drawbacks. You may not understand what these terms mean right now, but once you do, you'll understand why knowing the difference is critical to your team's success. Stay tuned for more information on synchronous vs. asynchronous programming! What Is...

Introducing to Function as a Service (FaaS)

You've probably heard of SaaS, PaaS, and IaaS, but have you ever heard of Function as a Service (FaaS)? The FaaS market is rapidly expanding. In 2018, the market was worth $3.01 billion, according to Allied Market Research. This figure is predicted to rise to $24 billion by 2026, implying a Compound Annual Growth Rate...

Getting Started with Blazor

JavaScript frameworks are widely used in the development of web applications. Instead of using JavaScript frameworks, Microsoft released Blazor (Vue, Angular, React etc.). In this article, we'll learn more about Blazor. What is Blazor? Blazor is a new open-source and cross-platform framework developed by Microsoft's ASP.NET team for building interactive client-side UI. It was first released...

Subdomain Mapping in ASP.NET Boilerplate

In AbpTenants table in the database. You can add your custom properties to Tenant class.AbpTenant class defines some basic properties, the most important properties are: TenancyName: This is a unique name of a tenant in the application. It should not be changed normally. It can be used to allocate subdomains to tenants like 'mytenant.mydomain.com'. Tenant.TenancyNameRegex constant defines the...

Using EPPlus library to manage excel spreadsheets in .NET

EPPlus is a library to manage excel spreadsheets, using OOXML. To install EPPlus, you can search for EPPlus in "NuGet Package Manager" or simply run the following command in the "Package Manager Console": PM> Install-Package EPPlus After installing we are going to need to use this namespace: using OfficeOpenXml; I got an exception while reading from an excel...

How to create AutoComplete Textbox in Windows Forms Application using C#.NET

I'll show you how to create AutoComplete Textbox in a Windows Forms Application This time we're going to get the data from MS Access Databaseso let's get starting! 1- Create Windows Forms Application.2- Add Textbox Control.3- Copy the below code into your form. AutoCompleteStringCollection stringCollection = new AutoCompleteStringCollection(); private void AutoCompleteTextBox() { OleDbConnection aConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\Test.mdb"); ...

How to connect to Team Foundation Server (TFS) using C#.NET

I will show you how to connect to Team Foundation Server (TFS) and add work item via code.First you must install TFS SDK, you can download Team Foundation Server SDK from the below link:http://www.microsoft.com/downloads/details.aspx?FamilyID=7e0fdd66-698a-4e6a-b373-bd0642847ab7&DisplayLang=en Steps:1- Create windows or web Application2- Add References for :Microsoft.TeamFoundation.ClientMicrosoft.TeamFoundation.WorkItemTracking.Client3- The below code will help you to work with Team Foundation...