Vugar Miriyev
unread,Oct 18, 2010, 10:33:50 AM10/18/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Sea Turtle Batch Image Processor
Just put CultureInfo.InvariantCulture for avoid exception
public object Convert(object value, Type targetType, object parameter,
CultureInfo culture)
{
if (value is double) {
double valueA = double.Parse(value.ToString(),
CultureInfo.InvariantCulture);
double valueB = double.Parse(parameter.ToString(),
CultureInfo.InvariantCulture);
return valueA * valueB;
} else {
return value;
}
}
Try to update if will find new ones.