webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Integrating Google Spreadsheets - Part 2
http://webspotlite.blogspot.com/2010/07/integrating-google-spreadsheets-part-2.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Friday, July 23, 2010. Integrating Google Spreadsheets - Part 2. The article is very helpful and. Before you make any changes in the application, you need to have administrator access to the Google apps account. You can enable provisioning API for programmatic account mgmt(I didn't). You need the following information about your application:. 3 Change password page. After these changes ar...
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Months between two dates - Java Implementation
http://webspotlite.blogspot.com/2011/01/months-between-two-dates-java.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Wednesday, January 26, 2011. Months between two dates - Java Implementation. A code snippet that will accept two java.util.Date objects and return the number of months between the two dates. Public int getNumberOfMonths(Date fromDate, Date toDate){. Calendar cal = Calendar.getInstance();. Int c1date=cal.get(Calendar.DATE);. Int c1month=cal.get(Calendar.MONTH);. March 15, 2012 at 8:39 AM.
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Auto-Build Project in Eclipse using ANT
http://webspotlite.blogspot.com/2011/04/auto-build-project-in-eclipse-using-ant.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Friday, April 1, 2011. Auto-Build Project in Eclipse using ANT. Eclipse allows you to set your custom ANT file to build your projects. Here's how you can configure the build process to pick your ANT file and not the default Java Builder. Right click on Project and select "Properties". On the Properties window, click on "Builders". Select "Ant Builder" and click OK. Number to excel column.
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Ext 2.2 Prevent GridPanel's rowclick handler to execute on rowdblclick
http://webspotlite.blogspot.com/2010/08/ext-22-prevent-gridpanels-rowclick.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Monday, August 9, 2010. Ext 22 Prevent GridPanel's rowclick handler to execute on rowdblclick. I had a requirement where I needed to perform different actions on a single click and a double click on a row in a GridPanel. I was using a Ext.grid.GridPanel. And handling " rowclick. Here's how I prevented rowclick's action to be performed on a rowdblclick:. Labels: ext 2.2.
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: April 2011
http://webspotlite.blogspot.com/2011_04_01_archive.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Friday, April 1, 2011. Auto-Build Project in Eclipse using ANT. Eclipse allows you to set your custom ANT file to build your projects. Here's how you can configure the build process to pick your ANT file and not the default Java Builder. Right click on Project and select "Properties". On the Properties window, click on "Builders". Select "Ant Builder" and click OK. Number to excel column.
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Last Date Of Month - Java Implementation
http://webspotlite.blogspot.com/2011/08/last-date-of-month-java-implementation.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Tuesday, August 30, 2011. Last Date Of Month - Java Implementation. A code snippet to set a Date object to the last date of the month:. Calendar cal = Calendar.getInstance();. Calset(Calendar.DATE, cal.getActualMaximum(Calendar.DATE) ;. System.out.println(cal.getTime() ;. The Calendar API has a lot of other utility methods that are very convenient when you need to work on dates. Sets a ca...
mobilespotlite.blogspot.com
Abhinav Kothari - Mobile Development: Hello World! My first android app
http://mobilespotlite.blogspot.com/2010/02/hello-world-my-first-android-app.html
Abhinav Kothari - Mobile Development. Un"Official Blog of Abhinav Kothari - My experiences on Google's Android and Apple's iPhone platforms. Sunday, February 14, 2010. My first android app. So, I wanted to explore the Android platform and check out the reason for so much buzz around this platform. I decided to get my hands dirty and try it out myself. I decided to write my own Hello World application. I started off by downloading. Subscribe to: Post Comments (Atom). Thanks for checking out my blog.
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: January 2011
http://webspotlite.blogspot.com/2011_01_01_archive.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Wednesday, January 26, 2011. Months between two dates - Java Implementation. A code snippet that will accept two java.util.Date objects and return the number of months between the two dates. Public int getNumberOfMonths(Date fromDate, Date toDate){. Calendar cal = Calendar.getInstance();. Int c1date=cal.get(Calendar.DATE);. Int c1month=cal.get(Calendar.MONTH);. Subscribe to: Posts (Atom).
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: Integrating Google Spreadsheets - Part 1
http://webspotlite.blogspot.com/2010/07/integrating-google-spreadsheets-part-1.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Thursday, July 22, 2010. Integrating Google Spreadsheets - Part 1. Here is a detailed description of how I integrated Google Spreadsheets into my application (I have broken the article in two posts):. My project required online access of the spreadsheets as well as being able to use their APIs to fetch, search, upload, download, read and delete spreadsheets. Object and called the insert().
webspotlite.blogspot.com
Abhinav Kothari - Just Another Work Day: April 2010
http://webspotlite.blogspot.com/2010_04_01_archive.html
Abhinav Kothari - Just Another Work Day. Un"Official Blog of Abhinav Kothari - My experiences using Web Technologies. Monday, April 19, 2010. Parse File Using Scanner - Java Implementation. Code snippet to parse a file using java.util.Scanner class. Usage: Call the tokenizeUsingScanner method and pass it the File object and the delimiter for the file. Note: The pipe symbol has special meaning in a regex - so you need to escape it. Tuesday, April 13, 2010. List all files in a folder - Java Implementation.