01.05.2010 04:57
von
joriskalz
24.03.2009 01:35
von
joriskalz
helps if you need to reconfigure ip settings of a strato web server
http://strato-faq.net/indexe.php4?base=view.php4%3Farticleid%3D2127%26subcatid%3D3.4.5.9%26page%3D1%26url_literal%3D%26stype%3D%26maxrows%3D12%26pcatid%3D%26extern%3D
http://nibblersrevenge.cluss.de/archive/2007/12/13/console-bei-strato.aspx
23.03.2009 06:07
von
joriskalz
This helps a lot when developing Silverlight applications:
http://www.sharpgis.net/post/2009/02/27/Loading-pages-dynamically-in-Silverlight.aspx
19.08.2008 11:47
von
joriskalz
09.07.2008 09:57
von
joriskalz
Yes!!! They just released version of 2.1 of subsonic. By the way, this community is based on subsonic.
While it is just a minor version number, there really great improvements:
SqlQuery, the next-generation querying engine of subsonic
SubStage, a visual configuration management and code generation tool
My favourite: programmatic migrations between database versions
...
http://blog.wekeroad.com/blog/subsonic-2-1-released/
22.06.2008 07:02
von
joriskalz
Create visual stunning wallpapers from your personal photo collections. This Wallpaper Generator makes it easy to compose your most beautiful photos into stunning wallpapers for your desktop!
16.06.2008 04:51
von
joriskalz
The WPF way of DoEvents
via http://blog.jan-welker.de/2007/11/04/DoEventsInWPF.aspx
public static void DoEvents()
{
if (Application.Current != null)
Application.Current.Dispatcher.Invoke(DispatcherPriority.Background, new ThreadStart(delegate { }));
}