On Monday 31 October 2011 00:43:34 Fabien Bodard wrote:
> well it is not a bug, but a feature,
>
> The width of the box is computed from the content text width.
>
> you can do that as workaround
>
> Message.Title = "Delete an appointment"
> If Message.Warning("Delete" & String(40, " "), "Yes",
well it is not a bug, but a feature,
The width of the box is computed from the content text width.
you can do that as workaround
Message.Title = "Delete an appointment"
If Message.Warning("Delete" & String(40, " "), "Yes", "No") = 2 Then Return
On Sunday 30 October 2011 22:38:31 Fabien Bodard wrote:
> 2011/10/30 richard terry :
> > On Sunday 30 October 2011 21:37:29 Fabien Bodard wrote:
> >> 2011/10/30 richard terry :
> >> > On Sunday 30 October 2011 21:28:16 Fabien Bodard wrote:
> >> >> 2011/10/30 richard terry :
> >> >> > This code:
> >
2011/10/30 richard terry :
> On Sunday 30 October 2011 21:37:29 Fabien Bodard wrote:
>> 2011/10/30 richard terry :
>> > On Sunday 30 October 2011 21:28:16 Fabien Bodard wrote:
>> >> 2011/10/30 richard terry :
>> >> > This code:
>> >> >
>> >> > Message.Title = "Delete an appointment"
>> >> > If M
On Sunday 30 October 2011 21:37:29 Fabien Bodard wrote:
> 2011/10/30 richard terry :
> > On Sunday 30 October 2011 21:28:16 Fabien Bodard wrote:
> >> 2011/10/30 richard terry :
> >> > This code:
> >> >
> >> > Message.Title = "Delete an appointment"
> >> > If Message.Warning("Delete", "Yes", "No"
2011/10/30 richard terry :
> On Sunday 30 October 2011 21:28:16 Fabien Bodard wrote:
>> 2011/10/30 richard terry :
>> > This code:
>> >
>> > Message.Title = "Delete an appointment"
>> > If Message.Warning("Delete", "Yes", "No") = 2 Then Return
>> >
>> > gives a gui-oddity - in that if the length
On Sunday 30 October 2011 21:28:16 Fabien Bodard wrote:
> 2011/10/30 richard terry :
> > This code:
> >
> > Message.Title = "Delete an appointment"
> > If Message.Warning("Delete", "Yes", "No") = 2 Then Return
> >
> > gives a gui-oddity - in that if the length of the text in the dialog <
> > len
2011/10/30 richard terry :
> This code:
>
> Message.Title = "Delete an appointment"
> If Message.Warning("Delete", "Yes", "No") = 2 Then Return
>
> gives a gui-oddity - in that if the length of the text in the dialog < length
> of the message.title then the message.title is truncated.
gb.form.d
This code:
Message.Title = "Delete an appointment"
If Message.Warning("Delete", "Yes", "No") = 2 Then Return
gives a gui-oddity - in that if the length of the text in the dialog < length
of the message.title then the message.title is truncated.
Regards
Richard
---