1 function funPostBack(srvMethod){ 2 /* 3 var 
contentNR=$(document.getElementById("reportFrame").contentWindow.document).find("#conte...
                            
                            
                                分类:
Web程序   时间:
2014-05-01 12:58:08   
                                阅读次数:
643
                             
                    
                        
                            
                            
                                一、会议时间:2014年4月30日21:00--21:30二、会议地点:二三餐厅二楼三、会议目的: 开始学习安卓内容四、会议内容: 1、确定了未来几天的计划 
第一天: 搭建安卓环境,配置安卓环境变量,配置安卓环境; 第二天: 学习有关安卓的相关知识,学习使用eclips,能够初步使用...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 10:10:43   
                                阅读次数:
312
                             
                    
                        
                            
                            
                                Given an array of integers, find two numbers 
such that they add up to a specific target number.The function twoSum should 
return indices of the two nu...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 08:35:40   
                                阅读次数:
443
                             
                    
                        
                            
                            
                                QPoint dragPosition;void 
MainWindow::mousePressEvent(QMouseEvent 
*event){if(event->button()==Qt::LeftButton){dragPosition=event->globalPos()-frameGeom...
                            
                            
                                分类:
移动开发   时间:
2014-05-01 04:14:18   
                                阅读次数:
464
                             
                    
                        
                            
                            
                                在VC++中,按钮关联了快捷键,现要禁用按钮,用了 
(CButton*)GetDlgItem(IDC_BUTTON)->EnableWindow(FALSE); 虽然窗口中按钮变成灰色,但是快捷键仍然有效。 
当然有一个办法是在OnButton()中做一定的修改来达到目的。 但是怎样才能更简单地实现完...
                            
                            
                                分类:
编程语言   时间:
2014-05-01 03:15:56   
                                阅读次数:
365
                             
                    
                        
                            
                            
                                Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3....
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:47:20   
                                阅读次数:
251
                             
                    
                        
                            
                            
                                We sometimes got memory leak problem, and we need to find the leaked memory, Here is a useful tool from MS, UMDH, it is included in WinDBG install package.
Here is a introduction on how to UMDH to identify memory leak problems...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:38:21   
                                阅读次数:
374
                             
                    
                        
                            
                            
                                最近要做一个文件打开和保存的对话框,现将相关的代码记录如下,用以备忘!
所用控件:
2个静态标签(Static Text):用以显示功能标签;
2个文本框(Edit):用以显示打开的文件路径全名要保存的文件路径全名,设置其Read Only属性为true将文本框设置为不可编辑;
2个按钮(Button):用以浏览文件;
打开文件对话框
CFileDialog打开的对话框...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:17:21   
                                阅读次数:
301
                             
                    
                        
                            
                            
                                题目描述
Cainiao is a university student who loves ACM contest very much. It is a festival for him once when he attends ACM Asia Regional Contest because he always can find some famous ACMers there.
C...
                            
                            
                                分类:
其他好文   时间:
2014-04-28 10:33:40   
                                阅读次数:
340
                             
                    
                        
                            
                            
                                http://acm.hdu.edu.cn/showproblem.php?pid=1595
大致题意:
给一个图,让输出从中删除任意一条边后所得最短路径中最长的。。
思路:
直接枚举每条边想必是不行的。其实有些边是不需要枚举的,因为删除它们并不影响起点到终点的最短路。起作用的边都是未删边前的最短路径上的边,删除它们最短距离肯定增大,只需在这些最短距离中求最大的即可。
记录最短路...
                            
                            
                                分类:
Web程序   时间:
2014-04-28 10:24:42   
                                阅读次数:
393