-
Recent Posts
Recent Comments
Archives
- December 2020
- May 2018
- April 2018
- January 2018
- October 2017
- April 2017
- February 2017
- January 2017
- November 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- May 2011
- April 2011
Categories
Meta
Monthly Archives: February 2012
double click to copy
In software development esp testing, you need to copy and past a lot of stuff. There is a firefox Addon that makes your life a lot easier. You simply select the text (that you want to copy) You hold doen … Continue reading
Posted in Software Development
Leave a comment
Universal Printer Driver from HP
You can install HP Universable printer driver that works for any printer (not just HP). The beauty of it is that it can install network printers which may not be instally the regular way (using Add Printer and Find). To … Continue reading
Posted in Troubeleshoot
Leave a comment
Adding Ajax to ASP.NET Visual Studio 2008
Ajax functionality for ASP.NET can be added by downloading and installing Ajax Toolkit. It is in the form a a DLL that needs to be added to every project, where you intend to use it. It is supplied by Microsoft … Continue reading
Posted in Tutorials/Tips
Leave a comment
test code
protected void GridView2_RowCreated(object sender, GridViewRowEventArgs e) { int m = e.Row.Cells.Count; if (e.Row.RowType == DataControlRowType.Footer) { for (int i = m – 1; i >= 1; i–) { e.Row.Cells.RemoveAt(i); } e.Row.Cells[0].ColumnSpan = m; e.Row.Cells[0].Style.Add(“text-align”, “center”); e.Row.Cells[0].Text=“<a style=”text-align:center;” href=”updateContactIDs.asp”>Update Contact</a>”; } }
Posted in Uncategorized
Leave a comment
One combined footer in GridView – ASP.NET
This link explains how to display the footer of a Gridview as one large cell rather than every cell has its own footer. I tried this solution but it did not work for me. I tweaked it and posted the … Continue reading
Transpose in Excel 2007
You can convert rows in column and column in rows in Excel pretty easy using past special. However it did not work for me. I was copying my tables from SQL Server and paste special would not give me any … Continue reading
Posted in Tutorials/Tips
Leave a comment
SQL Select * into from
If you want to copy or backup your table in the database, use the following SQL command. select * into newtable from oldtable The new table is created on the fly. You do not need to create it. A more … Continue reading
Posted in SQL Server 2008
Leave a comment
Programmers Stackoverflow Off-topic Moderation
The programmers.stackoverflow Faq talks about this What kind of questions can I ask here? Programmers — Stack Exchange is a site for professional programmers who are interested in getting expert answers on conceptual questions about software development. If you have … Continue reading
Posted in Uncategorized
Leave a comment
Programmers Stackoverflow Off-topic Moderation
The programmers.stackoverflow Faq talks about this What kind of questions can I ask here? Programmers — Stack Exchange is a site for professional programmers who are interested in getting expert answers on conceptual questions about software development. If you have … Continue reading
Posted in Uncategorized
Leave a comment
Troubleshooting Apache (XAMPP)
If Apache does not start and it used to work before, the most likely culprit is windows update. It probably did something and now Apache is not starting. To trouble shoot, follow these methods. 1. Right click on Taskbar then … Continue reading
Posted in Troubeleshoot
Leave a comment