Blog

Egypt ranks first internationally for outsourcing services in 2016 by GSA

Egypt won the first prize in outsourcing services for 2016, after being selected by the jury of the Global Sourcing Association (GSA) competition.The award was announced on 6 October in Sofia, Bulgaria, during the GSA Leadership Summit, in the presence of more than 200 prominent leaders of the IT industry...

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 EPPlusAfter installing we are going to need to use this namespace:using OfficeOpenXml;I got an exception while...

Show alert or run JavaScript function after showing the appointment popup in DevExpress using VB.NET

You should handle the CustomJSProperties event and add in properties collection the script which you are going to run it.Please find below server side code:Dim script As String = Nothing Dim disablePopup As Boolean = falseProtected Sub ASPxScheduler1_AppointmentFormShowing(sender As Object, e As AppointmentFormEventArgs) Handles ASPxScheduler1.AppointmentFormShowing...

How to use Active Directory Membership Provider in ASP.NET

The ASP.NET membership feature provides secure credential storage for application users.We will use The following:Web page named Login.aspx and another web page named CreateUser.aspxLogin Control.Create User Wizard Control.Steps:1- Configure Forms Authentication in Web.config file.To configure forms authentication, set the <authentication> element's mode attribute to "Forms" and then configure your application's...

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 ApplicationThis 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...

How to use SQL Membership Provider in ASP.NET

The ASP.NET membership feature provides secure credential storage for application users.We will use the following:Web Page Named Login.aspx and another Web Page named CreateUser.aspxLogin Control.Create User Wizard Control.Steps:1- Configure Forms Authentication in Web.config FileTo configure forms authentication, set the <authentication> element's mode attribute to "Forms" and then configure your application's...