October 23, 2008 • 12:31 pm
A application menu like the one you can see here is something I wish for every day at work. It would really make life easier
Just wondering in what language it was programmed because I really wonder how they got it to compile
Filed under: Uncategorized
September 11, 2008 • 10:33 pm
Filed under: Uncategorized
September 3, 2007 • 1:31 pm
A nice commercial for the Microsoft Office Communications Server 2007:
VoIP As You Are
Filed under: Uncategorized
August 28, 2007 • 9:59 am
I was looking around for some coding guidelines (.net in general) and I found the following for xaml and wpf by paul stovell. It’s a nice compilation of guidelines. Would be nice though to have it in a pdf form so I can add it to my collection
PaulStovell.NET » XAML and WPF Coding Guidelines
Filed under: Uncategorized
August 24, 2007 • 7:58 pm
I had some free time on my hands at home and I was looking for some information about SilverLight. This session demonstrates building a rich interactive application using Silverlight. We cover how to use Microsoft Visual Studio to create applications, how to create UI using XAML markup and code, how to build a custom control, how to retrieve data from a Web service, and how to manipulate data with XML and LINQ.
This video is about the following features:
- Http Networking + XML
- Web Services
- LINQ
- HTML Integration
- Mac Debugging (really nice one !!!)
Video downloads:
WMV | Zune | iPod | PSP | MPEG-4 | 3GP
Or go to the original page @ http://silverlight.net/Learn/learnvideo.aspx?video=144
Filed under: Uncategorized
August 20, 2007 • 8:08 am
For those of you that tried it might have noticed some error saying:
“Cannot find %sysdrive%\inetpub\wwwroot”
You can solve this problem by changing a registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp
Change the value from: %systemdrive%\inetpub\wwwroot
to: c:\inetpub\wwwroot
and your installation will work. At least mine did
Filed under: Uncategorized
August 17, 2007 • 5:20 pm
If you want to test SSL on IIS 6.0 you need to go through the hassle of creating a certificate and configuring IIS to allow SSL connections.
You can avoid all this with a simple execution of a small program called SelfSSL. SelfSSL is a program that creates and installs a local certificate and configures IIS for SSL.
Here are the steps to follow:
- Download the IIS 6.0 Resource toolkit from Microsoft MSDN Downloads.
- Install the toolkit.
- Open a command prompt (Start -> Run -> cmd -> [ENTER])
- Go to the following path: C:\Program Files\IIS Resources\SelfSSL
- Execute the program SelfSSL with the following command: SelfSSL.exe /T
The /T option adds the self-signed certificate to “Trusted Certificates”
list. The local browser will trust the self-signed certificate
if this flag is specified.
Happy SSL-ing
Filed under: Uncategorized