Posted by Mohamed Abdeen | Posted in Uncategorized | Posted on 29-06-2011
0
Of course, all of us know the that from .Net 3.0 we have many new components. from this components is Windows presentation foundation (WPF) to present new user interface for windows application. Actually, WPF is the successor to windows forms for desktop application development. WPF applications differ from traditional windows forms applications in serveral ways the most notable of which is that the code for the user interface is separate from the code for application functionality, so we can summarize that now we can develop windows applications user interface in two ways:
- Traditional windows forms
- Windows presentation foundation
In this post and the following posts i will explain more about the WPF but with examples so in every post i will explain one example which illustrate more controls, concepts of WPF through i will raise my slogan in this series “Less Words More Practice”. unlike any other your first application “Hello World”, we will do the difference So, concentrate on the following example … Ready Steady Go …
Concept 1
The user interface defined using a relatively new declarative syntax called extensible application markup language (XAML)
Don’t stop and start your debug process every time, Press in your Restart Button

To increase your productivity remove mouse from your life and replace it with Keyboard. @your work depend more on shortcuts, so please have a look on the following link which include Increase Your Productivity
Posted by Mohamed Abdeen | Posted in Uncategorized | Posted on 21-09-2010
0
i found through my search on the internet, how to deploy reports in integrated mode SharePoint and i hope to share this links with you
Step 1: SQL Server Installation
[My Note:
Use the SQL Server Network Configuration area to enable connection protocols as follows:
- Named Pipes Enabled
- TCP/IP Enabled
]
Step 2: SharePoint 3.0 Installation
Step 3: Configuring Reporting Services for SharePoint 3.0 Part 1
[My Note:
Report Server Configuration for SharePoint Integrated Mode
]
Step 4: Configuring Reporting Services for SharePoint 3.0 Part 2
[My Note:
SharePoint Central Administration
Download Microsoft SQL Server 2008 Reporting Services Add-in for Microsoft SharePoint Technologies Installation (Download)
- Open site Settings page
- Site Action
- Site Settings
- Site Collection features
- Activate the report server integration feature
]
Step 5: Installing SQL Server 2008 Samples: Adventure Works
Step 6: Report Creation and Deployment in SharePoint 2007
Posted by Mohamed Abdeen | Posted in Uncategorized | Posted on 20-09-2010
0
i worked for building medium application of enterprise customer, it was desktop application. in one meeting with my friend when i discuss with him some technical issue, he told me let’s use Strategy Design Pattern. honestly, i don’t know it but after he explained for me i am very interesting about it and determine to write new post about it
from my search through internet Strategy DB Define a family of algorithms, encapsulate each one, and make them interchangeable. Strategy lets the algorithm vary independently from clients that use it.
- Strategy: declare common interface to all supported algorithms
- Concrete Strategy: implementation of the algorithms
- Context: configured with a concrete strategy, maintains a reference to a strategy object
http://sourcemaking.com/design_patterns/strategy