Welcome![Sign In][Sign Up]
Location:
Search - getmessage

Search list

[e-languagegetmessage

Description: 易语言拦截封包,需要外挂作坊4.0模块,通过WSPHOOK或者APIHOOK实现封包拦截-Easy language to intercept packets, you need to plug-in module workshop 4.0
Platform: | Size: 15360 | Author: 方海亮 | Hits:

[GDI-BitmapRandRect

Description: 随机矩形生成器。可用来查看peekmessage与getmessage的区别-Random rectangle generator. Used to view peekmessage difference with getmessage
Platform: | Size: 17408 | Author: caixin | Hits:

[Internet-NetworkgetMessage

Description: 网络测量是通过收集数据或分组的踪迹定量分析不同的网络应用在网络中的分组活动情况的技术。 通过网络测量,可以更加有效地认识和了解网络的性能,进行高效的网络性能管理;可以发现网络故障并对其进行迅速定位;可以检测拥塞链路,预警拒绝服务攻击,实施流量工程,满足服务等级合同的高效QOS策略设计及实现多种形式科学计费。此外,网络测量还是建立网络流量模型的重要手段。因此,网络测量对于网络管理、流量模型的建立、网络行为的理解、网络规划等方面都有重要意义。
Platform: | Size: 1024 | Author: inuedw | Hits:

[Othercommons-email-1.3.3-bin.tar

Description: 与发Email有关, public class sendMessage extends Thread { @Override public void run(){ super.run() try{ HtmlEmail email = new HtmlEmail() email.setHostName( *.163.com ) email.setTLS(true) email.setSSL(true) email.setCharset( gbk ) email.addTo( *@qq.com ) email.setFrom( *@163.com ) email.setAuthentication( * , password ) email.setSubject( Hello ) email.setMsg( My name is sky. ) email.send() }catch (EmailException e){ Log.i( TAG , ----------> + e.getMessage()) } } } sendMessage send = new sendMessage() send.run() - Email concerned with hair. public class sendMessage extends Thread { @Override public void run(){ super.run() try{ HtmlEmail email = new HtmlEmail() email.setHostName( *.163.com ) email.setTLS(true) email.setSSL(true) email.setCharset( gbk ) email.addTo( *@qq.com ) email.setFrom( *@163.com ) email.setAuthentication( * , password ) email.setSubject( Hello ) email.setMsg( My name is sky. ) email.send() }catch (EmailException e){ Log.i( TAG , ----------> + e.getMessage()) } } } sendMessage send = new sendMessage() send.run()
Platform: | Size: 338944 | Author: lilifu | Hits:

[OS program11

Description: 用C++实现的计算机图形中的种子填充算法,对学习编程和计算机图形学的很有帮助.-LoadIcon LoadCursor RegisterClass MessageBox CreateWindow ShowWindow UpdateWindow GetMessage TranslateMessage DispatchMessage SetPixel GetPixel InvalidateRect BeginPaint EndPaint PostQuitMessage DefWindowProc
Platform: | Size: 38912 | Author: yxs | Hits:

[CSharpgetmessage

Description: 与全站仪通信的代码,包括串口通讯协议的代码实现-Total Station to communicate with the code, including code serial communication protocol implementation
Platform: | Size: 264192 | Author: 杜清 | Hits:

[GDI-BitmapGDI Bitmap C++ Code

Description: #include <Windows.h> #include <gdiplus.h> using namespace Gdiplus; // Forward declarations LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { // Initialize GDI+ GdiplusStartupInput gdiplusStartupInput; ULONG_PTR gdiplusToken; GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL); // Create the window WNDCLASSEX wcex = { 0 }; wcex.cbSize = sizeof(WNDCLASSEX); wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = WndProc; wcex.hInstance = hInstance; wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); wcex.lpszClassName = L"MyWindowClass"; RegisterClassEx(&wcex); HWND hWnd = CreateWindow(L"MyWindowClass", L"My Window", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL); ShowWindow(hWnd, nCmdShow); UpdateWindow(hWnd); // Run the message loop MSG msg = { 0 }; while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } // Shutdown GDI+ GdiplusShutdown(gdiplusToken); return (int)msg.wParam; } LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_PAINT: { PAINTSTRUCT ps; HDC hdc = BeginPaint(hWnd, &ps); // Create a Bitmap object and draw a line on it Bitmap bmp(100, 100); Graphics g(&bmp); Pen pen(Color(255, 0, 0, 0)); // Red pen g.DrawLine(&pen, 0, 0, 99, 99); // Draw the bitmap on the window Graphics graphics(hdc); graphics.DrawImage(&bmp, 0, 0); EndPaint(h
Platform: | Size: 402171 | Author: khaledmagd73@gmail.com | Hits:
« 1 2»

CodeBus www.codebus.net