搜索结果
找到约 13 项符合
refresh 的查询结果
按分类筛选
Ajax Asynchrounous pages with Ajax to refresh the page without postback
Asynchrounous pages with Ajax to refresh the page without postback
教程资料 XAPP740利用AXI互联设计高性能视频系统
This application note covers the design considerations of a system using the performance
features of the LogiCORE™ IP Advanced eXtensible Interface (AXI) Interconnect core. The
design focuses on high system throughput through the AXI Interconnect core with F
MAX
 and
area optimizat ...
C/C++语言编程 基于(英蓓特)STM32V100的看门狗程序
This example shows how to update at regulate period the WWDG counter using theEarly Wakeup interrupt (EWI).
The WWDG timeout is set to 262ms, refresh window set to 41h and the EWI isenabled. When the WWDG counter reaches 40h the EWI is generated and in the WWDGISR the counter is refreshed to prevent ...
可编程逻辑 XAPP740利用AXI互联设计高性能视频系统
This application note covers the design considerations of a system using the performance
features of the LogiCORE™ IP Advanced eXtensible Interface (AXI) Interconnect core. The
design focuses on high system throughput through the AXI Interconnect core with F
MAX
 and
area optimizat ...
其他 一个利用三层开发的简单聊天室
一个利用三层开发的简单聊天室,发言可以自定义颜色和表情,消息保持用的是Sql数据库,采用 <meta http-equiv="refresh" content="5" />自动刷新。
DB_51aspx下为Sql数据库文件,附加即可
/login.aspx为登陆页,默认登陆帐号/密码:51aspx/51aspx ...
matlab例程 第四章 MATLAB 图形对象操作 4.1 图形对象的属性 4.2 图形对象句柄的获取 4.2.1 对象创建时获取 4.2.2 层次关系来获取 4.2.3 当前对象的获取 4.
第四章 MATLAB 图形对象操作
4.1 图形对象的属性
4.2 图形对象句柄的获取
4.2.1 对象创建时获取
4.2.2 层次关系来获取
4.2.3 当前对象的获取
4.2.4 根据对象属性值的获取
4.3 图形对象句柄的删除与判断
4.3.1 句柄的删除
4.3.2 句柄的判断
4.4 图形对象属性值的获取与设置
4.4.1 图形对象属性值的设置
4.4.2 图 ...
嵌入式/单片机编程 远程控制 以前在给别人介绍Windows CE的开发时
远程控制 以前在给别人介绍Windows CE的开发时,为了演示设备上程序的运行情况,就用Remote Zoomin来截屏,设备端一刷新,Remote Zoomin就得去手动Refresh一下,在CE和PC两边忙得不亦乐乎。当时就想,要是有自动刷新的功能不就省去了这么多麻烦吗。如果能在PC端直接控制CE设备,岂不更好? ...
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编程 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 ...