c#.net
c# cf send sms of ktf
우유빛
2009. 7. 29. 18:05
void SendMMS(string phoneNumber)
{
String para_MMS;
para_MMS = "-type EDIT -RECEIVER \"" + phoneNumber + "\" -name \"\"";
try
{
//Process.Start 함수는 CF 2.0용입니다
MessageBox.Show(para_MMS);
Process.Start("\\windows\\KTFMMS.exe", para_MMS);
}
catch (Win32Exception)
{
MessageBox.Show ("KTFMMS 화일이 존재하지 않습니다");
}
}