Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
MmTextbox Changes values when format type
Message
De
09/06/2008 13:07:43
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Titre:
MmTextbox Changes values when format type
Divers
Thread ID:
01322600
Message ID:
01322600
Vues:
52
My application has several mmtextboxs that are displaying currency values that may be edited.The textbox’s format type is set to “C”. After I change the values and tab to the next control the previous value is put back in the textbox. I put a break point in the validateing event of one of the textboxs and traced it to the following mm code
protected virtual void FormatEventHandler(object sender, ConvertEventArgs cevent)
{
if (this.Format != null)
{
cevent.Value = mmString.GetText(cevent.Value, this.NullText,this.Format,this.FormatInfo,this.oTypeConverter);
}
}


cevent.Value is the old value not the amount that I entered. I cant tell where cevent is getting its value from but it is not the controls current value.
If I remove the Format “C” property and set it to nothing then the value works fine.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform