DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

hockman Subscribe to this feed
hockman
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories submitted by hockman
2
kicks
submitted by hockman 29 days, 23 hours ago

hockblogs.net — Last week, I took the two hour clinic: Clinic 6264: Introducing Windows Communication Foundation using .Net Framework 3.5 & Visual Studio 2008 from the Microsoft eLearning site. It’s a free clinic, so if your new to WCF, it’s well worth a study. It’s a self-paced course and took me actually some more time than two hours, since I had to make notes for this review on things I found interesting to talk about. And a couple of hours for me writing this post last weekend Wink Anyway, you will learn about Windows Communication Foundation, the next generation technology for developing service oriented applications. Within the clinic you will learn about WCF Architecture, how to create WCF Services and Clients, and enhancing WCF services with security and reliability. read more...

Add a comment add a comment | category: | Views: 6
tags: | tag it

1
kicks
submitted by hockman 1 month, 3 days ago

hockblogs.net — Hi there, Today I recieved the following error when starting a .NET application from a network share: .NET 2.0 error: Request for the permission of type 'System.DirectoryServices.DirectoryServicesPermission, System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' failed. This error occurred when trying to run code that accessed the System.DirectoryServices namespace. Thanks to Tim Huffam I was being able to fix this within seconds! To work around this, just open up your .NET 2.0 security: 1. Start the .NET Framework 2.0 Configuration tool (from Administrative Tools). 2. Expand Runtime Security Policy. 3. Expand User - Code Groups and right-click on All_Code and select Properties. 4. On the Membership Condition tab make sure All Code is selected in the dropdownlist. 5. On the Permission Set tab make sure FullTrust is selected in the dropdownlist. 6. Click OK 7. Under Runtime Security Policy, expand Machine - Code Groups and right-click on All_Code and select Properties. 8. Perform steps 4 - 6. read more...

Add a comment add a comment | category: | Views: 2
| tag it

1
kicks
submitted by hockman 1 month, 10 days ago

hockblogs.net — Hi there, I'm currently developing a Winforms project where we want to be able to sort, filter, bind business objects to datagrid views. And I've found a .NET Library that just does everything I need, instead of using dataviews it just binds the business object to the datagridview. The BindingListView .NET library provides a type-safe, sortable, filterable, data-bindable view of one or more lists of objects. It is the business objects equivalent of using a DataView on a DataTable in ADO.NET. If you have a list of objects to display on a Windows Forms UI (e.g. in a DataGridView) and want to allow your user to sort and filter, then this is the library to use! read more...

Add a comment add a comment | category: | Views: 18
tags: , | tag it

1
kicks
submitted by hockman 1 month, 18 days ago

hockblogs.net — Hi there, Sitecore 6 was released yesterday! Yeah.....Smile Last week I already got a sneak peak of it from a collegue of mine, when Alex de Groot visited us. It was a sneak peak of the Nicam Sitecore 6 demo site. The thing I really like is being able to search in many many places within the Client. Being able to validate your content, the wait cursor notification when you click on an item in the content editor, the validation notifiers on the right hand side, the Placeholder Settings folder and ofcourse the icon preview of an image in the Media Library. Really necessary stuff. I'm looking forward to the first Migration projects from Sitecore 5.3 to Sitecore 6, since they really reduced the databases. In Sitecore 6 we now have only the Web, the Master and the Core databases, instead of Sitecore 5.3 which has additional databases like Extranet, Security, Archive and Recycle Bin. read more...

Add a comment add a comment | category: | Views: 20
tags: | tag it

1
kicks
submitted by hockman 1 month, 27 days ago

hockblogs.net — Hi there, I just wanted to let you guys know that everyone is being able to download the Dev Days 2008 presentations! You can download them here: http://www.devdays.nl/powerpoints/index2.html read more...

Add a comment add a comment | category: | Views: 8
| tag it

1
kicks
submitted by hockman 1 month, 29 days ago

hockblogs.net — Hi there, I'm currently working on a Visual Studio .NET 2005 Winforms project, where i've got multiple forms which have a DataGridView on it. So I decided, for maintenance sake, that I had to create a baseform, since alle the forms really must look-a-like. In the baseform I've set the modifier of the, to be inherited, control to public or protected. Nice job you would think! But guess again, cause visual inheritance on 2.0 controls, that can hold a collection, like the DataGridView is not possible. So you can throw away all your good meanings and efforts! This is what Microsoft has to say about it: "We disabled this scenario intentionally. We chose to not make the engineering effort it would have required to enable this scenario for Whidbey. This decision was not make lightly and we understand customers would like this functionality, but the existing visual inheritance architecture in combination with collection based controls makes it extremely costly to address. We hope to enable this in future versions". read more...

Add a comment add a comment | category: | Views: 1
tags: | tag it

3
kicks
submitted by hockman 2 months, 3 days ago

hockblogs.net — On a .NET 2.0 project I’m currently working on, where I’m getting my data from a webservice, I was getting the following error: System.InvalidOperationException: Er is een fout opgetreden bij het genereren van het XML-document. ---> System.InvalidOperationException: Er is een kringverwijzing aangetroffen tijdens het toepassen van serialisatie op een object van het type BusinessObjects.Domein. In English the error was: System.InvalidOperationException: A circular reference was detected while serializing an object of type BusinessObjects.Domein. I’ve found out that one of my objects must hold onto another object that is higher up in the chain which resulted into a circular reference. Yes indeed, this is true, but now it seems that xml serialization can’t handle it. My business object has a logical parent-child tree structure and that’s exactly how I want to have my business objects. read more...

Add a comment add a comment | category: | Views: 19
tags: | tag it

1
kicks
submitted by hockman 2 months, 10 days ago

hockblogs.net — Wow, Resharper 4.0 is now available. It now has full support for C# 3.0 and LINQ, Comprehensive Insight into .NET Framework, Solution-Wide Analysis, Code Cleanup, New Refactorings, Multiple New Productivity Features (such as Complete Statement, CamelHumps in Code Completion, Live Templates Editor & Manager, Recent Edits), ASP.NET Speedup. Today I received the following email: read more...

Add a comment add a comment | category: | Views: 4
tags: | tag it

1
kicks
submitted by hockman 2 months, 12 days ago

hockblogs.net — In a lot of projects different users use different string comparison methods. I’ve seen a lot of code where there is a lot of ToLowers(), Equals, equality == operators, string.compare, string.CompareTo, and so on used for comparing strings. All different usages, sometimes for different purposes, but 99% of the time for the same purpose. Since .NET 2.0 however, Microsoft has new recommendations, and I think it is really a must to read. A link to the new Microsoft recommendations can be found at the end of this article. read more...

Add a comment add a comment | category: | Views: 15
tags: | tag it

2
kicks
submitted by hockman 2 months, 15 days ago

hockblogs.net — In a lot of projects different users use different string comparison methods. I’ve seen a lot of code where there is a lot of ToLowers(), Equals, equality == operators, string.compare, string.CompareTo, and so on used for comparing strings. All different usages, sometimes for different purposes, but 99% of the time for the same purpose. Since .NET 2.0 however, Microsoft has new recommendations, and I think it is really a must to read. A link to the new Microsoft recommendations can be found at the end of this article. There are two very important things to ask yourself when comparing string: * Should my string be treated as a symbolic set of bytes (an ordinal interpretation)? * Should my string vary over culture (a culture-sensitive interpretation)? If the string data, that is designed to be culture-agnostic and linguistically irrelevant, start using the StringComparison overloads, using either the StringComparison.Ordinal or StringComparison.OrdinalIgnoreCase. These two overloads enforce a byte-by-byte comparison similar to strcmp that not only avoids bugs from linguistic interpretation of essentially symbolic strings, but provides better performance! read more...

Add a comment add a comment | category: | Views: 6
tags: | tag it

