using system.runtime.interopservices;
using system.diagnostics;
namespace 傳送訊息
///
///
///
///
///
private void 傳送資訊_click(object sender, eventargs e)
process p = ps[0];
intptr calchandle = p.mainwindowhandle;
postmessage((int)calchandle, 256, 0x31, 0); //傳送1
postmessage((int)calchandle, 256, 0xbb, 0); //傳送 +
postmessage((int)calchandle, 256, 0x39, 0); //傳送 9
postmessage((int)calchandle, 256, 0x0d, 0); //傳送
}///
///沒送訊息
///
/// hwnd ----------- long,接收訊息的那個視窗的控制代碼。如設為hwnd_broadcast,表示投遞給系統中的所有頂級視窗。如設為零,表示投遞一條執行緒訊息(參考postthreadmessage)
/// wmsg ----------- long,訊息識別符號
/// wparam --------- long,具體由訊息決定
/// lparam --------- any,具體由訊息決定
///
[dllimport("user32.dll", entrypoint = "postmessage")]
public static extern int postmessage(
int hwnd,
int wmsg,
int wparam,
int lparam);}
}
傳送郵件 1
用於郵件傳送的模組 import smtplib qq郵件 1.配置郵箱smtp伺服器的主機位址,將來使用這個伺服器收發郵件 host smtp.qq.com 2.配置服務的埠,預設的郵件埠是25 port 465 3.指定發件人和收件人 from qq.com to qq.com 4.郵件標題 s...
post傳送form格式 1
x www form urlencoded格式裡面是正常模式 key1 value1 key2 value2public static string sendpost string curl,string param else catch exception e finally catch ioex...
c 實現手機簡訊傳送(1)
中文c 技術站 進入論壇 2006 07 26 11 43 關 鍵 詞 c web service 簡訊通過程式設計方式實現簡訊息的傳送對很多人來說是一件比較煩雜的事情,目前一般的解決方法是通過計算機和手機的連線,通過可對手機程式設計的語言編寫相關的手機簡訊息程式來實現,而這種方法對於一般人來說是很...