Can you suggest a hex editor for me? I have never tried using a hex
editor before. Also, I haven't been able to try this out using 3.6
since I will not be able to install a 1.5 or higher version of JDK in
my dev box. I will try this out at home later this week and will let
you guys know before the end of this year ;)

Also as an FYI, I noticed an interesting behaviour with DataValidation
API's, the error message box and ignore blank option appears only if
the API's are used in the following order:

CellReference indirectRef = new CellReference(...);
DVConstraint dvConstraint = DVConstraint.createFormulaListConstraint(formula);
dataValidation = new HSSFDataValidation(new CellRangeAddressList(...),
dvConstraint);
dataValidation.setErrorStyle(HSSFDataValidation.ErrorStyle.STOP);
dataValidation.createErrorBox("Title", "Message");
m_dataSheet.addValidationData(dataValidation);
dataValidation.setEmptyCellAllowed(false);

On Wed, Dec 30, 2009 at 4:45 PM, Josh Micich <[email protected]> wrote:
>> The difference is that the code does not set the .needRecalc to true;
>> while excel sets it to true. Any idea which patch would fix this? I
>> rememer seeing a discussion on formula (re)evaluation on excel files
>> generated by POI. Could it possibly be related to this?
>
> It's worth investigating, but not every anomaly you observe with
> BiffViewer corresponds to a bug.  Why don't you try setting this bit
> with a hex editor and see if it makes a difference?
>
> BTW - You still haven't said whether you see the same problem with POI 3.6
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to