string[] stringArray = new string[20];
private void AgeEatCheck()
{
int iDeleteCount = 0;
int AgeMin = 12;//초등학교 6학년
int AgeMax = 60;
private void AgeEatCheck()
{
int iDeleteCount = 0;
int AgeMin = 12;//초등학교 6학년
int AgeMax = 60;
for (int i = 0; i < listBox1.Items.Count; i++)
{
stringArray[i] = (string)listBox1.Items[i];//리스트박스의 아이템을 string배열에 담는다.
if (GetAge < AgeMin || GetAge > AgeMax)
{
int temp = stringArray[i].LastIndexOf('*'); //*있는 문자열의 인덱스
if (temp > 0) //*가 들어있는 문장은 양수로 나온다(없을경우 -1)
{
listBox1.Items.Remove(listBox1.Items[i]); //*있는 해당 문자열을 제거
iDeleteCount++; //몇개가 제거 되었는가? count 변수
}
}
}
if (GetAge < AgeMin || GetAge > AgeMax)
{
string sTemp = Convert.ToString(iDeleteCount); // int -> string 형변환
MessageBox.Show( sTemp + " : disable");
}
}
{
stringArray[i] = (string)listBox1.Items[i];//리스트박스의 아이템을 string배열에 담는다.
if (GetAge < AgeMin || GetAge > AgeMax)
{
int temp = stringArray[i].LastIndexOf('*'); //*있는 문자열의 인덱스
if (temp > 0) //*가 들어있는 문장은 양수로 나온다(없을경우 -1)
{
listBox1.Items.Remove(listBox1.Items[i]); //*있는 해당 문자열을 제거
iDeleteCount++; //몇개가 제거 되었는가? count 변수
}
}
}
if (GetAge < AgeMin || GetAge > AgeMax)
{
string sTemp = Convert.ToString(iDeleteCount); // int -> string 형변환
MessageBox.Show( sTemp + " : disable");
}
}
'Project > SMI' 카테고리의 다른 글
SMI (WindowMobile Programming) (0) | 2010.12.06 |
---|---|
[C#] DateTime을 이용한 알람 설정 (0) | 2010.12.06 |
[C#] Window Mobile 강제로 Explorer 실행하기 (0) | 2010.12.04 |
[C#] Enum 사용 (0) | 2010.12.02 |
[C#] 메인폼 객체를 다른 생성된 폼에서 사용할 경우 (0) | 2010.11.28 |