- 1、本文档共20页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
vb打开excel的方法v打开excel的方法vb打开excel的方法vb打开excel的方法
VB打开EXCEL的方法一楼的没有指明Dim xlBook As Excel.WorkBookSet xlBook = App.Workbooks.Open(文件名) 这种语法同样要求excel已经存在才能操作。
Public xlApp As Excel.ApplicationPublic xlBook As Excel.WorkbookPublic xlChar As New Excel.ChartPublic xlSheet As New Excel.Worksheet
Set xlApp = New Excel.ApplicationSet xlApp = CreateObject(Excel.Application)Set xlBook = xlApp.Workbooks.AddSet xlSheet = xlBook.Worksheets.AddxlSheet.Cells(1, 1) = 测试 写入内容xlBook.SaveAs (FILENAME) 保存文件xlApp.QuitSet xlApp = Nothing
本方法采用add添加excel文件和datasheet,然后用save保存。如果用xlApp.Visible=False,则自动生成文件。但是如果文件已经存在,则会弹出是否覆盖的提示。因此,最好先在程序中检查文件是否已经存在,如果存在,则用普通方法打开。如果不存在,则用add添加,并保存。
?
打开相对路径下的文件Private Sub Command1_Click()Shell App.Path \aaa.batEnd Sub
还有更简单的:Private Sub Command1_Click()Shell aaa.batEnd Sub
aaa.bat就是那个BAT的名字.
那就不一定......因为SHELL只对可执行文件有效.你可用WINDOWS外壳程序explorer.exe打开任何文件(包括文件夹)
代码:Private Sub Command1_Click()Shell explore.exe aaa.jpgEnd Sub
★VB调用EXCEL自带的查询功能在表格中查找内容Private Sub ComCx_Click()
On Error GoTo 50
i = xlBook.Worksheets(代码).Range(A:A).Find(Trim(TexDm.Text)).Row
将程序中所有这一类的对象的某一属性全部更改为需要的属性Dim Item As Object 定义对象For Each Item In Me If TypeOf Item Is TextBox Then Item.Text = ?? 将所有TextBox的Text属性值变为空If TypeOf Item Is ComboBox Then Item.ListIndex = -1?? 将所有的ComboBox的ListIndex属性值变为“-1”Next
?
If Not i = 0 ThenDm = Trim(TexDm.Text)Sm = Trim(xlBook.Worksheets(代码).Cells(i, B).Value)Dw = Trim(xlBook.Worksheets(代码).Cells(i, D).Value)TexSm.Text = Sm ? ( Dw )ComQd.Visible = TrueGoTo 100End If
50TexSm.Text = 没有找到相匹配的信息!100End Sub
如何使编的程序可以调用excel首先要引用
再定义对象及其类型Dim xlApp As Excel.ApplicationDim xlBook As Excel.WorkbookDim xlSheet As Excel.WorksheetSet xlApp = CreateObject(Excel.Application)???????? 创建EXCEL对象Set xlBook = xlApp.Workbooks.Open(D:\检包组\合金厂代码查询\xls\合金JDE代码.xls)xlApp.Visible = FalseSet xlSheet = xlBook.Worksheets(确认信息)
另存为ChDir D:\??? ActiveWorkbook.SaveAs Filename:=D:\合金厂产品质检明细表.xls, FileFormat:=xlExcel8, _??????? Password:=, WriteResPassword:=, ReadOnlyRe
您可能关注的文档
- unit3 book1 检unit3 book1 检测unit3 book1 检测unit3 book1 检测.ppt
- unit2 writingnit2 writingunit2 writingunit2 writing.ppt
- unit2 readingppt课件unit2 reading ppt课件unit2 reading ppt课件unit2 reading ppt课件.ppt
- unit3 teenageproblems 课件1unit3 teenage problems 课件1unit3 teenage problems 课件1unit3 teenage problems 课件1.ppt
- unit3《computes》word studyunit3《computers》word studyunit3《computers》word studyunit3《computers》word study.ppt
- unit2第2课时教学课件nit2第2课时教学课件unit2第2课时教学课件unit2第2课时教学课件.ppt
- unit4 section-2unit4 sectionb-2unit4 sectionb-2unit4 sectionb-2.ppt
- unit3_a_healty_life课件unit3_a_healthy_life课件unit3_a_healthy_life课件unit3_a_healthy_life课件.ppt
- unit4 sectionb 1a-2funit4 section b 1a-2funit4 section b 1a-2funit4 section b 1a-2f.ppt
- unit5 there i a big bed第一课时unit5 there is a big bed第一课时unit5 there is a big bed第一课时unit5 there is a big bed第一课时.ppt
文档评论(0)