|
2008/12/20(Sat) 09:23:58 編集(投稿者)
// 承認コメントのバイト数チェック if (!cmn.checkByte(drpShinseiNaiyo.SelectedItem.Text + txtShinseiNaiyo.Text,100)) { ShowErrorMessage(cmn.makeMessage("S01E0111")); return;
追記です。
checkByte ↓ clskintaiCommon #regon バイト数チェック /// <summary> /// <param name = "checkString" > チェック文字列</param> /// <param name> = "byteCount" > バイト数</param> /// <returns> TRUE→可能、FALSE→不可></returns>
public bool checkByte(string checkString,int byteCount) { if (byteCount < int Parse(Encoding Get Encoding("shift-jis"),GetByteCount(checkString).ToString())) { return false; } else { return true; } } #endregion
宜しければ、関数cmn checkByteの中身の内容も詳しく教えていただけたら幸いです。
|