1
kicks
submitted by hockman 2 months, 18 days ago

hockblogs.net — Hi there, I would have liked to talk about this a little bit sooner, but couldn't find the time. Anyways, I had a great time may 22nd at the Dev Days 2008 in Amsterdam! An exciting day full of new stuff and quality presentations. The first session, or actually keynote, I visited was a presentation by David Platt on 'Why software sucks'. David was verry funny (especially his comment that nobody would like to use a stick anymore in a car Wink ). Anyways, his overall thought was, 'know thy user for he is not thee'! If you would like to know what it was all about, you can read more about it here on tweakers: Softwaregoeroe Microsoft: programmeurs weten niet wat gebruikers willen (Dutch article) or here on computable.nl (also in Dutch). After this keynote session, i went to the Introduction to Silverlight 2 presentation by Daniel Moth. Wow, what can this guy talk! What a great presentation on topics within silverlight as, 'Getting Started aka Hello World', 'Intro to XAML inc. developer-designer interaction using Blend', 'HTML Bridge', 'Networking' You can even download this presentation on his blog: http://www.danielmoth.com/Blog/2008/05/my-silverlight-session.html. read more...

Add a comment add a comment | category: | Views: 3
| tag it

1
kicks
submitted by hockman 2 months, 22 days ago

hockblogs.net — Hi there, Dan Wahlin already blogged about this really incredible and handy 'Best of Simple Talk ASP.NET' eBook, which included the following topics: * ASP.NET Master Pages Tips and Tricks * Web Parts in ASP.NET 2.0 * Implementing Waiting Pages in ASP.NET * Token Replacement in ASP.NET * Regular Expression Based Token Replacement in ASP.NET * A Complete URL Rewriting Solution for ASP.NET 2.0 * Take Row-Level Control of Your GridView * Enhance Your Website with ASP.NET AJAX Extensions * Calling Cross-Domain Web Services in AJAX * Using Web Services with ASP.NET * Gathering RSS Feeds using Visual Studio and RSS.NET * Getting Started with XAML * Silverlight Skinnable User Interfaces You can download the eBook here: http://www.red-gate.com/products/ants_profiler/JitnRun.pdf Hope this is usefull! and thanks Dan! gr, Robbert read more...

Add a comment add a comment | category: | Views: 13
tags: | tag it

1
kicks
submitted by hockman 3 months ago

hockblogs.net — Next thursday, I will be there, at the Dev Days 2008. I changed my plans, in agreement with a collegue of mine. I'll be visiting the sessions that are more Silverlight, WPF oriented, since we're not using the technology right now and I really am interested in this new technology. read more...

Add a comment add a comment | category: | Views: 6
| tag it

3
kicks
submitted by hockman 3 months, 6 days ago

hockblogs.net — Sorting is one of the important features that are nearly always required in each project. Recently I’ve run into a major problem on a Sitecore / .NET project, when displaying a set of data that was sorted. Actually the sorting wasn’t any problem, no it was the differende between the two ways that the data was retrieved. In this article I show you the difference between using the Children.ToArray() statement and using a Xpath Query. read more...

Add a comment add a comment | category: | Views: 15
tags: | tag it

2
kicks
submitted by hockman 3 months, 8 days ago

hockblogs.net — I’m currently preparing to upgrade my MCAD.NET status to Visual Studio 2005 Certifications (yeah I know I’ve been lame Laughing). As an MCAD or an MCSD, you are eligible to upgrade your credential—to reflect your expertise using Microsoft Visual Studio 2005—with one or two exams. read more...

Add a comment add a comment | category: | Views: 2
| tag it

1
kicks
submitted by hockman 3 months, 27 days ago

hockblogs.net — Microsoft had made some language enhancements and with the introduction of C# 3.0, which was released together with the Microsoft .NET framework 3.5 en with the release of Microsoft Visual Studio .NET 2008 last february, we can now use them. And the one I really digg is Extension Methods. read more...

Add a comment add a comment | category: | Views: 0
tags: | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge