1.先设置单元格为 保留2位小数。 2.判断单元格内容 Dim line1 as single Dim line2 as single If Cells(2,2).Value = "" Then line1 = 0 Else if Not IsNumeric(Cells(2, 2).Text) Th ...
                            
                            
                                分类:
编程语言   时间:
2016-06-13 18:52:59   
                                阅读次数:
487
                             
                    
                        
                            
                            
                                    表格应用 获取 tBodies, tHead, tFoot, rows, cells 隔行变色 鼠标移入高亮, 添加,删除一行 DOM的方法使用 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3 ...
                            
                            
                                分类:
其他好文   时间:
2016-06-12 23:30:42   
                                阅读次数:
260
                             
                    
                        
                            
                            
                                题目链接:https://leetcode.com/problems/valid-sudoku/
题目:
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells ar...
                            
                            
                                分类:
其他好文   时间:
2016-06-12 02:12:02   
                                阅读次数:
165
                             
                    
                        
                            
                            
                                题目: Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could be partially filled, where empty cells are filled ...
                            
                            
                                分类:
其他好文   时间:
2016-06-11 11:51:14   
                                阅读次数:
208
                             
                    
                        
                            
                            
                                很多小伙伴设置背景颜色都不起作用,特别提醒需要加入下面一行: ...
                            
                            
                                分类:
Web程序   时间:
2016-06-07 14:47:17   
                                阅读次数:
2529
                             
                    
                        
                            
                            
                                又隔十多天没写博客了,最近都在忙项目的事情,公司人事变动也比较大,手头上就又多了一个项目。最近做用aspose.cells根据模板导出excel报价单的功能,顺便把相关的核心记下来,先上模板和导出的效果图吧,如下: 导出效果图(看到产品图,打不死的程(diao)序(si)员(猿)骚动吧,有没有不禁看 ...
                            
                            
                                分类:
Web程序   时间:
2016-05-20 19:33:54   
                                阅读次数:
221
                             
                    
                        
                            
                            
                                今天使用了tableview静态表布局,纪录如下 1:使用tableview 静态表,必须是UITableViewController 2:Content 中选择 Static Cells 如下图 3: //去除尾部多余的空行 self.tableView.tableFooterView = [[U ...
                            
                            
                                分类:
移动开发   时间:
2016-05-14 18:40:11   
                                阅读次数:
271
                             
                    
                        
                            
                            
                                    注意:就算代码中不包含<tbody>标签,浏览器解析时也可能会自动添加,因此需要注意子元素的选择 表格操作用到的属性: 1、tHead 2、tBodies 3、tFoot 更为细致的有: 4、rows 5、cells 表格操作: ...
                            
                            
                                分类:
其他好文   时间:
2016-05-14 10:11:06   
                                阅读次数:
148
                             
                    
                        
                            
                            
                                body,table{ 
font-size:12px; 
} 
table{ 
table-layout:fixed; 
empty-cells:show; 
border-collapse: collapse; 
margin:0 auto; 
} 
td{ 
height:30px; 
} 
h1,h2,h3{ 
font-size:12px; 
margin:0; 
padding:0; ...
                            
                            
                                分类:
其他好文   时间:
2016-05-12 20:53:00   
                                阅读次数:
131
                             
                    
                        
                            
                            
                                1. 题目分析36
  Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. 
  The Sudoku board could be partially filled, where empty cells are filled with the character ‘.’. 
  
  
  A part...
                            
                            
                                分类:
其他好文   时间:
2016-05-07 10:06:58   
                                阅读次数:
217