Jun 15 2009

RadDock for Winforms Q2 2009 Beta has landed

Category:Bil@l @ 06:22

Check out Telerik's new RadDock for Winforms Q2 2009 Beta:

RadDock for Winforms Q2 2009 Beta has landed

 

Enjoy it,
Regards

Tags:

Jun 12 2009

The User Profile Service failed the logon. User profile cannot be loaded.

Category: Windows VistaBil@l @ 14:11

If it happens with you that you trying to login to a Windows Vista machine and get the following message on screen:

The User Profile Service failed the logon. User profile cannot be loaded.

 

The best Forum's post to look at is this:

How to fix the Error: "The User Profile Service failed the logon. User profile cannot be loaded."

I tried the mentioned solution in that post and it worked fine for me.

Hope this helps,
Regards

Tags:

Jun 10 2009

SnippetManager by Karen Corby

Category:Bil@l @ 14:53

A very fascinating SnippetManager I noticed yesterday while attending a Mix'09 session by Karen Corby, Program Manager in Silverilght team at Microsoft, that she used throughout her session to drag text from it into the Visual Studio working area.

The SnippetManager looks something like this:


To download this SnippetManager together with its WPF soure code, please check Karen's blog post here: SnippetManager

Hope you enjoy it,
regards

Tags:

Jun 5 2009

Columns & Rows: Part I Silverlight 2.0 DataGrid Properties

Category: articles | aspnetpro | silverlight 2.0Bil@l @ 19:36

I invite you to read my latest article on ASPNETPRO magazine:

Columns & Rows: Part I Silverlight 2.0 DataGrid Properties

This is the first in a series of few articles to cover all features of the Silverlight 2.0 DataGrid.

 

Enjoy it!
Regards

 

Tags: , ,

Jun 2 2009

Error. Setup is unable to find load htmllite.dll

Category:Bil@l @ 14:26

I got the error "error. setup is unable to find load htmllite.dll" while installing the Visual Studio 2010 Beta 1.

All what you need to resolve this, is copy the "htmllite.dll" file from the contents of the VS 2010 CD into the Windows folder.

 

Hope this helps,
Regards

Tags:

May 30 2009

Telerik Sales Dashboard Demo for Silverlight and WPF

Category: silverlight 2.0 | Telerik Controls | WPFBil@l @ 20:52

Telerik just release the Telerik Sales Dashboard Demo for both Silverlight and WPF.

Check this blog post for more info on the Dashboard: Telerik Dashboard for Silverlight and WPF

 

Hope you enjoy it!
regards

Tags: , ,

May 29 2009

Telerik WebUI Test Studio

I want to invite you to check the article titled "Telerik WebUI Test Studio" on the http://www.aspnetpro.com magazine that is authored by my colleague Rawane Madi.

The article can be reached at: Telerik WebUI Test Studio

 

Good work Rawane! Keep it up.

Regards

Tags: ,

May 26 2009

Model-View-ViewModel in Silverlight

Category: MVVM Silverlight 2.0Bil@l @ 10:25

A very nice article to share that shows how to develop an MVVM Application in Silverlight 2.0.

Check the article here: Model View ViewModel in Silverlight 2.0

 

Hope you enjoy it,
Regards

Tags:

May 18 2009

XAML Power Toys for WPF and Silverlight 2.0 - V4.0

Category: silverlight 2.0 | XAML Power Toys V4.0Bil@l @ 14:22

A very nice Visual Studio 2008 SP1 Add-in that you can find handy when developing with Silverlight 2.0 is the XAML Power Toys for WPF and Silverlight.

You can create a XAML business form by using a simple form that drives you step by step in selecting in creating your rows and columns.

You can also create a XAML business form based on a domain object in your project, and much more features.

 

If you are developing in Silverlight 2.0, it is a must to check this Add-in. XAML Power Toys for WPF and Silverlight 2.0 V 4.0

Hope this helps,
Regards

Tags: ,

May 2 2009

Internal Access Modifier on C# Namespaces

Category: C# | silverlight 2.0Bil@l @ 00:08

As part of a Silverlight applicatin I am currently developing, I have a small API that ships with the application that allows extending it with more features. I had few "Default" implementations inside the API and hence I placed them within a Namespace where all classes are marked as Internal.

Now, when I started working on the app, I created a Visual Studio Blank Solution. So the Silverlight application and the API are in the same blank empty solution inside VS 2008. When I access the main Namespace of the API, I always get to see the name of the default implementations, however as empty since all classes inside it are internal. 

So how can I hide the Namespace that contains all those implementations? I read this blog here "http://www.bartlannoeye.be/blog/2008/08/06/MakeCNamespaceInternal.aspx" which helped me do what I want, but I thought of illustrating a bit more here in this post to clarify the idea more.

Rule 1: Make sure all the classes inside the Namespace you want to hide are marked as Internal.

Rule 2: If you add a reference to a project whose source code is in the same solution, you will always see the Namespace name however empty with no classes.

Rule 3: If you add a reference to a project whose source code is not present in the current application, the Namespace name that contains all internal classes will be hidden.

 

I tried it out and seems to work very nice.

Hope this helps,
Regards

Tags: ,