Welcome to RightHand's community place Sign in | Join | Help

Browse by Tags

All Tags » .net

Creating wrappers for sealed and other types for mocking

Did you ever wanted to mock a sealed class or non-virtual methods? Unless you are using TypeMock you are in for some coding as there is no easy way to mock them just like that (I am fiddling with MOQ but AFAIK no mock framework is capable of mocking sealed
Posted by Miha Markic | 2 Comments
Filed under: ,

SharePoint 2007 training with Sahil in Europe

Sahil "SharePoint dude" Malik will be doing advanced SharePoint 2007 training in Norway . Yep, that's the same Sahil that blogs like mad about SharePoint . So if you are into SharePoint development you are having a great opportunity to learn from the
Posted by Miha Markic | 0 Comments
Filed under:

Developer Express steps into WPF

Developer Express , my favorite 3rd party .net component vendor, has just made its first public step into Windows Presentation Foundation world. They released a beta version of their charting product DXCharts for WPF (hey, where are those Xtra, Xpress,
Posted by Miha Markic | 0 Comments
Filed under: ,

ASPxGridView, MS Ajax and XYDataSource

If you use Developer Express ASPxGridView within MS Ajax' UpdatePanel (ASPxGridView.EnableCallBacks="False") you should be aware that you should perform DataBind() method within OnInit method (Init event). Otherwise editing just won't
Posted by Miha Markic | 2 Comments
Filed under: , ,

The time of "Vote for XY product" is here again

asp.netPRO started voting process for asp.netPRO Readers' Choice Awards 2008 as they do every year. And all of the 3rd party component vendors are asking for your vote, as usual. Nothing wrong there. But there are two things that I noticed during my voting.
Posted by Miha Markic | 0 Comments
Filed under: ,

telerik supporting Mono?

Looks like telerik is going to support Mono . This news is certainly interesting for Mono guys as it might give wings to Mono. Which is a good thing, indeed. However, the support (if it is going to happen) will probably be limited to asp.net components
Posted by Miha Markic | 2 Comments
Filed under: ,

Revolutionary approach to check whether connection to database will work for next command

As we all know, an open connection to database server might drop for a reason or another whenever. And a dead connection is one of the reasons that our command against database server might not succeed - instead we'll get an exception. I mean, you can't
Posted by Miha Markic | 5 Comments
Filed under:

Righthand Dataset Debugger Visualizer goes 2008 and looses expiration restriction at the same time

As a (late) new year gift I've removed annoying expiration restriction from my dataset debugger visualizer. Find the 0.9.12 update here . I've also rebuilt it for Visual Studio 2008 version which will be the only one supported from now on. Find the 0.9.12

Righthand Dataset Debugger Visualizer

RightHand.DataSet.Visualizer is an MDI application that lets you inspect DataSet structure and its data plus tons of other useful operations on DataSet. Why would I need a DataSet visualizer? How often does a programmer wonder what data a dataset holds?

Slovenia/1st European Silverlight Challenge

SLODUG has launched the Slovene website of the 1st European Silverlight Challenge . You can read more about it in this post (in Slovene) or go directly to the website (also in Slovene). Believe in your talent! Take part in the “European Silverlight

Visual Source Safe 2005 over web problem 0x80072F19

Did you ever try VSS 2005 Internet connection? I did once just for testing. I need it now for real, to connect to a client of mine. The client set everything up and I tried to connect. I tried to connect and got a connection error. This was easy to pinpoint
Posted by Miha Markic | 0 Comments
Filed under: ,

Assigning default values to fields trivia

class Tubo { bool value; bool TuboTubo() { return value; } } Will this piece of code compile (answer without compiling, please )?
Posted by Miha Markic | 3 Comments
Filed under:

How do you assign default values

In previous post I was asking whether a method returning an unassigned variable will compile and the answer is no, it won't. So this brings an interesting question, how do you initialize default values? Are you doing something like this (1) - assigning
Posted by Miha Markic | 4 Comments
Filed under:

Assigning default values to variables trivia

bool Tubo( string text) { bool value; if (text == " Tubo " ) value = true ; return value; } Will this piece of code compile (answer without compiling please )?
Posted by Miha Markic | 7 Comments
Filed under:

Speeding up build times dramatically

I have a VS 2005 solution with 19 projects.In total it consumes ~600MB of disk space (entire solution folder, including binaries). Needless to say that build times are relatively high. They are high even though my workstation has 4GB of RAM, RAID 0+1
Posted by Miha Markic | 3 Comments
Filed under: , ,
More Posts Next page »