int intColumn, String stringDate ) {
try {
// Getting the cell holding the information on the day to start
XCell xcellStartDate = xcellrange.getCellByPosition( intColumn, intRow );
// Querying for the interface XTextRange on the XCell
XTextRange xtextrange = (XTextRange)
UnoRuntime.queryInterface( XTextRange.class, xcellStartDate );
// Setting the new start date
xtextrange.setString( stringDate );
}
catch( Exception exception ) {
this.showExceptionMessage( exception );
}
}