Microsoft Developers Conference 2016
Marwa Hassan2026-05-17T07:06:08-04:00Nile Bits team is attending Microsoft Developers Conference 2016. With a special speech from Satya Nadella CEO of Microsoft.
Show alert or run JavaScript function after showing the appointment popup in DevExpress using VB.NET
Amr Saafan2026-05-17T07:06:09-04:00You 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...
Web Summit 2014 (Dublin, Ireland)
Marwa Hassan2026-05-17T07:06:09-04:00Our CEO Mr. Amr Saafan proudly presents Nile Bits at the web summit 2014
SQL Server 2012 auto identity column value jump bug!
Amr Saafan2026-05-17T07:06:10-04:00I am working on a database using SQL Server 2012. There is a table named Order has an auto Identity Column named OrderId datatype is int .I noticed that the sequence of the identity is just not right. It has jumped with 1000.After research about this issue, I found that...
How to use Active Directory Membership Provider in ASP.NET
Amr Saafan2026-05-17T07:06:10-04:00The 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
Amr Saafan2026-05-17T07:06:11-04:00I'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
Amr Saafan2026-05-17T07:06:12-04:00The 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...
How to connect to Team Foundation Server (TFS) using C#.NET
Amr Saafan2026-05-17T07:06:12-04:00I 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=enSteps:1- Create windows or web Application2- Add References for :Microsoft.TeamFoundation.ClientMicrosoft.TeamFoundation.WorkItemTracking.Client3- The below code will help you to...
Warn the user before navigating away from a web page using JavaScript
Amr Saafan2026-05-17T07:06:13-04:00In rich client applications, it is easy to check to see if a document has been modified and react when the user closes the program or document. Not so easy with web pages.For example, when you close Microsoft Word without saving, you get a warning and the option to...

