Archive for April, 2007
How to: Browse a storage card on Windows Mobile using System.IO classes
Posted by suddenelfilio in General on 30/04/2007
Since the root of any storage card is represented as a directory inside of the root of the device, you can iterate all directories inside the root folder (“/”) and check their attributes to see if they comply to be a storage card. use the following code to look for a storage card:
Public Function GetStorageCard() As DirectoryInfo Dim deviceRoot As New DirectoryInfo("/") For Each dir As DirectoryInfo In deviceRoot.GetDirectories() If dir.Attributes = FileAttributes.Directory AndAlso _ dir.Attributes = FileAttributes.Temporary Then Return dir End If Next End Function
Enjoy !
New section: “Projects”
Posted by suddenelfilio in General on 26/04/2007
I’ve added a new section called “Projects” to the blog. Here you will find all sorts of mostly small projects that kept me busy in my free time. Comming soon will be the WM 6.0 FileBrowser control and other stuff as well.
So check it out later on!
Visual Studio Orcas Beta available !!!
Posted by suddenelfilio in .net, Asp.net, General on 20/04/2007
I saw the notice on Informationweek that Microsoft released a beta of the VS.net Orcas.
Find out more here.
Developer Highway Code
Posted by suddenelfilio in .net on 19/04/2007
While browsing my saved feeds I found the following free ebook that you can download from msdn. I think I will read this one since we are currently doing something similar.
To build software that meets your security objectives, you must integrate security activities into your software development lifecycle. This handbook captures and summarises the key security engineering activities that should be an integral part of your software development processes.
These security engineering activities have been developed by Microsoft patterns & practices to build on, refine and extend core lifecycle activities with a set of security-specific activities. These include identifying security objectives, applying design guidelines for security, threat modelling, security architecture and design reviews, security code reviews and security deployment reviews.
Wow that’s fast!!!
Posted by suddenelfilio in General on 19/04/2007
Steeve’s BlendPanel
Posted by suddenelfilio in Uncategorized on 19/04/2007
A colleague of mine wrote a small, but very nice component called “BlendPanel” I know there are already versions, but anyways it’s a very nice component.I’ve added it as an attachment to this post, as well as a test project that you can use to play a bit with it. So thanks to Steeve for making it available to the public.
HP Compaq nx7400 quirks
Posted by suddenelfilio in General on 17/04/2007
I was trying to install windows 2003 on my portable after I uninstalled vista from it. When I ran setup it didn’t find any harddisks. Not kowing that this portable has got a SATA Hd I tried dozens of tricks to get the thing going, but none were succesful. Finally a couple of hours later I read on a forum that the little bastard has got a bios setting called SATA Native Mode and that I should set that to disabled. When I did this everyhting was fine and I could install my other OS.
How to validate someone’s microsoft certification?
Posted by suddenelfilio in Uncategorized on 17/04/2007
Well you can ask that person to share it’s transcript. This can be done by logging into the Mcp website and there select the option transcript sharing code from the menu View My in the left sidebar. He/she will have to setup a password and then submit. A transcript ID will be generated and a link will be given. Now you are ready to share your transcript.
You can verify my mcts certificate at: https://mcp.microsoft.com/authenticate/validatemcp.aspx
my transscript ID = 756698 and my password = 18101982
Giveaway of the day
Posted by suddenelfilio in General on 17/04/2007
On this site they give away a software that normally isn’t free. In general it are not that interesting titles, but now and then it’s something nice to have.
Anyways I’ve placed their “banner” on my blog you can find it when you scroll down underneath the link(s) section.
And these people represent you…
Posted by suddenelfilio in General on 16/04/2007
Last friday we had an unannounced strike at our national airport. Many reactions came to this strike but 1 in particular was rather shortminded and just plain stupid. I believe it was the Society of Flemisch Traveling Agencies (VVR) that said the following: “In the US the strikers would have been fired, in Russia they would disappear in working camps and in China they would be quietly executed.” Come on What kind of message are you sending when you make statements as these in the press??? I really was perplexed!
