symbian os c++ s60 下的一個簡單Leave例程,短小精致
上傳時間: 2015-04-05
上傳用戶:yyyyyyyyyy
1. It is located in the root directory - SecurityBuilderDemo.exe. Leave password box blank and click on Security button in order to Add/Remove users and set user rights. Once you entered Security dialog you may select your Supervisor password. 2. Click OK when finished configuring users. Don t forget to disable some features in order to see what happens with GUI elements - menus, and buttons.
標簽: SecurityBuilderDemo directory password located
上傳時間: 2014-01-23
上傳用戶:chongcongying
Leave Management System
標簽: Management System Leave
上傳時間: 2013-11-25
上傳用戶:ljt101007
留一模型選擇法Leave-one-out model selection,適合支持向量機分類和回歸時進行參數選擇。
標簽: Leave-one-out selection model 模型
上傳時間: 2014-10-12
上傳用戶:一諾88
Linear Technology has a sabbatical program. Every fiveyears employees are granted sabbatical Leave, which maylast up to six weeks. You have 18 months from each fiveyear employment anniversary to take the Leave. Sabbaticalis fully company paid and has no restrictions. The time isyours to do with as you please.
上傳時間: 2013-10-19
上傳用戶:851197153
//芯片資料請到www.elecfans.com查找 //DS1820 C51 子程序//這里以11.0592M晶體為例,不同的晶體速度可能需要調整延時的時間//sbit DQ =P2^1;//根據實際情況定義端口 typedef unsigned char byte;typedef unsigned int word; //延時void delay(word useconds){ for(;useconds>0;useconds--);} //復位byte ow_reset(void){ byte presence; DQ = 0; //pull DQ line low delay(29); // Leave it low for 480us DQ = 1; // allow line to return high delay(3); // wait for presence presence = DQ; // get presence signal delay(25); // wait for end of timeslot return(presence); // presence signal returned} // 0=presence, 1 = no part //從 1-wire 總線上讀取一個字節byte read_byte(void){ byte i; byte value = 0; for (i=8;i>0;i--) { value>>=1; DQ = 0; // pull DQ low to start timeslot DQ = 1; // then return high delay(1); //for (i=0; i<3; i++); if(DQ)value|=0x80; delay(6); // wait for rest of timeslot } return(value);} //向 1-WIRE 總線上寫一個字節void write_byte(char val){ byte i; for (i=8; i>0; i--) // writes byte, one bit at a time { DQ = 0; // pull DQ low to start timeslot DQ = val&0x01; delay(5); // hold value for remainder of timeslot DQ = 1; val=val/2; } delay(5);} //讀取溫度char Read_Temperature(void){ union{ byte c[2]; int x; }temp; ow_reset(); write_byte(0xCC); // Skip ROM write_byte(0xBE); // Read Scratch Pad temp.c[1]=read_byte(); temp.c[0]=read_byte(); ow_reset(); write_byte(0xCC); //Skip ROM write_byte(0x44); // Start Conversion return temp.x/2;}
上傳時間: 2013-11-03
上傳用戶:hongmo
Documentation and source code Copyright (C) 1985 by Mark E. Mallett permission is granted to distribute this document and the code indiscriminately. Please Leave credits in place, and add your own as appropriate.
標簽: E. Documentation permission Copyright
上傳時間: 2013-12-21
上傳用戶:wlcaption
編寫本程序時,所使用的是傳輸層的UDP協議,不分服務器和客戶端,采用對等實體的形似實現信息的傳輸。運用java.net.DatagramPacket類和java.net.DatagrameSocket類實現套接和數據的傳輸。并且采用組播形式進行數據信息的傳遞。使用三個簡單協議數據單元(PDU),即JOIN PDU,Leave PDU,MESSAGE PDU。分別表示首次連接時組播的數據報、用戶離開時組播的數據報,用戶輸入完消息時組播的數據報。
上傳時間: 2014-06-22
上傳用戶:無聊來刷下
Parking Lot Simulation: Parking lot attendants often park cars bumper-to-bumper, several cars deep. This maximizes the number of cars they can fit into a parking lot at the expense of complicating the process of retrieving someone s car when they want to Leave. Consider the case of a person wanting to Leave the parking lot but their car is parked in the back of a row of cars. In this case, all the cars parked in front of this person s car must be temporarily moved to allow this person to Leave.
標簽: Parking cars bumper-to-bumper Simulation
上傳時間: 2016-02-15
上傳用戶:lepoke
一款用JAVA制作開發的小型聊天軟件,里面附有安裝程序和JAVA源代碼。 Visual Chat 1.91 Developer Edition - Customize the Visual Chat code regarding your own requirements - Use customchatdev.html for developing / testing - Create .jar and .cab-files containing client-specific .class-files and the images-folder (use zip and cabarc compressing tools) - Adapt the customchat.html file - Upload all the files to your webserver - Start the ChatServer by invoking java at.ac.uni_linz.tk.vchat.ChatServer [port [server-key]] from your commandline - I kindly ask you to Leave copyright and credit information in the InfoPanel.class as it is - but you are invited to add your own text. In case of violations I will consider excluding this class from the source in the future.
上傳時間: 2014-09-06
上傳用戶:龍飛艇