-
研究生信息管理系統(tǒng)的完整開(kāi)發(fā)過(guò)程。主要應(yīng)用了ADO對(duì)象操縱數(shù)據(jù)庫(kù)的技術(shù),并在使用ADO的技術(shù)中靈活運(yùn)用了OLE DB的數(shù)據(jù)庫(kù)鏈接方法、多條SQL查詢語(yǔ)句、控件Combo Box與ActiveX控件ADO DataControl和DataGridControl。
標(biāo)簽:
ADO
研究生
信息管理系統(tǒng)
對(duì)象
上傳時(shí)間:
2013-12-23
上傳用戶:515414293
-
RC4加密算法是大名鼎鼎的RSA三人組中的頭號(hào)人物Ron Rivest在1987年設(shè)計(jì)的密鑰長(zhǎng)度可變的流加密算法簇。之所以稱其為簇,是由于其核心部分的S-Box長(zhǎng)度可為任意,但一般為256字節(jié)。該算法的速度可以達(dá)到DES加密的10倍左右。
標(biāo)簽:
Rivest
1987
RC4
RSA
上傳時(shí)間:
2013-12-21
上傳用戶:851197153
-
Netcat for NT is the tcp/ip "Swiss Army knife" that never made it into any
of the resource kits. It has proved to be an extremely versatile tool on
the unix platform. So why should NT always be unix s poor cousin when it
comes to tcp/ip testing and exploration? I bet many NT admins out there
keep a unix Box around to use tools such as Netcat or to test their systems
with the unix version of an NT vulnerability exploit. With Netcat for NT
part of that feeling disempowerment is over.
標(biāo)簽:
the
resource
Netcat
Swiss
上傳時(shí)間:
2017-04-02
上傳用戶:onewq
-
</div>
<br>
<input type="button" value="閃爍" onclick="highLight($( demo ))" />
<input type="button" value="停止" onclick="stopTwinkle($( demo ))" />
<br>
<br>
<div id="demo2" class="Box">
Box II
</div>
<br>
<input type="button" value="閃爍" onclick="highLight($( demo2 ))" />
<input type="button" value="停止" onclick="stopTwinkle($( demo2 ))" />
標(biāo)簽:
highLight
lt
gt
onclick
上傳時(shí)間:
2013-12-07
上傳用戶:蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)蟲(chóng)
-
Urwid is a Python library for making text console applications. It has many features including fluid interface resizing, support for UTF-8 and CJK encodings, standard and custom text layout modes, simple markup for setting text attributes, and a powerful, dynamic list Box that handles a mix of widget types. It is flexible, modular, and leaves the developer in control.
標(biāo)簽:
applications
including
features
console
上傳時(shí)間:
2013-12-16
上傳用戶:refent
-
I was trying to develope a programme to make a slide show of all the pictures of a folder using vb.net. I have spent lot of time in net for searching this but all in vain, I didn t get a simple programme to solve the same and lastly I gave myself a try for the same and developed the code, I have used there a folderbrowserdialogue and a timer with a picture Box control and in coding I have used IO name spaces to get the pathe and folder info here is the code.
Enjoy
Subhankar
標(biāo)簽:
programme
develope
pictures
trying
上傳時(shí)間:
2017-04-24
上傳用戶:a3318966
-
可算sudoku的語(yǔ)法
規(guī)則很簡(jiǎn)單, 9*9 的格子中,每列,每行數(shù)字不可重復(fù)。
每個(gè) "3*3" 的 "Box" (共9個(gè)) 內(nèi)的數(shù)字也不可重復(fù)。
附件是 eclipse java project, 請(qǐng)將你的算法寫(xiě)在 SolvePuzzle() 內(nèi)
標(biāo)簽:
sudoku
上傳時(shí)間:
2013-12-18
上傳用戶:wsf950131
-
form = new_form(fields)
scale_form(form, &rows, &cols)
win = newwin(rows+3, cols+4, 3, 20)
subwin = derwin(win, rows, cols, 1, 2)
set_form_sub(form, subwin)
Box(win, 0, 0)
keypad(win, TRUE)
post_form(form)
refresh()
wrefresh(win)
wrefresh(subwin)
//設(shè)置覆蓋模式
form_driver(form, REQ_OVL_MODE)
標(biāo)簽:
form
cols
rows
scale_form
上傳時(shí)間:
2017-06-12
上傳用戶:wff
-
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//設(shè)置模式
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立窗口
win = newwin(h, w, 3, 20)
Box(win, 0, 0)
keypad(win, TRUE)
wmove(win, cury, curx)
mvaddstr(16, 1, "Press arrow keys to move the cursor within the window.\n")
mvaddstr(17, 1, "Press q to quit.\n")
refresh()
wrefresh(win)
標(biāo)簽:
EXIT_FAILURE
initcurs
initscr
perror
上傳時(shí)間:
2013-12-20
上傳用戶:FreeSky
-
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立菜單項(xiàng)
for(i=0 i<N_ITEMS i++){
items[i] = new_item(months[i], "")
}
//建立菜單
mymenu = new_menu(items)
//設(shè)置為5行單列的菜單
set_menu_format(mymenu, 5, 1)
set_menu_mark(mymenu, "*")
//獲得菜單的行數(shù)很列數(shù)
scale_menu(mymenu, &mrows, &mcols)
//建立窗口和子窗口
win = newwin(mrows + 2, mcols + 2, 3, 30)
keypad(win, TRUE)
Box(win, 0, 0)
subwin = derwin(win, 0, 0, 1, 1)
//設(shè)置菜單的窗口
set_menu_sub(mymenu, subwin)
//在子窗口上放置菜單
post_menu(mymenu)
refresh()
wrefresh(win)
標(biāo)簽:
EXIT_FAILURE
initcurs
initscr
cbreak
上傳時(shí)間:
2013-11-29
上傳用戶:小眼睛LSL