Things I Learnt Today

November 4, 2009

Wallace and Gromit

Filed under: Uncategorized — Ding @ 12:17 pm

September 1, 2009

Uh-Oh to gmail

Filed under: Uncategorized — Ding @ 8:31 pm

I hope it wasn’t me that broke it :

outage

Sent Items

Filed under: Exchange, Outlook — Ding @ 11:28 am

This is a boon for people who regular use a shared mailbox…  Keeping track of the sent items in the “right place”, ie the sent items folder of the shared mailbox (rather than your own).

Check out the write up on this blog :

http://exchangeshare.wordpress.com/2009/07/15/shared-mailbox-added-in-outlook-profile-but-where-will-sent-item-be-saved/

Essentially with a hotfix (from KB 972148) you can add the following registry key to get the sent items kept in the shared mailbox :

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences]

“DelegateSentItemsStyle”=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences]
“DelegateSentItemsStyle”=dword:00000001

August 26, 2009

Geographs

Filed under: Uncategorized — Ding @ 4:25 pm

I can’t remember now how I came across the Geograph web site, but the idea of it is something that I really like – to photograph every “square” in the UK, and from the in the square to outside the square.  It’s great, and there is a ton of stuff in my local area that has already been photographed, but it doesn’t hurt to add more (called supplementals).

The main site is : http://www.geograph.org.uk

You can see my profile as http://www.geograph.org.uk/profile/27955

August 25, 2009

CPU Gadget

Filed under: Windows — Ding @ 11:48 am

I’ve been looking at CPU gadgets off and on for a little while, but not found one that I truly like.  Well I’m going to give this one a go :-

http://gallery.live.com/liveItemDetail.aspx?li=587ef54f-e121-418b-b258-e583e105a0d6&bt=1&pl=1

It looks pretty neat to me :)

Capture

July 7, 2009

Reading web.config setting

Filed under: Web App, Windows — Ding @ 11:20 am

The other day I had cause to figure out how to read a value from a web.config file, and display it on the screen.

After searching for a bit, and using the help provided in this article (http://codersource.net/asp_net_web_configuration_file.html), I came up with the following :

In Windows Explorer, go to c:\inetpub\wwwroot
Create a folder there called TestFldr
Open IIS Manager, and right click on the Default Web Site, and create a new virtual directory as follows :

Alias : TestFldr
Browse to the path that you created before
Permissions: Read + Run Scripts

Create a simple web.config file in the EVTest folder :

<configuration>

 <appSettings>
 <add key="MyTestSetting" value="1234"/>
 </appSettings>

</configuration>

Create a file in that folder called test.aspx, and put in it :

<script runat="server">

sub Page_load
 dim aconfig as system.configuration.configurationsettings
 dim extver as string = aconfig.appsettings("MyTestSetting")

 div1.innerhtml = "<b>" & extver & "</b>"

end sub

</script>

<html>
<body>
<form runat="server">
MyTestSetting is: <div id="div1" runat="server"></div>

</form>
</body>
</html>

Now open Internet Explorer, and go to http://servername/TestFldr/Test.aspx

MSIEXEC logging

Filed under: Windows — Ding @ 11:15 am

I always wondered how to get the logging enabled when you run an MSI and something goes wrong.  I had thought it was amazingly complex to turn on, but in fact it’s not !  You can do it liks this :

MSIEXEC /i “MyMSI.msi” /L*v “c:\mylogfile.log”

That logs everything “verbosely” to the filename specified.

April 29, 2009

EV Connection Status

Filed under: Enterprise Vault — Ding @ 4:38 pm

In the EV Outlook Client trace you very often see the Connection Status listed as a number.. well, what does the number mean ?

0 = Unknown connection.  You sometimes see that near the start of a client trace.
1 = Online
2 = Offline
3 = No Exchange
4 = Disconnected
5 = Cached Mode, Offline
6 = Cached Mode, Disconnected
7 = Cached Connected, headers only
8 = Cached Connected, Full items
9 = Cached Connected, “Drizzle Mode”
These are of course the Outlook to Exchange connection states, and the EV Outlook Add-in often needs to know what state things are in so that various operations can be performed (or not as the case may be).

Gmail Add-On

Filed under: Uncategorized — Ding @ 4:33 pm

I know there are about 10,000,000 different ones, but today I saw this :

http://userscripts.org/scripts/show/46938

It’s pretty damn good if you ask me!  Makes the real estate down the left hand side of gmail much more useful.  Try it yourself, if you use Firefox with Greasemonkey

February 10, 2009

Ultramon Alternative?

Filed under: Windows — Ding @ 11:44 am

I’ve been on the look out for something to use for multiple monitor OTHER THAN Ultramon.  Whilst I like it, I kind of wanted to do something that wasn’t the de facto standard, and something that was preferably free.

After a bit of googling, I found :-

http://www.softsia.com/DynaDeskXP-download-npc5.htm
http://www.snapfiles.com/get/displayfusion.html
http://www.mediachance.com/free/multimon.htm

I tried Display Fusion, but it didn’t seem to do the multiple task bar thing (one on each monitor) .. that’s something that I really wanted.  I then tried, and I am currently using the product from MediaChance, called Oscar’s Multi-Monitor TaskBar.

It’s good .. so far.

Older Posts »

Blog at WordPress.com.