Welcome to RightHand's community place
Sign in
| |
Help
Righthand blogs
Miha Markič [MVP C#]
e-mail
twitter
Miha is a .net consultant and developer. Since 2000 he has been active in Developer Express' DX Squad and has been ECDL trainer and tester. In 2003 he started his own business – Righthand, specializing in consulting and programming (chiefly for US partners). He also gives lectures on conferences and other events in Slovenia. He has been awarded title of Microsoft Most Valuable Professional in Visual C# for active support in newsgroups and expertise in .net technologies
INETA Country Leader for Slovenia
This Blog
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
.net
.net 3.5
.net 4.0
Announcement
Arduino
ASP.Net
Book Review
Building a computer
DevExpress
DirectX
GPS
Graphics
Hardware
HLSL
IPTV
LINQ
LLBLGenPro
Microcontroller
Non-tech
ORM
Parallel programming
Profiling
Silverlight
SloDUG
Slovenia
SQL
Virtualization
Visual Studio 2005
Visual Studio 2008
Visual Studio 2010
Visual Studio Add In
Visualizer
VMWare
WCF
webheadsinaction
Windows
Windows 7
Windows Live
Windows Mobile
Navigation
Home
Blogs
Forums
Photos
Downloads
Archives
februar 2009 (9)
januar 2009 (9)
december 2008 (1)
november 2008 (6)
oktober 2008 (6)
september 2008 (3)
avgust 2008 (2)
julij 2008 (3)
junij 2008 (6)
maj 2008 (5)
marec 2008 (5)
februar 2008 (4)
januar 2008 (10)
december 2007 (6)
november 2007 (10)
oktober 2007 (10)
september 2007 (4)
avgust 2007 (14)
julij 2007 (7)
junij 2007 (12)
maj 2007 (7)
april 2007 (9)
marec 2007 (6)
februar 2007 (8)
januar 2007 (12)
december 2006 (10)
november 2006 (12)
oktober 2006 (14)
september 2006 (16)
avgust 2006 (12)
julij 2006 (7)
junij 2006 (12)
maj 2006 (16)
april 2006 (5)
marec 2006 (6)
februar 2006 (14)
januar 2006 (11)
december 2005 (18)
november 2005 (18)
oktober 2005 (10)
september 2005 (11)
avgust 2005 (10)
julij 2005 (9)
junij 2005 (8)
maj 2005 (10)
Articles
Extending LLBLGenPro's ResultsetFields to work like List
Using page fragment caching and AJAX thing
Implementing more useful tracing for LLBLGenPro 2.0
Righthand Dataset Debugger Visualizer
Community
SLODUG/CodeZone.si
SLOWUG
Kodirnica
Slovenska Office skupnost
MVP
Matevž Gačnik
Sahil Malik
Frans Bauma
Ernst Kuschke
W. G. Ryan
Dejan Sarka
Andrej Tozon
Other bloggers
Dustin Campbell
RightHand
RightHand .net consulting
Useful tools
Developer Express
GOLD - parser
Code Smith
junij 2007 - Posts
28. junij 2007 13:16
Can you spot the problem?
Check out this code: static void Main( string [] args) { string test = null ; Console.WriteLine( " Is test null: " + test == null ); Console.ReadLine(); } And guess the output without running the code.
Posted by
Miha Markic
|
7 Comments
Filed under:
.net
23. junij 2007 9:38
iTunes developers should start using iTunes
If you have an iPod you are more or less stuck with iTunes. If iTunes was perfect this wouldn't be that bad. However, it isn't perfect, far from it. Apple is creating superior software, right? Wrong. Just take for example this problem I've found. Let's
Posted by
Miha Markic
|
1 Comments
Filed under:
Windows
18. junij 2007 10:36
To Dispose or not to Dispose
The question whether "I need to Dispose some object" appears fairly often in newsgroup, wrong answers and myths appear even more often. So I thought of writing my comments on the issue - it is not supposed to be a detailed and complete reasoning and I
Posted by
Miha Markic
|
0 Comments
Filed under:
.net
12. junij 2007 15:19
Windows Genuine Advantage is legal user's worst enemy
I've never ever been a supporter for online activation process for any product. Ever. On the one hand it is usually cracked the same day it is released, so no big benefits against piracy. On the other hand it is only a burden (at best) for a legitimate
Posted by
Miha Markic
|
2 Comments
9. junij 2007 22:48
Intel Matrix Storage driver, production version 7.5.0.1017
Intel has put its Matrix Storage driver, official production version 7.5.0.1017, online. Among other improvements, it is supposed to fix iTunes/QuickTime problems for good. I have to say: finally - it was about time! Hopefully this ends months long saga
Posted by
Miha Markic
|
3 Comments
Filed under:
Hardware
,
Windows
9. junij 2007 9:17
SQL Compare 6 beta
Red Gate is preparing SQL Compare 6 product. The interesting thing about this version is that they are getting ready for supporting source control for storing database schemas. Unfortunatelly the source control support won't be a part of version 6 but
Posted by
Miha Markic
|
0 Comments
Filed under:
SQL
8. junij 2007 10:15
Answer to Dictionary<> fun trivia
Here is an answer to my previous post about Dictionary<>. The answer is yes, it is possible that added instance can't be found later on. Consider this, a bit modified, piece of code: class Program { static void Main( string [] args) { Dictionary
Posted by
Miha Markic
|
2 Comments
Filed under:
.net
6. junij 2007 11:39
Dictionary<> fun
Here is a brief trivia. Take a look at this piece of code: Dictionary < Tubo, object > dictionary = new Dictionary < Tubo, object > (); Tubo tubo = new Tubo(); dictionary.Add(tubo, new object ()); // some code here and there bool keyExists
Posted by
Miha Markic
|
2 Comments
Filed under:
.net
5. junij 2007 21:21
Want to build your own IDE?
No problem. Microsoft announced Visual Studio Shell product . Just use the pieces and parts of Visual Studio, put them together and voila, there is your IDE. At least theoretically. Anyway, this is an interesting and I would say very welcome move even
Posted by
Miha Markic
|
0 Comments
Filed under:
.net 3.5
1. junij 2007 15:44
Accessing controls in OnPreInit method might be tricky when MasterPage is used
Today I've come across an odd problem. I had to set SkinID property of a control dynamically and this step can be achieved only during PreInit event (OnPreInit method). It is a no brainer implementing the code on standalone Page. protected override
Posted by
Miha Markic
|
0 Comments
Filed under:
.net
,
ASP.Net
1. junij 2007 10:49
Comparing strings
Comparing two strings is easy and simple, right? Wrong. Check out this article which deals with string comparison in .net 2.0. As an exercise guess the output of this piece of code: Thread.CurrentThread.CurrentCulture = new CultureInfo( " tr-TR "
Posted by
Miha Markic
|
2 Comments
Filed under:
.net
1. junij 2007 9:55
Microsoft ORM saga revealed
Matt Warren talks about what happened to ObjectSpaces, WinFS and why Microsoft is going with LINQ to SQL as sole ORM product in Orcas wave. Very interesting read I have to say and kudos to Matt for such a revealing post. It actually reveals many (odd
Posted by
Miha Markic
|
0 Comments
Filed under:
ORM
,
.net 3.5