Welcome to DevAuthority.Com Sign in | Join | Help

June 2007 - Posts

Safe saw

My wife's next birthday present: http://view.break.com/291378 - Watch more free videos
posted by Samuelson | 0 Comments
Filed Under:

Microsoft using a cracked version of Sound Forge 4.5?

So it seems... Do the following:Click "My Computer"Double click the C:/ Drive (Local Disk)Double click the "WINDOWS" folderDouble click the "Help" folderDouble click the "Tours" folderDouble click the "WindowsMediaPlayer" folderDouble click the "Audio"
posted by Samuelson | 0 Comments

Are You Ready for 2008? C# 2.0 to C# 3.0 course

Following my previous post, I want to talk more about the course I am going to teach: C# 2.0 to C# 3.0  Course Description: C# 3.0 introduces several language extensions that build on C# 2.0 to support the creation and use of higher order, functional
posted by Samuelson | 0 Comments
Filed Under:

Are You Ready for 2008? C# 2.0 to C# 3.0 course

Following my previous post, I want to talk more about the course I am going to teach: C# 2.0 to C# 3.0  Course Description: C# 3.0 introduces several language extensions that build on C# 2.0 to support the creation and use of higher order, functional
posted by Samuelson | 0 Comments
Filed Under:

Are You Ready for 2008? Experts4D bring Experts instructors to teach expert courses.

If you live in Israel and still did not hear about the coming Microsoft technologies event Are You Ready for 2008, this is the time to wake up call!. Look what Experts4D has offer and sign up for one or more of the following exclusive courses.
posted by Samuelson | 0 Comments
Filed Under:

Lego Ultrasonic Radar

Project description:The Devantech SFR04 Ultrasonic Range Finder indicates the distance to the closest object within range. Echo’s that arrive later are received and processed, but subsequently ignored. For a true radar all signals should be taken into
posted by Samuelson | 0 Comments
Filed Under:

Abracadabra origin.

Have you even wondered what is the origin for this word? I am sure this is going to be quite a shock for some of my Israeli readers. The origin is from Hebrew/Aramic - Avrei Kadaber, 'I Will create as I speak'. Via http://www.etymologic.com The
posted by Samuelson | 0 Comments
Filed Under:

The Internet Clipboard

Have you ever had this moment when you wanted to simply copy and paste something from one computer to another? Enter a URL that starts with http://cl1p.net. example: http://cl1p.net/warlike/ Paste in anything you want. Some text or even a small
posted by Samuelson | 0 Comments
Filed Under: ,

CopySourceAsHtml now for Orcas beta 1

If you are not familiar CopySourceAsHtml AddIn for Visual Studio you can read about it here (This is the addin I use to post code in my blog). Since this addin does not work with Visual Studio Orcas and currently Orcas is my main development
posted by Samuelson | 1 Comments
Filed Under:

Control.Invoke in C# 3.0 - part 2

After part 1 we can now make the code even more readable by creating Extension Method to System.Windows.Forms.Control public static class ControlExtentions {     public delegate void InvokeHandler();       public
posted by Samuelson | 1 Comments

Control.Invoke in C# 2.0 and C# 3.0

In C# 2.0 using anonymous methods this code will be: private delegate void InvokeHandler();   public void UpdateStatus(int currentFile, string status) {     if (transfer.InvokeRequired)     {    
posted by Samuelson | 0 Comments

var Microtrix = Microsoft + TheMatrix;

 This was sitting in my mail for a while, don't know how I missed it. This I loved the most :-) You can find the rest here Cross-post from http://blogs.microsoft.co.il/blogs/samuelson
posted by Samuelson | 0 Comments

Thoughts about binding dynamic user controls using LINQ

I am working on a small application which allow the user to create object prefix and suffix. I thought of creating the user controls dynamically and after a few minutes I wrote this cool code sample (not very optimized) that bind a
posted by Samuelson | 0 Comments