Have you got a method that you're dying to simplify? A class that's growing out of control? Or an algorithm that you just can't get working? Submit it to the new, awesome web app Refactor My Code, and have it refactored.
read more
Sunday, September 30, 2007
Tuesday, September 25, 2007
The Flash Blog - Some great examples of Flash UI development
It seems as though Lee Brimelow is from Adobe. He is somehow connected to gotoandlearn.com, which has a lot of awesome tutorials on how these sites are made. Good site to check out if you're into flash UI dev. Cool stuff, check it out.
read more
read more
Thursday, September 20, 2007
Prompt for downloading word documents
I have created a functionality that will allow the users to download a pdf or a word document. The download was working fine when I used it, but on another machine I noticed that the prompt for download that asks the user whether to open or save the word file was not appearing.
These are the steps you need to follow when you are faced with this problem.
Go to the windows explorer,
Choose Tools-- Folder options
Click on File Types tab
Choose file type 'DOC' for word, 'PPT' for Powerpoint etc.
Click on the Advanced botton
Make sure that the "confirm open to download" checkbox is ticked.
Hope you enjoy it.
These are the steps you need to follow when you are faced with this problem.
Go to the windows explorer,
Choose Tools-- Folder options
Click on File Types tab
Choose file type 'DOC' for word, 'PPT' for Powerpoint etc.
Click on the Advanced botton
Make sure that the "confirm open to download" checkbox is ticked.
Hope you enjoy it.
Sunday, September 16, 2007
Wondershare Flash Album Studio v1.8.0
Looking for a new exciting way to show off your photos? Amaze your friends by taking them into the stunning flash photo galleries with Wondershare Flash Album Studio.
read more
read more
Monday, September 10, 2007
Flash Effect Maker Pro v3.5 w / 578 Templates
Flash effect Maker is the great Flash effect tool to help webmaster design animated Flash intros, Flash banners, Flash ads, and any other Flash. With Flash effect Maker you can place your own photos as font front ground and page background. And then combine them with animated text, background effect to create fun Flash movies, all in just minutes.
read more
read more
Monday, September 03, 2007
Mp3Resizer v1.8.3
Mp3Resizer is created to optimize the capacity of your portable music player by reducing the size of mp3 files. This is especially useful when listening to MP3 files or MP3 Audio books on a mobile phone, MP3 player, Pocket PC, etc.
read more |
read more |
Wednesday, August 29, 2007
Friday, August 24, 2007
Unable to enlist in the transaction
Today after about a month again I was facing a similar problem of unable to enlist a transaction. I took half a day, to realise that this is the problem as there was no error when I was using the web interface but the results were not coming up. Then I slowly started looking at the event viewer and only then I noticed the "Unable to enlist a transaction error". I didnot expect the reason for this until I read this article, When I disconnected the firewall everything seems working well. I have now switched the firewall back on by allowing the port for MSDTC as 3372.
Wednesday, July 25, 2007
document.getElementId() has no properties
Today I was getting this error, in Firefox even though the Javascript code that I wrote was working fine.
I had a feeling that my javascript code was not working, and concentrated to work on that.
But the error was not in the javascript code but in the xsl code.
To solve these kind of errors in FF give your elements IDs instead of names and reference them with
document.getElementById("id")
IE seems to be a bit relaxed even though you have a name defined and not the Id.
I had a feeling that my javascript code was not working, and concentrated to work on that.
But the error was not in the javascript code but in the xsl code.
To solve these kind of errors in FF give your elements IDs instead of names and reference them with
document.getElementById("id")
IE seems to be a bit relaxed even though you have a name defined and not the Id.
Tuesday, July 24, 2007
Adding lines on a stacked column chart
Today I had a need to do a graph in Excel where it need to display a stacked column chart and also a line in the same graph.
The data for this is as follows for three years
2008 2009 2010
12000 14000 16000
1000 1000 1000
170000 180000 200000
I wanted a stacked column with the first two rows and a line with the last row. But when I chose the normal 2d column chart, it was showing all three rows as one stacked column.
To get the desired results, I followed the following steps
First, include all three rows in the series part of the chart data and choose the 2d stacked column chart
Next, right-click on the colored part of the bar that corresponds to the year and choose "Chart Type". Then select the first Line graph. Click Ok
Finally, right click on the graph and choose chart options and tick the 'Value Y Axis' tick box under the secondary axis lable of the 'Axes' tab
You should now have the first two rows displayed as a stacked column chart and the third row displayed as a line graph above your columns.
The data for this is as follows for three years
2008 2009 2010
12000 14000 16000
1000 1000 1000
170000 180000 200000
I wanted a stacked column with the first two rows and a line with the last row. But when I chose the normal 2d column chart, it was showing all three rows as one stacked column.
To get the desired results, I followed the following steps
First, include all three rows in the series part of the chart data and choose the 2d stacked column chart
Next, right-click on the colored part of the bar that corresponds to the year and choose "Chart Type". Then select the first Line graph. Click Ok
Finally, right click on the graph and choose chart options and tick the 'Value Y Axis' tick box under the secondary axis lable of the 'Axes' tab
You should now have the first two rows displayed as a stacked column chart and the third row displayed as a line graph above your columns.
Monday, July 23, 2007
Convert VBscript to Javascript
I needed to convert some vbscript to javascript as firefox doesn't support vbscript. I found this online tool very helpful
Beware that this tool does not work in firefox though.
Beware that this tool does not work in firefox though.
Sunday, July 22, 2007
New transaction cannot enlist in the specified transaction coordinator
I was faced with this error when I was trying to configure a web application and trying enter a transaction through the virtual website. Thanks to the internet, I found a lot of information on the internet.
Here are the steps I followed to correct this:
Start the Component Services administrative tool. To do this, click Start, click Run, type dcomcnfg.exe, and then click OK.
In the console tree of the Component Services administrative tool, expand Component Services, expand Computers, right-click My Computer, and then click Properties.
Click the MSDTC tab, and then click Security Configuration.
Turn on the Network DTC Access
Allow Inbound
Allow Outbound
Enable XA Transactions
Choose No Authentication required
Save these settings and reboot your system.
The error is fixed.
In Windows Server 2003 SP1 and in Windows XP SP2, the Distributed Transaction Coordinator service gives you more control over the network communication between computers. By default, all network communication is disabled. The Distributed Transaction Coordinator Security Configuration dialog box has been enhanced so that you can manage these communication settings.
Here are the steps I followed to correct this:
Start the Component Services administrative tool. To do this, click Start, click Run, type dcomcnfg.exe, and then click OK.
In the console tree of the Component Services administrative tool, expand Component Services, expand Computers, right-click My Computer, and then click Properties.
Click the MSDTC tab, and then click Security Configuration.
Turn on the Network DTC Access
Allow Inbound
Allow Outbound
Enable XA Transactions
Choose No Authentication required
Save these settings and reboot your system.
The error is fixed.
In Windows Server 2003 SP1 and in Windows XP SP2, the Distributed Transaction Coordinator service gives you more control over the network communication between computers. By default, all network communication is disabled. The Distributed Transaction Coordinator Security Configuration dialog box has been enhanced so that you can manage these communication settings.
Friday, July 20, 2007
Sunday, July 15, 2007
Tuesday, July 10, 2007
Understanding the C in CSS
This simple tutorial explains the cascading feature of CSS. Useful for those starting out with CSS or if you need a refresher.
read more
read more
Thursday, July 05, 2007
Creating Excel Spreadsheets from VB.NET
This nice tutorial walks you through step by step creating an Excel spreadsheet with multiple worksheets. This nice introduction includes full source code and detailed instructions to help you get started.
read more
read more
Sunday, July 01, 2007
Friday, June 29, 2007
Top Ten of Programming Advice NOT to Follow
A top programmer examines a number of the top items of programming advice commonly given, and makes a great case for why they should NOT be followed. Some interesting food for thought for any programmer.
read more
read more
Thursday, June 21, 2007
Ten CSS tricks you may not know
Cascading Style Sheets are the foundation on which many of the best websites are built. Using CSS allows developers to describe the common style for the website, in terms of colours, fonts and layouts. In this tutorial, Trenton Moss of Webcredible shares some of his top tips to help you get the most from your CSS.
read more
read more
Tuesday, June 12, 2007
Online JPG to HTML Converter
Probably how the "Crazy guy can draw using HTML!!!"A table is created which is filled with large numbers of 1x1 cells. Each cell has a background colour of the corresponding pixel in the image. That's all it is; just a massive grid of coloured table cells. View the source to see the details.
read more
read more
Subscribe to:
Posts (Atom)
Power BI Kids competition 2026
Celebrating the next generation of data rockstars! 🚀✨ I am incredibly proud to share that we have officially wrapped up our 8-week #PowerB...
-
40 spectacular paper designs (using amazing colors & concepts) that need to look good and be informative in order to focus users’ attent...
-
From the past 3 days I have been working on resolving merged and hidden cells issues when an SSRS reports is exported to excel. ...
-
Challenge : Yesterday I was trying to download a parquet file from the Microsoft Lakehouse on to my laptop. So I was searching for the do...