RTL Message box

  • Thread starter Thread starter chook.harel
  • Start date Start date
C

chook.harel

Hey there,

I'm programming for PPC2003SE using VS2005.

I'm not an experience programmer in C#, but I manage..

Anyhow, I need the messagebox to show a confirmation box rtl…

I used the following:

DialogResult rs = MessageBox.Show("×תה בטוח?", "יצי××”",

MessageBoxButtons.YesNo, new
MessageBoxIcon(),

new
MessageBoxDefaultButton());


if (rs == System.Windows.Forms.DialogResult.Yes)

{

// User clicked yes

}

As you might not see, the text between the "" is in Hebrew, but It is
displayed on the left side, instead of the right.


That's the only need for RTL in my program. Can any solution be
provided?


Thanks,

Chen
 
No, it is not supported. Please do read the entire blog entry which makes it
clear that no only it is not supported in CF v2.0 but not on your PPC2003
either.

Cheers
Daniel
 
And what about a message box just aligned to the right..
the text i mean,
is it possible maybe to put blanks (like in html   for a space
that will pull the text to the right?)
 
Sorry, no. Obviously you can mess around with blanks but no html or any
other formatting or any other help...

Cheers
Daniel
 
Back
Top