By tim, on April 30th, 2007
Follow tim on Twitter
Here at Mix07 we’ve seen some impressive demos of Silverlight running on the Mac. All the demos worked; the applications looked the same on the Mac as on Windows. Scott Guthrie showed “Silverlight Airlines”, which uses .NET code to call an ASP.NET web service. You draw a line between cities to show where you want
…continue reading Silverlight on the Mac: picture
By tim, on April 30th, 2007
Follow tim on Twitter
Microsoft’s Ray Ozzie and Scott Guthrie, here at Mix07, have announced the addition of a cross-platform .NET runtime within Silverlight, Microsoft’s browser plug-in for streaming video and rich internet applications.
I’m not sure this counts as a major announcement – after all, this very thing was talked about here at Mix last year. What
…continue reading Silverlight with cross-platform .NET runtime announced, alpha download available
By tim, on April 29th, 2007
Follow tim on Twitter
Nobody likes product activation, but it is used increasingly by software vendors in search of more effective anti-piracy measures. Microsoft is the most prominent example, but many smaller vendors do the same. Codegear, for instance, use activation for Delphi. Even if you have a valid registration key, you cannot use the product until it has checked
…continue reading AppForge: a product activation nightmare
By tim, on April 27th, 2007
Follow tim on Twitter
I’ll be at Mix07 this year and looking for stuff that’s new and interesting – by all means contact me if you are attending and would like a chat.
Technorati tags: mix07
By tim, on April 27th, 2007
Follow tim on Twitter
David Berlind has a series of interesting posts about Google apps versus Microsoft Office; the series starts here, more or less. Today there’s a related post from Dan Farber, who reports Microsoft’s claim (from Jeff Raikes) that there is little demand for Microsoft Office in the cloud.
Cloud-based applications have huge advantages – easy collaboration, zero
…continue reading Do you want Office in the cloud?
By tim, on April 25th, 2007
Follow tim on Twitter
Google Web History has two main benefits. First, it enables smarter search. Google can take account of which pages you visited, presumably giving greater weight to sites where you viewed numerous pages rather than diving in and out quickly. Second, you get a nice Google-ised search of pages you’ve viewed, instead of attempting to find
…continue reading Why I’m not using Google Web History
By tim, on April 25th, 2007
Follow tim on Twitter
I’ve had four successive emails of increasing urgency from someone using my simple sqlite wrapper.
It’s sometimes difficult to handle such requests – the code is free and there is a limit to how much time you can give away – but in this case I’m unable to reply. The sender is using an
…continue reading How not to get support
By tim, on April 22nd, 2007
Follow tim on Twitter
A couple of days ago I posted about programmatically detecting whether UAC is enabled. I was proposing to read a registry entry. Thanks to the power of blogs, my post drew a comment from Andrei Belogortseff, who has posted C++ code that does this properly. His library has functions for detecting whether the current
…continue reading C# code to detect UAC elevation on Vista
By tim, on April 21st, 2007
Follow tim on Twitter
People who should know say not to use managed code custom actions in your Windows Installer setups. Like Rob Mensching of Wix fame who says:
…today the Windows Installer does not support managed code CustomActions and the general direction appears to be to try to reduce the need for CustomActions overall.
Read the blog
…continue reading More Windows Installer confusion: managed code custom actions a no-no
By tim, on April 20th, 2007
Follow tim on Twitter
An application may sometimes need to know whether or not the current user has administrative rights. This is complicated in Windows Vista by User Account Control (UAC) – the user may be in the Adminstrators group on the local machine, but nevertheless running with limited rights. When I came across this blog entry on COM elevation
…continue reading Programmatically detecting whether UAC is enabled