亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

AVI-compatible

  • The i-mode service by NTT DoCoMo is a mobile phone service in Japan that provides its customers wit

    The i-mode service by NTT DoCoMo is a mobile phone service in Japan that provides its customers with both voice and comprehensive data services. With an i-mode phone, users can exchange i-mode e-mail and obtain information from i-mode menu sites and i-mode compatible Internet sites. The i-mode phone contains a browser that displays i-mode compatible HTML web pages. Beginning with the 505i phones, you can view Macromedia Flash Lite movies from the i-mode browser. You can also use the phones’ My Picture and Standby Screen applications to view Flash Lite movies. Although a number of manufacturers produce 505i phones, all of them support the same Flash Lite functionality.

    標(biāo)簽: service customers provides DoCoMo

    上傳時(shí)間: 2014-10-25

    上傳用戶:xmsmh

  • 文件是用于 存儲(chǔ)Windows視頻信號(hào)的數(shù)據(jù)文件

    文件是用于 存儲(chǔ)Windows視頻信號(hào)的數(shù)據(jù)文件,本文 以一個(gè)AVI文件的播放程序?yàn)槔謩e討 論利用MCI和MCIWnd兩種方法播放AVI 的程序設(shè)計(jì)。

    標(biāo)簽: Windows 存儲(chǔ) 視頻信號(hào) 數(shù)據(jù)文件

    上傳時(shí)間: 2017-08-07

    上傳用戶:維子哥哥

  • Ulead GIF Animator 5

    Ulead GIF Animator 5 簡(jiǎn)體中文綠色版 軟件介紹:     友立公司出版的動(dòng)畫(huà)GIF制作軟件,內(nèi)建的Plugin有許多現(xiàn)成的特效可以立即套用,可將AVI文件轉(zhuǎn)成動(dòng)畫(huà)GIF文件,而且還能將動(dòng)畫(huà)GIF圖片最佳化,能將你放在網(wǎng)頁(yè)上的動(dòng)畫(huà)GIF圖檔減肥,以便讓人能夠更快速的瀏覽網(wǎng)頁(yè)。

    標(biāo)簽: gif 動(dòng)態(tài)圖制作工具

    上傳時(shí)間: 2015-10-19

    上傳用戶:dumpsoft

  • dicomeye

    居于DICOM3.0標(biāo)準(zhǔn),dicom圖像傳輸查閱轉(zhuǎn)換JPEG,AVI格式

    標(biāo)簽: 用于DICOM圖像傳輸查看

    上傳時(shí)間: 2016-03-05

    上傳用戶:laodaik

  • msp430

    msp430The LDC1312 and LDC1314 are 2- and 4-channel, 1? Easy-to-use – minimal configuration required 12-bit inductance to digital converters (LDCs) for ? Measure up to 4 sensors with one IC inductive sensing solutions. With multiple channels ? Multiple channels support environmental and and support for remote sensing, the LDC1312 and aging compensation LDC1314 enable the performance and reliability benefits of inductive sensing to be realized at minimal? Multi-channel remote sensing provides lowest cost and power. The products are easy to use, onlysystem cost requiring that the sensor frequency be within 1 kHz ? Pin-compatible medium and high-resolution and 10 MHz to begin sensing. The wide 1 kHz to 10 options MHz sensor frequency range also enables use of very small PCB coils, further reducing sensing– LDC1312/4: 2/4-ch 12-bit LDC solution cost and size.– LDC1612/4: 2/4-ch 28

    標(biāo)簽: msp 430

    上傳時(shí)間: 2016-07-22

    上傳用戶:tongmoonsky

  • c#簡(jiǎn)單計(jì)算器

    // 學(xué)生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標(biāo)簽: 計(jì)算器 學(xué)生

    上傳時(shí)間: 2016-12-29

    上傳用戶:767483511

  • 簡(jiǎn)單的計(jì)算器

    // 學(xué)生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標(biāo)簽: 學(xué)生 計(jì)算器

    上傳時(shí)間: 2016-12-29

    上傳用戶:767483511

  • Delphi7編程100例

    ToolBar工具欄控件的使用 動(dòng)態(tài)建立主菜單選項(xiàng) 窗口界面的動(dòng)態(tài)分隔條 動(dòng)態(tài)設(shè)置選項(xiàng)卡頁(yè)面 在標(biāo)題欄中自定義按鈕 窗體開(kāi)合窗簾效果 Windows XP界面效果 實(shí)現(xiàn)OutLook滾動(dòng)工具欄效果 在下拉列表框中顯示樹(shù)形視圖 自定義系統(tǒng)的About項(xiàng) 修改系統(tǒng)級(jí)菜單 實(shí)現(xiàn)透明窗體效果 爆破特技窗體 只允許建立一次子窗體的MDI程序 從外部DLL中調(diào)用子窗口 新穎的資源管理器界面 如何生成半圓形窗口 制作字幕滾動(dòng)窗體 詳解Canvas生成漸變色窗口背景 WINAPM風(fēng)格磁化窗口 軟件封面的圖片顯示制作 實(shí)現(xiàn)圖片的任意角度旋轉(zhuǎn) 奇妙的拼圖游戲 使用PaintBox控件制作畫(huà)圖程序 使用DrawGrid控件制作五子棋 多彩的數(shù)據(jù)報(bào)表 按壓縮比將BMP轉(zhuǎn)換為JPG 16位真彩轉(zhuǎn)換到256色 調(diào)整圖片的RGB對(duì)比度 實(shí)現(xiàn)圖像的灰度級(jí)處理效果 3種像素歷遍方法的比較和實(shí)現(xiàn) 實(shí)現(xiàn)屏幕拷貝 實(shí)現(xiàn)圖像漫游 4種幕布式圖像顯示技巧 盤旋法實(shí)現(xiàn)9種濾鏡效果 圖形朦朧疊合顯示技巧 給MDI主窗體增加背景 實(shí)現(xiàn)圖像的淡入淡出顯示 多媒體播放器 播放AVI文件 根據(jù)客戶端IP地址獲取計(jì)算機(jī)名 實(shí)現(xiàn)多線程IP和DomainName相互轉(zhuǎn)換 Windows2000下的Popup發(fā)送功能 如何實(shí)現(xiàn)Ping操作 實(shí)現(xiàn)多線程共享探測(cè) 實(shí)現(xiàn)Windows95/98的I/O端口讀寫(xiě) 收發(fā)電子郵件與監(jiān)視網(wǎng)絡(luò)服務(wù)器資源 使用WebBrower制作瀏覽器 可視化的Ping工具 使用IdMappedPortTCP進(jìn)行端口映射 動(dòng)態(tài)設(shè)置ODBC數(shù)據(jù)源 用ADO控件打開(kāi)Access數(shù)據(jù)庫(kù) DBGrid中的記錄到Html頁(yè)面的轉(zhuǎn)換 在DBGrid中實(shí)現(xiàn)任意方向查找 在DBGrid中通過(guò)動(dòng)態(tài)下拉列表查找記錄 用DBGrid組件制作下拉列表形式的提示框 利用書(shū)簽處理DBGrid中的多個(gè)記錄 將ComboBox中的內(nèi)容直接拖放到DBGrid里 如何在DBGrid里放置圖標(biāo) DBGrid控件精彩組合 DBChart圖表控件的使用 在StringGrid組件中顯示查詢結(jié)果 使用流對(duì)象(Tstream)實(shí)現(xiàn)數(shù)據(jù)表中Tmemo字段的顯示 如何動(dòng)態(tài)建立SQLServer ODBC SQL瀏覽器 在SQL查詢中使用動(dòng)態(tài)參數(shù) 事務(wù)工作原理 標(biāo)準(zhǔn)/模糊查詢 篩選數(shù)據(jù) 數(shù)據(jù)字典查看器 TDecisionGraph決策組件的使用 明細(xì)表(Master/Detail)結(jié)構(gòu) 像處理文本資料一樣處理數(shù)據(jù)表中的信息 遠(yuǎn)程數(shù)據(jù)庫(kù)登錄 遠(yuǎn)程數(shù)據(jù)庫(kù)的離線處理 在遠(yuǎn)程數(shù)據(jù)庫(kù)中實(shí)現(xiàn)主從表關(guān)系 動(dòng)態(tài)設(shè)置遠(yuǎn)程數(shù)據(jù)庫(kù)的查詢參數(shù) 在遠(yuǎn)程數(shù)據(jù)庫(kù)中計(jì)算統(tǒng)計(jì)值 多線程與數(shù)據(jù)庫(kù) 使用遠(yuǎn)程存儲(chǔ)過(guò)程 數(shù)據(jù)模塊的同步顯示 建立Web服務(wù)的數(shù)據(jù)提供端 建立Web服務(wù)的數(shù)據(jù)訪問(wèn)端 開(kāi)發(fā)WebSnap數(shù)據(jù)庫(kù)程序 建立ActiveForm數(shù)據(jù)瀏覽 建立數(shù)據(jù)查詢WebServices服務(wù)器端 數(shù)據(jù)查詢Web服務(wù)客戶端開(kāi)發(fā) 基于WAP的手機(jī)無(wú)線應(yīng)用 建立基本W(wǎng)eb數(shù)據(jù)庫(kù)服務(wù)器應(yīng)用 建立類型庫(kù)編輯DataSnap服務(wù)端 建立查詢條件Web數(shù)據(jù)庫(kù)服務(wù)器應(yīng)用 建立基本MTS服務(wù)端 建立MTS數(shù)據(jù)訪問(wèn)客戶端 建立IntraWeb數(shù)據(jù)瀏覽 將程序圖標(biāo)設(shè)置到Windows系統(tǒng)托盤 取得和修改文件的創(chuàng)建和修改日期 通過(guò)流式數(shù)據(jù)實(shí)現(xiàn)文件分割與合并 實(shí)現(xiàn)指定擴(kuò)展名文件和相應(yīng)程序的關(guān)聯(lián) 獲取漢字拼音的首字母 監(jiān)視剪貼板 在IE工具欄上增加一個(gè)按鈕圖標(biāo) 軟件注冊(cè)機(jī)制的建立 復(fù)活節(jié)彩蛋的制作 SkinEngine控件——XP換膚 ActionList——應(yīng)用程序通用功能列表 OleContainer——OLE容器 將程序項(xiàng)設(shè)置到控制面板 藝術(shù)化排列桌面圖標(biāo) Delphi中的ini文件的讀寫(xiě) 建立鍵盤鼠標(biāo)動(dòng)作記錄與回放 實(shí)現(xiàn)指定目錄下的文件查詢 實(shí)現(xiàn)對(duì)系統(tǒng)的操作監(jiān)視 系統(tǒng)級(jí)熱鍵的實(shí)現(xiàn) 檢測(cè)NumLock、Insert、CapsLock、ScrollLock鍵的狀態(tài)

    標(biāo)簽: Delphi7編程100例

    上傳時(shí)間: 2017-06-21

    上傳用戶:blueicemei

  • L9945

    AEC-Q100 qualified ? 12 V and 24 V battery systems compliance ? 3.3 V and 5 V logic compatible I/O ? 8-channel configurable MOSFET pre-driver – High-side (N-channel and P-channel MOS) – Low-side (N-channel MOS) – H-bridge (up to 2 H-bridge) – Peak & Hold (2 loads) ? Operating battery supply voltage 3.8 V to 36 V ? Operating VDD supply voltage 4.5 V to 5.5 V ? All device pins, except the ground pins, withstand at least 40 V ? Programmable gate charge/discharge currents for improving EMI behavior

    標(biāo)簽: configurable Automotive pre-driver suitable channel systems MOSFET fully High side

    上傳時(shí)間: 2019-03-27

    上傳用戶:guaixiaolong

  • 用matlab讀取視頻文件中的圖像

    D:\中興比賽\用matlab讀取視頻文件中的圖像,并對(duì)圖像中的運(yùn)動(dòng)目標(biāo)檢測(cè)\1讀取avi視頻,并進(jìn)行幀間差分法運(yùn)算,檢測(cè)運(yùn)動(dòng)目標(biāo)

    標(biāo)簽: matlab avi 讀取 視頻 圖像 中興 幀間差分 檢測(cè) 運(yùn)動(dòng)目標(biāo)檢測(cè) 運(yùn)動(dòng)目標(biāo)

    上傳時(shí)間: 2020-04-18

    上傳用戶:rainq

主站蜘蛛池模板: 墨脱县| 嵊州市| 嘉善县| 昌图县| 禹州市| 阳东县| 大埔县| 静宁县| 新民市| 兴宁市| 永康市| 四平市| 信宜市| 长武县| 鄂托克前旗| 延长县| 肃北| 甘肃省| 玉田县| 雷山县| 青州市| 井冈山市| 漠河县| 京山县| 夏河县| 衡南县| 准格尔旗| 灵川县| 苍梧县| 弋阳县| 游戏| 达州市| 房产| 平山县| 平山县| 石河子市| 石楼县| 乾安县| 鹿邑县| 胶州市| 太白县|