Category Archives: C++

SB Admin 2 Bootstrap Theme – Visual Studio 2017

I have updated the SB Admin 2 theme to match with Visual Studio 2017 . I have also updated all the nuget packages related. Features SB Admin 2 Bootstrap admin theme, dashboard template, or webapp UI starter. The theme features a variety of custom jQuery plugins to add extended functionality past the built in Bootstrap… Read More »

Configuring Email in SQL Server Express

Its a known issue that SQL Server express edition wont support Email . TO overcome this we can use CLR based email stored procedure.   Step 1 : Compile the VB code and convert as a dll. Code : Imports System.Net.Mail Public Class StoredProcedure <Microsoft.SqlServer.Server.SqlProcedure()> _ Public Shared Sub spSendMail(ByVal recipients As String, ByVal subject… Read More »

c++ function to return mnm of 2 numbers

Condition : numbers should asked when function is executed:   #include <iostream> using namespace std; int minnummber() { // local variable declaration int result, num1, num2; cout << “Enter first number :: “; cin >> num1; cout << “Enter second number :: “; cin >> num2; if (num1 > num2) result = num2; else result… Read More »

Category: C++