本方案為解決當前企業信息化建設中"信息孤島"叢生、信息流不暢通、信息不能共享的瓶頸問題,強調首先搞好信息資源規劃(Information Resource Planning,簡稱IRP),建立全企業的信息資源管理(Information Resource Management,簡稱IRM)基礎標準,通過需求分析建立集成化信息系統的功能模型、數據模型和系統體系結構模型,然后再實施通信-計算機網絡工程、數據庫工程和應用軟件工程。
上傳時間: 2014-01-23
上傳用戶:風之驕子
This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your option) any later version.
標簽: redistribute the software program
上傳時間: 2016-06-09
上傳用戶:sssl
unit comm interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SPComm, StdCtrls, ExtCtrls type TFcomm = class(TForm) Comm1: TComm GroupBox1: TGroupBox Memo1: TMemo Memo2: TMemo GroupBox2: TGroupBox Button1: TButton Btn_send: TButton Button2: TButton procedure Button1Click(Sender: TObject) procedure Button2Click(Sender: TObject) procedure Btn_sendClick(Sender: TObject) procedure Comm1ReceiveData(Sender: TObject Buffer: Pointer BufferLength: Word) private { Private declarations } public { Public declarations } end
標簽: interface Messages Graphics Controls
上傳時間: 2016-06-10
上傳用戶:gxmm
這是在學習數據庫時寫的一個程序,采取DAO訪問ACCESS數據庫的方式 1:在程序中使用了CButtonStyle這個免費類庫。 2:在InitButtonSytle()中,為了使代碼更短小,用循環實現了位圖按鈕。 // 用循環實現必須手動改動Resource.h中的定義 // 具體細節請參看源代碼 for ( int nIco = IDI_JUMP, nBtn = IDC_JUMP nBtn >= IDC_LISTITEM nIco--, nBtn-- ) { CButtonStyle *Button = ButtonList.RemoveTail() Button->SubclassDlgItem( nBtn, this ) Button->SetIcon( nIco ) Button->SetInactiveBgColor() Button->SetInactiveFgColor() Button->SetActiveBgColor() }
上傳時間: 2013-12-24
上傳用戶:moshushi0009
Schifra Reed-Solomon Error Correcting Code Library http://www.schifra.com Copyright (c) 2000-2007 Arash Partow, All Rights Reserved. The Schifra Reed-Solomon Error Correcting Code Library and all its components are supplied under the terms of the General Schifra License agreement. The contents of the Schifra Reed-Solomon Error Correcting Code Library and its components may not be copied or disclosed except in accordance with the terms of that agreement. URL: http://www.schifra.com/license.html Parties wanting to use the Schifra Reed-Solomon Error Correcting Code Library and its components within an open source, academic or other noncommercial or not-for-profit environment may do so under the guidelines and in complete accordance with the below attached General Public License (version 2). Under the described terms of "free" use for open source and noncommercial purposes of the Schifra
標簽: Reed-Solomon Correcting Copyright Schifra
上傳時間: 2016-06-25
上傳用戶:JasonC
Schifra Reed-Solomon Error Correcting Code Library http://www.schifra.com Copyright (c) 2000-2007 Arash Partow, All Rights Reserved. The Schifra Reed-Solomon Error Correcting Code Library and all its components are supplied under the terms of the General Schifra License agreement. The contents of the Schifra Reed-Solomon Error Correcting Code Library and its components may not be copied or disclosed except in accordance with the terms of that agreement. URL: http://www.schifra.com/license.html Parties wanting to use the Schifra Reed-Solomon Error Correcting Code Library and its components within an open source, academic or other noncommercial or not-for-profit environment may do so under the guidelines and in complete accordance with the below attached General Public License (version 2). Under the described terms of "free" use for open source and noncommercial purposes of the Schifra
標簽: Reed-Solomon Correcting Copyright Schifra
上傳時間: 2014-01-04
上傳用戶:ljmwh2000
/** * 顯示輸入提示壓縮或解壓縮 繼承了InputStream類,裝有輸入流。 */ public class HZIPInputStream extends InputStream { /** * HZIPInputStream 類的構造函數,定義了huffman樹,輸入流。 * * @param in 輸入流。 * @throws IOException:如果發生I/O錯誤則拋出異常。 */
標簽: InputStream 輸入 解壓
上傳時間: 2016-06-29
上傳用戶:plsee
AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static) for (int i = 0 i < props.Length i++) { PropertyInfo prop = props[i] if (prop.GetCustomAttributes(true).Length > 0) { object[] defaultValueAttribute = prop.GetCustomAttributes(typeof(DefaultValueAttribute), true) if (defaultValueAttribute != null) { DefaultValueAttribute dva = defaultValueAttribute[0] as DefaultValueAttribute if(dva != null) prop.SetValue(o, dva.Value, null) }
標簽: AutomaticPropertiesDefaultValues PropertyInfo Article_src GetPropert
上傳時間: 2014-11-22
上傳用戶:xaijhqx
以下是從一維數據計算最大Lyapunov指數的算法源程序,在Visual C++中通過。 其中number一數據總量,dimension一重構維,delay-重構延遲,maxsplit一最大分離量 minsplit一最小分離量,iterates一迭代次數,resource-一維數據序列。
上傳時間: 2013-12-22
上傳用戶:chenbhdt
本程序是用JNI技術實現的讀取硬盤序列號 將ChenminDiskIDJoc.jar 加入環境變量 這兩個文件放入window 文件夾 或者JDK的bin文件夾 或者你的應用文件夾 DiskID32.dll DiskID.dll public static String chenmin.io.DiskID.Factory() 返回硬盤廠家 public static String chenmin.io.DiskID.DiskID() 返回硬盤序列號 ChenminDiskIDTest.bat 將啟動直接演示一個讀取硬盤序列號的測試 測試讀取硬盤序列號的源代碼在ChenminDiskIDTest.jar中
標簽: ChenminDiskIDJoc DiskID window JNI
上傳時間: 2014-01-04
上傳用戶:yy541071797