搜索结果
找到约 129 项符合
Box 的查询结果
按分类筛选
- 全部分类
- 其他 (12)
- matlab例程 (11)
- Linux/Unix编程 (9)
- 技术资料 (8)
- Java编程 (6)
- 软件设计/软件工程 (5)
- 文章/文档 (4)
- 压缩解压 (4)
- 汇编语言 (4)
- 其他数据库 (3)
- 嵌入式/单片机编程 (3)
- JavaScript (3)
- 其他书籍 (3)
- 单片机开发 (3)
- 电源技术 (2)
- 单片机编程 (2)
- 可编程逻辑 (2)
- 加密解密 (2)
- GPS编程 (2)
- 数据结构 (2)
- Delphi控件源码 (2)
- 数值算法/人工智能 (2)
- Internet/网络编程 (2)
- Windows Mobile (2)
- 书籍源码 (2)
- 家庭/个人应用 (2)
- 源码 (2)
- VIP专区 (2)
- 学术论文 (1)
- allegro (1)
- 模拟电子 (1)
- 教程资料 (1)
- 源码/资料 (1)
- Symbian (1)
- J2ME (1)
- 电子书籍 (1)
- 网络 (1)
- 串口编程 (1)
- SQL Server (1)
- 并行计算 (1)
- 软件工程 (1)
- 微处理器开发 (1)
- *行业应用 (1)
- 数学计算 (1)
- VHDL/FPGA/Verilog (1)
- 人工智能/神经网络 (1)
- 交通/航空行业 (1)
- C/C++语言编程 (1)
- 技术书籍 (1)
- 软件 (1)
- 手册 (1)
其他数据库 研究生信息管理系统的完整开发过程。主要应用了ADO对象操纵数据库的技术
研究生信息管理系统的完整开发过程。主要应用了ADO对象操纵数据库的技术,并在使用ADO的技术中灵活运用了OLE DB的数据库链接方法、多条SQL查询语句、控件Combo Box与ActiveX控件ADO DataControl和DataGridControl。
加密解密 RC4加密算法是大名鼎鼎的RSA三人组中的头号人物Ron Rivest在1987年设计的密钥长度可变的流加密算法簇。之所以称其为簇
RC4加密算法是大名鼎鼎的RSA三人组中的头号人物Ron Rivest在1987年设计的密钥长度可变的流加密算法簇。之所以称其为簇,是由于其核心部分的S-box长度可为任意,但一般为256字节。该算法的速度可以达到DES加密的10倍左右。
微处理器开发 Netcat for NT is the tcp/ip "Swiss Army knife" that never made it into any of the resource kits.
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
ke ...
书籍源码 </div> <br> <input type="button" value="闪烁" onclick="highLight($( demo ))" /> &
</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" va ...
Linux/Unix编程 Urwid is a Python library for making text console applications. It has many features including fluid
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 widge ...
*行业应用 I was trying to develope a programme to make a slide show of all the pictures of a folder using vb.n
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 use ...
数学计算 可算sudoku的语法 规则很简单, 9*9 的格子中
可算sudoku的语法
规则很简单, 9*9 的格子中,每列,每行数字不可重复。
每个 "3*3" 的 "Box" (共9个) 内的数字也不可重复。
附件是 eclipse java project, 请将你的算法写在 SolvePuzzle() 内
Linux/Unix编程 form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20)
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)
//设置覆盖模式
...
Linux/Unix编程 //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //设置模式
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//设置模式
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 ...
Linux/Unix编程 //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } cbreak()
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立菜单项
for(i=0 i<N_ITEMS i++){
items[i] = new_item(months[i], "")
}
//建立菜单
mymenu = new_menu(items)
//设置为5行单列的菜单
set_menu_fo ...