摘要:c# 2.0 匿名方法大大简化了 windows forms 异步调用的实现,我们再也不用手工定义异步委托或者包装类了。例如,在下面的代码示例中,form1 有一个按钮控件和一个列表控件,在按钮控件的单击事件里,我们新建一个线程,在这个线程中向列表控件添加 10 个项目:
public class form1 : system.windows.forms.form{ private system......
摘要: jdk1.5更改了swing的默认的look&feel. 比较有立体感,符合现在人们的审美观,我喜欢!
......
#default#savehistory防止后退清空文本框
function runex(cod1) {
cod=document.all(cod1)
var code=cod.value;
if (code!=""){
var newwin=window.open(´´,´runcode´,´´);
newwin.focus();
newwin.opener = null
newwin.document.write(code);
newwin.document.close();
}
}
<html>
<head>
<meta name="save" content="history">
<s... 下一页
摘要:option explicitdim i as integerdim time_hour, time_minute, time_second as integer
private sub form_keypress(keyascii as integer) select case keyascii case 105 call turn(next_block_kind) case 106 call......