rss
twitter
  •  

Windows Presentation Foundation 4.0 Examples: Ex 1

| Posted in Uncategorized |

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:

  1. Traditional windows forms
  2. 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)

Restart your Debug @Visual Studio

| Posted in .Net Framework, C#, Microsoft Visual Studio |

0

Don’t stop and start your debug process every time, Press in your Restart Button

T

Visual Studio Shortcuts

| Posted in .Net Framework, C#, Microsoft Visual Studio |

0

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

Integrate Reporting Service 2008 with SharePoint 3.0

| Posted in Uncategorized |

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)

  1. Open site Settings page
  2. Site Action
  3. Site Settings
  4. Site Collection features
  5. Activate the report server integration feature

]

Step 5: Installing SQL Server 2008 Samples: Adventure Works

Step 6: Report Creation and Deployment in SharePoint 2007

Strategy Design Pattern

| Posted in Uncategorized |

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. 

  1. Strategy: declare common interface to all supported algorithms
  2. Concrete Strategy: implementation of the algorithms
  3. Context: configured with a concrete strategy, maintains a reference to a strategy object

 

http://sourcemaking.com/design_patterns/strategy