地理數據格式轉化小軟件,可以實現ESRI EOO(*.e00),INFO MIF(*.mif),AutoCAD(*.dxf),地球數據標準格式(*.vct), ESRI Shape(*.shp),NREDIS標準格式(*.nsi),地理要素標記語言(*.fml)之間的數據轉化
上傳時間: 2015-08-22
上傳用戶:huyiming139
本系統適合中小規模賓館使用,有旅客登記、員工管理功能,同時本著責任明確原則,每個房間都由一個管理員負責。相應就有三張表:旅客信息登記表(hotel),員工信息管理表(INFO),責任表(duty)。同時為了信息安全性,進行任何操作之前都必須通過密碼登陸界面,相應設一個用戶表(users)。附優秀論文說明。
標簽: 模
上傳時間: 2015-08-23
上傳用戶:hullow
員工培訓系統,首先確認您的機器上已經安裝了VC6.0以上版本,要編譯生成可執行文件,需打開后綴名為dsw的文件,系統會默認用VC打開,然后選擇Build菜單下的Set Active Configuration選項,選擇Project Configuration為Win32 Release,然后編譯項目,得到可執行文件。連接數據庫請參照第2章的方法,在ODBC數據源內添加Microsoft Access數據庫train.mdb,并將數據源名設定為train即可實現數據庫和應用程序的正常連接,程序才能正常實現數據庫的訪問。另外,如果用戶自己編寫了.chm的幫助文檔只要和可執行文件放在同一個目錄下就可以了。 用戶要修改程序源碼可以選擇相應的.h和.cpp文件,本實例使用的命名規則基本是:DIALOG_***** 為管理對話框資源, *****INFO為數據輸入窗口資源, *****Set為結果集對應的類
上傳時間: 2015-08-26
上傳用戶:wmwai1314
The code, images and designs for this book are released under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License. http://creativecommons.org/licenses/by-nc-sa/2.5/ You are free: * to copy, distribute, display, and perform the work * to make derivative works Under the following conditions: *Attribution. You must attribute the work in the manner specified by the author or licensor. *Noncommercial. You may not use this work for commercial purposes. *Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one. *For any reuse or distribution, you must make clear to others the license terms of this work. *Any of these conditions can be waived if you get permission from the copyright holder. CONTACT ME Please address any questions to INFO@andybudd.com.
標簽: Attribution-NonComm Creative released Commons
上傳時間: 2014-01-19
上傳用戶:chfanjiang
作者:林信良(網絡化名良葛格) 學歷:臺灣大學電機工程學系 經歷:SUN教育訓練中心講師 著作:《JAVA 學習筆記》、《Spring 技術手冊》,為SUN官方教材主要編寫成員之一 博客: http://blog.csdn.net/caterpillar_here 本書詳細信息: http://www.china-pub.com/computers/common/INFO.asp?id=31664
上傳時間: 2013-12-24
上傳用戶:yyq123456789
The INFOrmation in this publication is believed to be accurate as of its publication date. Such INFOrmation is subject to change without notice and The ATM Forum is not responsible for any errors. The ATM Forum does not assume any responsibility to update or correct any INFOrmation in this publication. Notwithstanding anything to the contrary, neither The ATM Forum nor the publisher make any representation or warranty, expressed or implied, concerning the completeness, accuracy, or applicability of any INFOrmation contained in this publication. No liability of any kind shall be assumed by The ATM Forum or the publisher as a result of reliance upon any INFOrmation contained in this publication.
標簽: publication INFOrmation believed accurate
上傳時間: 2015-09-16
上傳用戶:1109003457
Huffman 壓縮/解壓算法的ANSI C實現 This archive contains a simple and readable ANSI C implementation of Huffman coding and decoding. This implementation is not intended to be the best, fastest, smallest, or any other performance related adjective. More INFOrmation on Huffman encoding may be found at: http://michael.dipperstein.com/huffman http://datacompression.INFO/Huffman.shtml
標簽: ANSI implementation contains readable
上傳時間: 2014-01-05
上傳用戶:thesk123
基于VB和ACCESS的成績管理系統,此程序為畢業設計題目.采用ADO控件ADODC訪問數據庫并通過DATAGRID顯示出來的結構.具有基本的添加查找刪除等功能。涉及到多表聯合查詢。 文件包括INFO.mdb maINFOrm.frm maINFOrm.frx,maINFOrm.text,moudel1.text,moude1.bas,工程1.dep,工程1.pdm,工程1.vbp,工程1.vbw,數據庫作業.exe等文件。 下載解壓可以運行。
上傳時間: 2015-10-29
上傳用戶:youke111
自己寫的一個酒店員工培訓系統,內有程序,文檔。用戶要修改程序源碼可以選擇相應的.h和.cpp文件,本實例使用的命名規則基本是:DIALOG_***** 為管理對話框資源, *****INFO為數據輸入窗口資源, *****Set為結果集對應的類
標簽:
上傳時間: 2013-12-22
上傳用戶:stella2015
2.[問題描述] 編寫遞歸算法,在二叉樹中求位于先序序列中第K個位置的結點 [輸入] 按照先序序列的順序輸入該結點的內容。其輸入abd eh cf i g 。輸入要求的位置 [輸出] 若二叉樹不空,按先序序列輸出,求出所求位置的結點 [存儲結構] 采用二叉表存儲 [算法的基本思想] 采用遞歸方法建立和遍歷二叉樹。首先建立二叉樹的根結點,然后建立其左右子樹,直到空子樹為止,先序遍歷二叉樹時,先遍厲左子樹,后遍厲右子樹,最后訪問根結點并計算出二叉樹中葉子結點的數目和第K個位置的結點 #include<stdio.h> #include<malloc.h> struct node{ char INFO struct node*llink,*rlink } typedef struct node NODE
上傳時間: 2014-01-13
上傳用戶:zm7516678