windows vista

Bought new computer, “Acer Aspire x3200″, with windows vista home premium inside. Plugged in all the devices I had (printer, web cam, monitor, pda cradle, mouse, keyboard) and started it up. Some Acer disk image software started to restore/configure windows vista partitition. Computer rebooted it self and windows vista exposed a blueish screen with [...]

c#.NET file acces denied problem

I was trying to access a file with the user having only read permission. the code looked like:

FileStream fs =new FileStream( “c:\path\to\file.ext”, FileMode.Open);

and it uset to throw exception “access denied”. After some investigations I’ve found that FileAccess.Read helps a lot. FileStream fs = new FileStream( “c:\path\to\file.ext”, FileMode.Open, FileAccess.Read);

MDX complement operator problem

Playing with Microsoft SQL Server Analysis services 2005 and MDX language. Could not find many resources or error reference on the internet.

The following MDX query was created using query painter: Select (-({[My Dimension].[My Hierarchy].[My Level].&[Not existing member]})) ON COLUMNS FROM [My Cube] Executing this query results in an error:

Set used with the [...]