搜索结果
找到约 17 项符合
refresh 的查询结果
按分类筛选
Ajax Asynchrounous pages with Ajax to refresh the page without postback
Asynchrounous pages with Ajax to refresh the page without postback
技术资料 SN74LS603A.pdf
英文描述: Memory Refresh Controllers
中文描述: 内存刷新控制器
技术资料 SN74LS601A.pdf
英文描述: Memory Refresh Controllers
中文描述: 内存刷新控制器
Delphi控件源码 This is a simple image sender to a FTP site. it can be usefull if you want to send a Web-CAM frame
This is a simple image sender to a FTP site. it can be usefull if you want to send a Web-CAM frame to a FTP site, and you can refresh this image in some intervals. give a try.
Linux/Unix编程 //初始化 initscr() //获得屏幕尺寸 getmaxyx(stdscr, h, w) //画背景 for(i=0 i<h i++)
//初始化
initscr()
//获得屏幕尺寸
getmaxyx(stdscr, h, w)
//画背景
for(i=0 i<h i++)
for(j=0 j<w j++){
mvaddch(i, j, ACS_CKBOARD)
}
refresh()
//建立窗口
pad = newpad(80, 128)
for(i=0 i<80 i++){
char line[128]
sprintf(line, "This line in pad is numbered d ...
技术资料 DSPF2812实现3路SPWM
首先初始化SPWM模块,调用Init_SPWM()函数,然后将Refresh_SPWM()函数放入定时器T1中断里面可以实现三路SPWM互补输出,调制正弦波幅值可由M1M2M3设置
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 ...
其他 一个利用三层开发的简单聊天室
一个利用三层开发的简单聊天室,发言可以自定义颜色和表情,消息保持用的是Sql数据库,采用 <meta http-equiv="refresh" content="5" />自动刷新。
DB_51aspx下为Sql数据库文件,附加即可
/login.aspx为登陆页,默认登陆帐号/密码:51aspx/51aspx ...
嵌入式/单片机编程 远程控制 以前在给别人介绍Windows CE的开发时
远程控制 以前在给别人介绍Windows CE的开发时,为了演示设备上程序的运行情况,就用Remote Zoomin来截屏,设备端一刷新,Remote Zoomin就得去手动Refresh一下,在CE和PC两边忙得不亦乐乎。当时就想,要是有自动刷新的功能不就省去了这么多麻烦吗。如果能在PC端直接控制CE设备,岂不更好? ...