Sign In
Zainal Arifin
Little blog in the big web community world
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET Framework
08s
ASP.NET
C#
Debugger
Design
EBook
Edison
GUI
Hi-tech
IE
Live Meeting
Microsoft
MSDN
NBC Olympics
Self-improvement
Silverlight
UX
Virtualization
Vista
Visual Studio
Windows
Windows Update
WPF
XAML
Archive
Archives
March 2009
(1)
December 2008
(3)
November 2008
(7)
October 2008
(6)
September 2008
(9)
August 2008
(15)
July 2008
(1)
MSDN Blogs
>
Zainal Arifin
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Zainal Arifin
Internet Explorer 8 is shipped today
Posted
over 3 years ago
by
zainala
1
Comments
I just saw email from one of our company's VPs about IE8 is shipped today, and can be downloaded from here .
Zainal Arifin
Has Windows Vista issues? Use Microsoft Answers to find the solution
Posted
over 4 years ago
by
zainala
1
Comments
Look for the answers for your Windows Vista problems from Microsoft Answers site.
Zainal Arifin
Photosynth in Silverlight
Posted
over 4 years ago
by
zainala
0
Comments
This is very cool, check this out.
Zainal Arifin
Silverlight on Linux Beta is released
Posted
over 4 years ago
by
zainala
0
Comments
Soon we'll start seeing Silverlight application running on the Linux platform. More info on the project Moonlight and the plugin download can be found here
Zainal Arifin
Putting resource in separate xaml files
Posted
over 4 years ago
by
zainala
3
Comments
In Silverlight, we usually define several shared resources (i.e. definition of Color, Brush, Style, etc) in an individual xaml file (i.e. inside <UserControl.Resources></UserControl.Resources>, which scope is local to that file only) or in...
Zainal Arifin
Cool Silverlight debugging tool
Posted
over 4 years ago
by
zainala
1
Comments
This tool Silverlight Spy is pretty neat for seeing what inside Silverlight app.
Zainal Arifin
Get rid of file hiberfil.sys
Posted
over 4 years ago
by
zainala
1
Comments
I was working on my old machine running Windows XP to connect to internet (it hasn't connected to internet for years), and when installing Windows Update, the disk space on C:\ drive seems almost full. Then I noticed there's file called hiberfil.sys ...
Zainal Arifin
Changing HTML page title from Silverlight
Posted
over 4 years ago
by
zainala
1
Comments
Recently I wrote following Silverlight code and got stuck with the runtime error (as being commented below). ScriptObjectCollection soc = HtmlPage .Document.GetElementsByTagName( "Title" ); if (soc != null && soc.Count > 0) { HtmlElement...
Zainal Arifin
Generic delegate in C# 3.0 or .NET 3.5
Posted
over 4 years ago
by
zainala
3
Comments
As we do event-based programming or implement publish-subscribe pattern, we use the delegate feature from .NET heavily. The sample code below demonstrates simple usage of the feature. public delegate void DataChangedDelegate ( int oldValue, int newValue...
Zainal Arifin
Innovation, Failure and Success
Posted
over 4 years ago
by
zainala
1
Comments
I just read this pretty good book The Riddle: Where Ideas Come From and How to Have Better Ones , and at the last chapter it suggests us to discuss these three important words to help us find our conceptual creativity. Innovation : Don't innovate,...
Zainal Arifin
Incorrect installed date in Windows Update
Posted
over 4 years ago
by
zainala
1
Comments
My laptop informed me about new windows update, which then I installed it. After the installation was done, I was curious what's the update. I viewed the update history and surprised to find that the update's date installed is 1/22/2081 instead of today...
Zainal Arifin
Silverlight Toolkit November 2008 is released
Posted
over 4 years ago
by
zainala
1
Comments
The Silverlight Toolkit is a collection of Silverlight controls, components and utilities made available outside the normal Silverlight release cycle (Silverlight 2 was released about two weeks ago). The binaries, source code, documentation and samples...
Zainal Arifin
Professional Developers Conference 2008
Posted
over 4 years ago
by
zainala
0
Comments
This week Microsoft will host a big event in LA, check here .
Zainal Arifin
Model View Controller in ASP.NET
Posted
over 4 years ago
by
zainala
0
Comments
Today I just learned ASP.NET enables us to build Model View Controller (MVC) applications. I need to explore further later, and this ASP.NET site has some useful information about it. The Microsoft ASP.NET MVC Beta was released last week and can be downloaded...
Zainal Arifin
Microsoft releases Silverlight 2
Posted
over 4 years ago
by
zainala
0
Comments
The official news can be read here , but the runtime will be available for download on Tuesday, Oct 14th 2008 at this official Silverlight site . Kudo to the Silverlight folks!
Zainal Arifin
Adding a customized icon to a web page
Posted
over 4 years ago
by
zainala
1
Comments
When I type a URL on IE, the browser will display the web page and also will show an icon (most likely different from default IE icon) next to the URL name. For example, go to this MSDN site and you'll see a small msdn icon on the browser's address bar...
Zainal Arifin
Button Content behavior changes in Silverlight RC0
Posted
over 4 years ago
by
zainala
2
Comments
Recently I ran into an issue with my Silverlight application after I migrating it from Silverlight 2 Beta2 to RC0 version. Here is the sample code for sake of simple example purpose: < Grid x : Name ="LayoutRoot" Background ="White"> <...
Zainal Arifin
Silverlight 2 RC0 is available now
Posted
over 4 years ago
by
zainala
2
Comments
Silverlight 2 Release Candidate Zero (RC0) is available this week, check this official Microsoft Silverlight site for more info. It will be the last public release before Release To Web (RTW) release which would be available some time next month.
Zainal Arifin
The 10 Rules of Successful Communication
Posted
over 4 years ago
by
zainala
2
Comments
Here are the ten rules from Frank Luntz 's book "Words That Work: It's Not What You Say, It's What People Hear" I read recently: Simplicity: Use Small Words Brevity: Use Short Sentences Credibility is as Important as Philosophy Consistency...
Zainal Arifin
Debugger extension in Visual Studio - Part 2
Posted
over 4 years ago
by
zainala
2
Comments
Continuing my previous post on using type proxy for extending the debugger feature in Visual Studio, I want to provide another example using two useful debugger-related attributes: DebuggerDisplay and DebuggerBrowsable . Let's review the last output on...
Zainal Arifin
Debugger extension in Visual Studio
Posted
over 4 years ago
by
zainala
1
Comments
Visual Studio provides some nice features to allow us extending the debugging capability. This time I want to review about type proxy feature. Type proxy acts as a converter that takes a class type as input and produces a new class type as its output...
Zainal Arifin
Generate new ideas using SCAMPER techniques
Posted
over 4 years ago
by
zainala
1
Comments
The SCAMPER system was developed by Bob Eberle which we can use to brainstorm new ideas and being creative. It's acronym of seven letters described below with examples on house improvement. Technique Example of questions to use...
Zainal Arifin
AutoCollage 2008 from MS Research
Posted
over 4 years ago
by
zainala
1
Comments
Microsoft Research recently released a simple software app (called AutoCollage 2008 ) that allows us to assemble multiple photos into a collage. The tool is available for free 30-day trial which can be downloaded from here .
Zainal Arifin
Four customer values
Posted
over 4 years ago
by
zainala
3
Comments
Here are the four values which customers typically are looking for, and willing to pay higher price for a product/service being offered. 1. Convenience (i.e. easy to shop, store location is close) 2. Availability (i.e. enough supply/stock) 3...
Zainal Arifin
Another variation of using new operator in C#
Posted
over 4 years ago
by
zainala
1
Comments
I've just learned about another variation we can use in C# to instantiate a class and set its member fields or properties. It's good to know in case you haven't known about it yet. For example, let's say we have a class Foo with following code: ...
Page 1 of 2 (42 items)
1
2