| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 737 人关注过本帖
标题:求助vb代码
取消只看楼主 加入收藏
chenlili097
Rank: 1
等 级:新手上路
帖 子:60
专家分:0
注 册:2007-4-26
收藏
 问题点数:0 回复次数:1 
求助vb代码

下面是我在vb中编的代码,我想在打开第二个表之前判断这个表是否存在,如果存在则继续运行,不存在则退出整个程序,请各位帮一下忙,谢谢!


Private Sub a_Click()
Dim xlApp As Excel.Application '定义EXCEL类
Dim xlBook As Excel.Workbook '定义工件簿类
Dim xlsheet As Excel.Worksheet '定义工作表类
Dim xlChart As Excel.Chart
Dim xlrange As Excel.Range
Dim i, j As Integer
i = 0
j = 3
Dim xllegend As Boolean
Dim xlct As String
Dim xlvt As String

Text1.Text = form1.Text2.Text
Set xlApp = CreateObject("Excel.Application") '创建EXCEL应用类
xlApp.Visible = False '设置EXCEL可见
Set xlBook = xlApp.Workbooks.Open(App.Path & Text1.Text) '打开EXCEL工作簿

Set xlsheet = xlBook.Sheets("sheet1")
xlsheet.Activate

With xlsheet

If .Range(.Cells(1, 1), .Cells(1, 5)).Font.Name = "黑体" Then
If .Range(.Cells(1, 1), .Cells(1, 5)).Font.Size = "14" Then
If .Range(.Cells(1, 1), .Cells(1, 5)).Font.ColorIndex = 5 Then
If .Range(.Cells(1, 1), .Cells(1, 5)).HorizontalAlignment = xlCenter Then
If .Range(.Cells(1, 1), .Cells(1, 5)).VerticalAlignment = xlCenter Then
i = i + 2
End If
End If
End If
End If
End If

If .Range(.Cells(1, 1), .Cells(1, 5)).RowHeight = 20 Then
i = i + 1
End If

For j = 3 To 40
If j = 15 Then
j = 16
End If
If j = 28 Then
j = 29
End If
If j <> 15 Then
If j <> 28 Then
If .Range(.Cells(j, 6), .Cells(j, 6)).Value = .Cells(j, 4).Value * .Cells(j, 5).Value Then
j = j + 1
End If
End If
End If
Next
If j = 41 Then
i = i + 2
End If

If .Range("A2:F2").Font.Name = "宋体" Then
If .Range("A2:F2").Font.Size = "12" Then
If .Range("A2:F2").Font.Bold = True Then
If .Range("A2:F2").HorizontalAlignment = xlCenter Then
If .Range("A2:F2").Borders(xlInsideVertical).Weight = xlThin Then
' ####到最适合列宽
i = i + 2
End If
End If
End If
End If
End If

If .Range(.Cells(1, 1), .Cells(38, 6)).Copy Then
If .Range(.Cells(1, 1), .Cells(38, 6)).PasteSpecial = True Then
i = i + 1
End If
End If
End With


Set xlsheet = xlBook.Sheets("销售情况汇总")





搜索更多相关主题的帖子: 代码 
2007-06-01 19:34
chenlili097
Rank: 1
等 级:新手上路
帖 子:60
专家分:0
注 册:2007-4-26
收藏
得分:0 

可能我没把问题说清楚
我是想运行完上面的程序后判断后面的表格是否存在,存在打开,不存在则跳过它及它的子程序,运行下面的程序
想用错误处理,但不知道要怎么用,
谢谢各位,麻烦给提个建议


2007-06-12 10:20
快速回复:求助vb代码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015508 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved