February 23rd, 2010
For a while now I’ve been wishing I didn’t have to do this…
<asp :LoginView ID="LoginView1" runat="server">
<rolegroups>
<asp :RoleGroup Roles="Administrator">
<p>Admins only!</p>
</asp>
</rolegroups>
</asp>
…every time I want to have something only an Admin can see. It’s not that it takes long to do, it just seems incredibly inefficient.
So now my first custom control to the rescue, to this point I’ve only used user controls in ASP.net.
using System.Web.Security;
using System.Web.UI.WebControls;
namespace Teknohippy
{
public class AdminView : PlaceHolder
{
public AdminView()
{
}
public override bool Visible
{
get
{
if (DesignMode)
{
return base.Visible;
}
else
{
return base.Visible && Roles.IsUserInRole("Administrator");
}
}
set
{
base.Visible = value;
}
}
}
}
Now I can just to the following instead…
<th :AdminRole id="a1" runat="server">
<p>Admins Only!</p>
</th>
Posted in Uncategorized| No Comments »
May 27th, 2009
Softrope is now available to beta testing Dungeon Masters.
To become a beta tester simply email beta@softrope.net and request to join.
Softrope also now has it’s own site, softrope.net.
Posted in Uncategorized| No Comments »
April 24th, 2009
After months of grabbing the odd bit of time here and there during lunctimes and evenings, Softrope is slowly approaching a useable state. Next week I’ll be using it during a game. If that goes well then I’ll be releasing it to a private beta group.
Here’s a recent screenshot.

Posted in Uncategorized| No Comments »
April 14th, 2009
My mobile wordprocessing needs have been met for now by a Samsung NC-10 netbook. Not my ideal size or battery life but definitely the functionality that I need. Coupled with BTModem enabled phone it’s very usable as a mobile platform. Although without the modem I’d get more writing actually done!
Posted in Uncategorized| No Comments »
April 14th, 2009
Had me for a while this one. Simply check that you haven’t inadvertently set ThreeState property to true like I had.
Posted in Uncategorized| No Comments »
March 24th, 2009
I spent some time yesterday checking out which S60 word processor I’d like to use with my E71. I decided in the end that the answer would be, none.
One huge feature that is missing for me in every single one I tried, is styles. I find it really hard to outline a document without some kind of style library. Is it too much to ask to just have a choice of heading 1, 2, 3 and normal?
It’s a step backwards from my existing mobile word processing experience, the Psion 5mx.
Mind you a lot of stuff is a step backwards from the Psion. Okay yes it has some serious faults nowadays.
- Very unclear screen
- No easy mobile connectivity
- No color
- No decent web experience
But as a word processor for a mobile writer it does many things very well, some that still haven’t been matched.
- Good keyboard for its size
- Functional word processor
- Excellent battery life
Of course correcting lots of the things it does badly would damage the excellent battery life. But still it would be nice if I could have a non-crippled word processor for my E71. Anyone know of one?
Posted in Uncategorized| No Comments »
March 18th, 2009
I just spent a little time trying to work out why some of the UserControls had disappeared from the Asset Library in Blend.
Turns out in the end it was simply because they had not got a parameterless constructor.
Posted in Uncategorized| No Comments »
January 26th, 2009
Dmitry’s fantastic Multimedia Keyboard plug-in for Griffin’s Airclick USB has been updated.
It gives you the ability to control any application that supports Multimedia Keyboards by simulating multimedia key or arrow key strokes. You don’t have to change to another plug-in to control different applications, in fact, you might never have to change it again.
Well now it even works with Adobe Flash players in full screen! (YouTube, Hulu, Amazon, JW FLV Player and similar)
You can download Dmitry’s plugin here:
http://www.dimin.net/software/airclick
Posted in Uncategorized| No Comments »
October 16th, 2008
UK mapping developers Earthware have launched London street side views in their real estate mapping solution by partnering with street view innovators Seety. Take a look for yourself at the sights of London.Let’s hope this street level mapping solution spreads to the rest of the UK quickly.
read more | digg story
Posted in Uncategorized| No Comments »