Tim Huffam
22 posts.
- Installing Artcut (plotter/cutter software) without prompt to insert Graphics DiscIf you do a 'typical' install of Artcut, it will try to install the 'chinese graph files' - and therefore, when you run it for the first time (after the…
- Error: Failed to access IIS metabase. Hosting WCF Service in IISThis error ("Failed to access IIS metabase") can occur when you try to access your WCF when you have added for hosting within IIS.
- How to fade image layers using Gimp gradient/blend toolThis post will explain how to do fading (fade out a layer) in Gimp. Assuming you have an image open... 1. Add a new layer 2. Draw the part you want faded…
- Microsoft Word - cursor placed at top of page.When creating a new document and in Print Layout, Word sometimes places the cursor right at the top of the page - not catering for the top margin.
- Application Architecture, Software Development Frameworks, ORM, MVC/P and the Holy Grail - Part 1Note this article is primarily based on Microsoft/.Net technologies, although the principle apply to any technology.
- How to hide a form instead of closing it - with C# .NetDoing some winforms dev for a change - and had a need to hide a form, instead of closing it, when the user clicked the standard windows close form button…
- Windows XP error: svchost.exe - Application ErrorOne morning when restoring my pc from hibernate - I got this error: svchost.exe -- application error the instruction at "0x745f2780" reference memory at…
- Error installing .Net 3.0: Microsoft .NET Framework 3.0 has encountered a problem during setup.This error: Microsoft .NET Framework 3.0 has encountered a problem during setup. Setup did not complete correctly.
- ASP.NET event firing twiceThis seems to be a very common problem where by your event handler method gets run twice. It is caused by VS.NET inserting 2 wireup of the event handler:
- Accessing Outlook items from C# .NETThe following demostrates how to retreive data from items within an Outlook folder (called "MySubFolderName" under the Inbox folder) using .NET:
- How to convert special characters to HTML encoded equivalents using C#.NETpublic string HTMLEncodeSpecialChars(string text) { System.Text.StringBuilder sb = new System.Text.StringBuilder(); foreach (char c in text){ if(c>127) //…
- How to lookup a user name and machine name using an IP address (on windows)If you need to find a username but only have an ip address, if you use active directory (AD) then you can use the following method to find out the…
- text-align: center; not working in FirefoxI have the following scenario: .container{ text-align: center; border: solid 1px blue; } <div class=container><table><tr><td>Text</td></tr></table><div>
- How to make a transparent background/selection on an image using GIMP1. Open your image. 2. Select the area you want to make transparent. 1. Select the appropriate selection tool from the Tool window or the Tools -…
- SQL Server 2005 SQLExpress error: ...provider: Named Pipes Provider, error 40 - Could not open connection to SQL ServerI got this error immediately after installing VS2005 & SQL Server 2005 Express and trying to establish my first connection using the new server - not a…
- IE and Firefox compatible javascript to enable or disable an anchor tagIE supports provides a half-baked implementation of the non-standard attribute 'disabled' on anchor tags (ie it changes it's color -even though it does…
- PHPMyAdmin - Client does not support authentication protocol requested by server; consider upgrading MySQL clientThis seems to be quite a common error for many people installing PhpMyAdmin for the first time. The phpmyadmin (pma) docs mention it - basically stating…
- 'System.Security.SecurityException: Requested registry access is not allowed.' when writing to event logI got this error when I try to create an eventlog source and when I try to write to the new event log (after resorting to manually creating the event log…
- Uninstall IE 7Those of you wanting to know how to remove this annoying version on IE - click here. However, if you are as unfortunate as myself, and have had another…
- Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged.When trying to run/debug my ASP.Net web app from VS.NET (2003) I get this error: Error while trying to run project: Unable to start debugging on the web…
- Unable to open Web Project '...'. The file path '...' does not correspond to the URL '...'. The two need to map to the same server location. HTTP Error 403: Access ForbiddenI got this error (and serveral variations of it while trying to fix it) when trying to open an ASP.NET (.Net 1.1) web app in VS.NET (2003) (on an XP Pro…
- Error: MMC cannot open the file C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC.Upon clicking on the SQL Server Enterprise Manager shortcut the following error occurs: MMC cannot open the file C:\\Program Files\\Microsoft SQL…
