WindowsMobile6.5用のVS2008でPocketVB.NETを使用してアプリを作成しています。フォームにボタンがあります。ボタンをタップすると、電話に事前にプログラムされた番号をダイヤルさせたいです。それ、どうやったら出来るの?
1 に答える
1
Windows.Mobile.Telephony名前空間を訴えるのはどうですか?
public void Talk(string number)
Member of Microsoft.WindowsMobile.Telephony.Phone
Summary:
Places the phone call, using the specified string phone number.
Parameters:
number: The phone number to dial
スマートデバイスプロジェクトにWindows.Mobile.Telephonyへの参照を追加するだけです(少なくともWindows Mobile 5 SDK(または6以降)を対象とします)。
于 2012-11-22T14:38:44.503 に答える