tomionsoftware.blogspot.com
Software Engineering: GWT Widget Library
http://tomionsoftware.blogspot.com/2006/08/gwt-widget-library.html
Questions, Ideas and Thoughts around Software Development. Monday, August 14, 2006. Google released a new version of GWT today, version 1.1.0. There were some API changes made that broke a few things in the GWT-WL, namely the FormPanel and SVG support. This release is to make the GWT-WL compatible with the latest GWT release. Below are a list of changes. Read more at gwt-widget.sourceforge. Monday, August 14, 2006. Subscribe to: Post Comments (Atom). Open Source Must Tools. Http:/ www.eclipse.org/.
tomionsoftware.blogspot.com
Software Engineering: Groovy: Parsing an XML file with Groovy
http://tomionsoftware.blogspot.com/2006/08/groovy-parsing-xml-file-with-groovy.html
Questions, Ideas and Thoughts around Software Development. Monday, August 28, 2006. Groovy: Parsing an XML file with Groovy. Comes with a handy XML parser. With this parser you can load an XML file quickly and navigate it easy. Currently I'm working with WebTest (http:/ webtest.canoo.com/) for testing functional aspects of an web application. To get an idea of the WebTest report XML file, have a look a the fragment below:. Name="resultFilename" value="response 1156746643278 invoke.html"/. List result = [].
tomionsoftware.blogspot.com
Software Engineering: WebTest Screencast: Data Driven WebTest
http://tomionsoftware.blogspot.com/2007/11/webtest-screencast-data-driven-webtest.html
Questions, Ideas and Thoughts around Software Development. Tuesday, November 13, 2007. WebTest Screencast: Data Driven WebTest. We finally made it :). Http:/ mguillem.wordpress.com/. And I published the new WebTest (. Http:/ webtest.canoo.com/. Screencast showing Data Driven WebTest. Based on Google Calculations. You can find the screencast here:. Http:/ opensource.basehaus.com/webtest/screencasts/data-driven-webtest.htm. New screencasts will follow soon. Posted by Tomi Schuetz. Tuesday, November 13, 2007.
tomionsoftware.blogspot.com
Software Engineering: "Create List..." in Excel 2003 with VBA
http://tomionsoftware.blogspot.com/2010/01/create-list-in-excel-2003-with-vba.html
Questions, Ideas and Thoughts around Software Development. Monday, January 18, 2010. Create List." in Excel 2003 with VBA. While working on data within Excel with VBA, I like to use dynamic lists to address the data and eventually to give it a name. To create a list, the same one as you would do manually by calling "Create List." from the context menu, you can execute the VBA script below. Range(Selection, Selection.End(xlDown) .Select. Range(Selection, Selection.End(xlToRight) .Select.
tomionsoftware.blogspot.com
Software Engineering: How to specify the browser that should be used in WebTest
http://tomionsoftware.blogspot.com/2009/09/how-to-specify-browser-that-should-be.html
Questions, Ideas and Thoughts around Software Development. Monday, September 21, 2009. How to specify the browser that should be used in WebTest. In WebTest it is possible to define which browser shall be simulated. Currently WebTest support the following browsers:. To get a more detailed list, have a look at the WebTest config page (http:/ webtest.canoo.com/webtest/manual/config.html). As you can see in the simple example below, it is very easy to define the simulated browser for your test:.
tomionsoftware.blogspot.com
Software Engineering: Read File Properties with Excel VBA
http://tomionsoftware.blogspot.com/2009/09/read-file-properties-with-excel-vba.html
Questions, Ideas and Thoughts around Software Development. Monday, September 21, 2009. Read File Properties with Excel VBA. The VBA script for Excel below will read the 'File Version' from the file properties and will read file name and its version each into a column in a Excel sheet. Dim objShell As Shell. Dim objFolder As Folder. Dim objFolderItems As FolderItems. Dim objFolderItem As FolderItem. Dim numberOfFiles As Long. Dim i As Integer. Dim j As Integer. Set objShell = New Shell.
tomionsoftware.blogspot.com
Software Engineering: Date Format Fix in Excel 2003
http://tomionsoftware.blogspot.com/2010/01/date-format-fix-in-excel-2003.html
Questions, Ideas and Thoughts around Software Development. Tuesday, January 19, 2010. Date Format Fix in Excel 2003. Due to an issue in Excel 2003, sometime the date formats are not updated in the cells, which leads to the problem, that a cell shows a date but is not read as a date by macros and formulas. You could go through each cell, press 'F2' and 'Enter' and Excel would finally identify the content of the cell as a date. But this you would do manually and not by script. Dim usedRangeOfRows As Integer.
tomionsoftware.blogspot.com
Software Engineering: Groovy and Grails Posts & Links
http://tomionsoftware.blogspot.com/2007/12/groovy-and-grails-posts-links-2007-12.html
Questions, Ideas and Thoughts around Software Development. Thursday, December 06, 2007. Groovy and Grails Posts and Links. Some interesting posts and links:. Http:/ www.infoq.com/news/2007/12/intellij-idea-groovy-grails. Http:/ memo.feedlr.com/? Http:/ www.javalobby.org/articles/groovy-intro3/. Posted by Tomi Schuetz. Thursday, December 06, 2007. Subscribe to: Post Comments (Atom). Open Source Must Tools. Http:/ www.eclipse.org/. Http:/ webtest.canoo.com/. Http:/ htmlunit.sf.net/.
tomionsoftware.blogspot.com
Software Engineering: How to create a WebTest project in less than a minute
http://tomionsoftware.blogspot.com/2009/08/how-to-create-webtest-project-in-less.html
Questions, Ideas and Thoughts around Software Development. Wednesday, August 12, 2009. How to create a WebTest project in less than a minute. Assuming you have WebTest. You can create a WebTest project in less than a minute:. Go to the directory where you want to create the WebTest project. Call the createProject task and provide a name for the project, e.g. myWebTestProject. C: projects ant -f %WEBTEST HOME% webtest.xml wt.createProject. Change to the project directory. C: projects cd myWebTestProject.
tomionsoftware.blogspot.com
Software Engineering: Dealing with critics?
http://tomionsoftware.blogspot.com/2007/08/dealing-with-critics.html
Questions, Ideas and Thoughts around Software Development. Wednesday, August 08, 2007. There is an interesting post on Marc Guillemot's blog:. Http:/ mguillem.wordpress.com/2007/07/31/xpath-power-2-detect-lack-of-experience/. He's blog entry can be understood in a way, that the lack of XPath can be associated to the lack of test automation experience. If this relation is correct or not is not as interesting as the reaction which has raised based on his entry. Wednesday, August 08, 2007. WebTest Screencas...