Re: [Gambas-user] Message box anomaly

2011-10-30 Thread richard terry
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",

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread Fabien Bodard
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

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread richard terry
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: > >

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread Fabien Bodard
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

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread 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 Message.Warning("Delete", "Yes", "No"

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread Fabien Bodard
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

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread 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 of the text in the dialog < > > len

Re: [Gambas-user] Message box anomaly

2011-10-30 Thread Fabien Bodard
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

[Gambas-user] Message box anomaly

2011-10-29 Thread 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. Regards Richard ---