Tuesday, June 23, 2009

Differences between SET and SELECT in SQL Server

Always when we find two ways to do the same thing .we begin to think why,which is best and which is more suitable for me .i found something interested about the difference between Set and Select when we assign value to SQL variable . follow this link:
Differences between SET and SELECT in SQL Server : Narayana Vyas Kondreddi's home page

Thursday, June 11, 2009

Friday, January 9, 2009

Using the Google search API from ASP.NET

If you like to search web through Google and list results in your site the following link will be useful for you , i found it through Google search: Click here

Wednesday, April 16, 2008

Cosmos what`s next ?

In the previous days i found something really good on codeplex.com , it is new open source project called "Cosmos" this project depend on running Microsoft intermediate language without operating system (it creates real time kernel) , this means you can run your c# program just by booting from CD
i`ll let you see the project page and read documentation , please follow this link

http://www.codeplex.com/Cosmos

Recently , i know that this project showed in Microsoft EDC (Egyptian Developer Conference) but i did not have the chance to attend to the conference , you can wait until the videos of the conference be available and i`ll paste a link here for this session

this is another resources and examples :

http://gocosmos.org/
http://www.gocosmos.org/Docs/UserKit/index.en.aspx
http://lab.obsethryl.eu/content/cosmos-one-opensource-csharp-c-based-kernels

Saturday, March 29, 2008

Microsoft EDC Website

EDC 2008, Cairo, Egypt.
Cairo International Conference Center
April 13th - 14th

EDC 2008 is the biggest Developers Conference of the year in Egypt, and is a critical event for any developer who wants to see the newest as well as the next-generation technology. EDC is full of sessions and activities that help you to learn the current and the future of the Microsoft Platform and get to know people who are as passionate about software as you are.


You will found Microsoft EDC 2008 web site
here

You will found Microsoft EDC 2008 Agenda here

Wednesday, March 19, 2008

Change MDI Container Background Color

MdiClient ctlMDI;

// Loop through all of the form's controls looking
// for the control of type MdiClient.
foreach (Control ctl in this.Controls)
{

try
{
// Attempt to cast the control to type MdiClient.
ctlMDI = (MdiClient)ctl;

// Set the BackColor of the MdiClient control.
ctlMDI.BackColor = this.BackColor;
}
catch (InvalidCastException)
{
// Catch and ignore the error if casting failed.
}

}

Sunday, March 9, 2008

Collection of WCF Sessions

This is a collection of videos i found through youtupe, i hope that this videos be useful for someone.

http://www.youtube.com/view_play_list?p=2471E942C68A6925

Source profile here

Saturday, March 8, 2008

Creating a simple user interface with MonoDevelop

I watched this video on Youtube , and i really like it - Can we make good C# applications without errors of visual studio , moreover on Linux .