CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
可用分押宝游戏火热进行中... 专题改版:Java Web 专题
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  VB >  基础类

请问如何使用vb来操纵excell

楼主eddycheng(第一个五年计划)2003-02-03 19:17:35 在 VB / 基础类 提问

比方说我在vb中建立一张表,向其中加入数据,并可以读取,修改。谢谢了 问题点数:0、回复次数:2Top

1 楼xxlroad(土八路)回复于 2003-02-03 19:26:33 得分 0

'''''''''''''''''''''''''''''''''''''''''  
  '                 整理:泰山                                                                                                     '  
  '                 主页:http://dyqing.533.net                                 '  
  '                 E-Mail:duyunqing@163.net                                             '  
  '''''''''''''''''''''''''''''''''''''''''  
  '指定链接  
  Private   Declare   Function   ShellExecute   Lib   "shell32.dll"   Alias   "ShellExecuteA"   (ByVal   hwnd   As   Long,   ByVal   lpOperation   As   String,   ByVal   lpFile   As   String,   ByVal   lpParameters   As   String,   ByVal   lpDirectory   As   String,   ByVal   nShowCmd   As   Long)   As   Long  
  'Option     Explicit  
  Dim   x(1   To   4,   1   To   5)                 As   Integer  
  Dim   a,   i,   j           As   Integer  
  Dim   b       As   String  
  Private   Sub   Command1_Click()  
                  Dim   ex       As   Object  
                  Dim   exBook       As   Object  
                  Dim   exsheet       As   Object  
                  Set   ex   =   CreateObject("Excel.Application")  
                  Set   exBook   =   ex.Workbooks().Add  
                  Set   exsheet   =   exBook.Worksheets("sheet1")  
  '按控件的内容赋值  
  '11  
                  exsheet.Cells(1,   1).Value   =   Text1.Text  
  '为同行的几个格赋值  
                  Range("C3").Select  
                  ActiveCell.FormulaR1C1   =   "表格"  
  '                 ex.Range("c3").Value     =     "表     格"  
                  ex.Range("d3").Value   =   "春"  
                  ex.Range("e3").Value   =   "     夏     天     "  
                  ex.Range("f3").Value   =   "     秋     天     "  
                  ex.Range("g3").Value   =   "     冬     天     "  
  '大片赋值  
                  ex.Range("c4:g7").Value   =   x  
  '按变量赋值  
          a   =   8  
          b   =   "c"   &   Trim(Str(a))  
          ex.Range(b).Value   =   "下雪"  
  '另外一种大片赋值  
                  For   i   =   9   To   12  
                  For   j   =   4   To   7  
                  exsheet.Cells(i,   j).Value   =   i   *   j  
                  Next   j  
                  Next   i  
  '计算赋值  
  exsheet.Cells(13,   1).Formula   =   "=R9C4     +     R9C5"  
  '设置字体  
  Dim   exRange       As   Object  
  Set   exRange   =   exsheet.Cells(13,   1)  
  exRange.Font.Bold   =   True  
  '设置一行为18号字体加黑  
      Rows("3:3").Select  
                  Selection.Font.Bold   =   True  
                  With   Selection.Font  
                                  .Name   =   "宋体"  
                                  .Size   =   18  
                                  .Strikethrough   =   False  
                                  .Superscript   =   False  
                                  .Subscript   =   False  
                                  .OutlineFont   =   False  
                                  .Shadow   =   False  
                                  .Underline   =   xlUnderlineStyleNone  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
  '设置斜体  
                  Range("E2").Select  
                  Selection.Font.Italic   =   True  
  '设置下划线  
                  Range("E3").Select  
                  Selection.Font.Underline   =   xlUnderlineStyleSingle  
  '设置列宽为15  
                  Selection.ColumnWidth   =   15  
  '设置一片数据居中  
  Range("C4:G7").Select  
                  With   Selection  
                                  .HorizontalAlignment   =   xlCenter  
                                  .VerticalAlignment   =   xlBottom  
                                  .WrapText   =   False  
                                  .Orientation   =   0  
                                  .AddIndent   =   False  
                                  .ShrinkToFit   =   False  
                                  .MergeCells   =   False  
                  End   With  
  '设置某区域的小数位数  
                  Range("F4:F7").Select  
                  Selection.NumberFormatLocal   =   "0.00"  
  '求和  
                  Range("G9:G13").Select  
                  Range("G13").Activate  
                  ActiveCell.FormulaR1C1   =   "=SUM(R[-4]C:R[-1]C)"  
  '某列自动缩放宽度  
                  Columns("C:C").EntireColumn.AutoFit  
  '画表格  
                  Range("C4:G7").Select  
                  Selection.Borders(xlDiagonalDown).LineStyle   =   xlNone  
                  Selection.Borders(xlDiagonalUp).LineStyle   =   xlNone  
                  With   Selection.Borders(xlEdgeLeft)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeTop)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeBottom)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeRight)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlInsideVertical)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlInsideHorizontal)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlThin  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
  '加黑框  
  Range("C9:G13").Select  
                  Selection.Borders(xlDiagonalDown).LineStyle   =   xlNone  
                  Selection.Borders(xlDiagonalUp).LineStyle   =   xlNone  
                  With   Selection.Borders(xlEdgeLeft)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlMedium  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeTop)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlMedium  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeBottom)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlMedium  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  With   Selection.Borders(xlEdgeRight)  
                                  .LineStyle   =   xlContinuous  
                                  .Weight   =   xlMedium  
                                  .ColorIndex   =   xlAutomatic  
                  End   With  
                  Selection.Borders(xlInsideVertical).LineStyle   =   xlNone  
                  Selection.Borders(xlInsideHorizontal).LineStyle   =   xlNone  
  Top

2 楼xxlroad(土八路)回复于 2003-02-03 19:26:42 得分 0

'设置某单元格格式为文本  
                  Range("E11").Select  
                  Selection.NumberFormatLocal   =   "@"  
  '设置单元格格式为数值  
                  Range("F10").Select  
                  Selection.NumberFormatLocal   =   "0.000_);(0.000)"  
  '设置单元格格式为时间  
                  Range("F11").Select  
                  Selection.NumberFormatLocal   =   "h:mm     AM/PM"  
  '取消选择  
  Range("C10").Select  
  '设置横向打印,A4纸张  
  '                 With     ActiveSheet.PageSetup  
  '                                 .PrintTitleRows     =     ""  
  '                                 .PrintTitleColumns     =     ""  
  '                 End     With  
  '                 ActiveSheet.PageSetup.PrintArea     =     ""  
                  With   ActiveSheet.PageSetup  
  '                                 .LeftHeader     =     ""  
  '                                 .CenterHeader     =     ""  
  '                                 .RightHeader     =     ""  
  '                                 .LeftFooter     =     ""  
  '                                 .CenterFooter     =     ""  
  '                                 .RightFooter     =     ""  
  '                                 .LeftMargin     =     Application.InchesToPoints(0.75)  
  '                                 .RightMargin     =     Application.InchesToPoints(0.75)  
  '                                 .TopMargin     =     Application.InchesToPoints(1)  
  '                                 .BottomMargin     =     Application.InchesToPoints(1)  
  '                                 .HeaderMargin     =     Application.InchesToPoints(0.5)  
  '                                 .FooterMargin     =     Application.InchesToPoints(0.5)  
  '                                 .PrintHeadings     =     False  
  '                                 .PrintGridlines     =     False  
  '                                 .PrintComments     =     xlPrintNoComments  
  '                                 .PrintQuality     =     300  
  '                                 .CenterHorizontally     =     False  
  '                                 .CenterVertically     =     False  
                                  .Orientation   =   xlLandscape  
  '                                 .Draft     =     False  
                                  .PaperSize   =   xlPaperA4  
  '                                 .FirstPageNumber     =     xlAutomatic  
  '                                 .Order     =     xlDownThenOver  
  '                                 .BlackAndWhite     =     False  
  '                                 .Zoom     =     100  
                  End   With  
  '跨列居中  
                  Range("A1:G1").Select  
                  With   Selection  
                                  .HorizontalAlignment   =   xlCenter  
  '                                 .VerticalAlignment     =     xlBottom  
  '                                 .WrapText     =     False  
  '                                 .Orientation     =     0  
  '                                 .AddIndent     =     False  
  '                                 .ShrinkToFit     =     False  
                                  .MergeCells   =   True  
                  End   With  
                  Selection.Merge  
  '打印表格  
   
  ActiveWindow.SelectedSheets.PrintOut   Copies:=1  
   
  '取值  
  Text1.Text   =   exsheet.Cells(13,   1)  
  '保存  
  ChDir   "C:\Win98\Desktop"  
  ActiveWorkbook.SaveAs   FileName:="C:\Win98\Desktop\aaa.xls",   FileFormat:=xlNormal,   Password:="123",   WriteResPassword:="",   ReadOnlyRecommended:=False,   CreateBackup:=False  
              '     关闭工作表。  
              exBook.Close  
              '用     Quit     方法关闭     Microsoft     Excel  
              ex.Quit  
              '释放对象  
              Set   ex   =   Nothing  
              Set   exBook   =   Nothing  
              Set   exsheet   =   Nothing  
  'Dim   retval  
  ''用excel打开表格  
  'retval   =   Shell("C:\Program     Files\Microsoft     Office\Office\EXCEL.EXE"   &   "     "   &   "C:\Win98\Desktop\aaa.xls",   1)  
  ShellExecute   Me.hwnd,   "Open",   "C:\Win98\Desktop\aaa.xls",   "",   App.Path,   1  
  End   Sub  
   
  Private   Sub   Command2_Click()  
          Dim   ex       As   Object  
          Dim   exBook       As   Object  
          Dim   exsheet       As   Object  
          Set   ex   =   CreateObject("Excel.Application")  
          'Set   exBook   =   ex.Workbooks().Add  
          Set   exBook   =   ex.Workbooks.Open("C:\Win98\Desktop\a.xls")  
          Set   exsheet   =   exBook.Worksheets("sheet1")  
   
  '*                 ex.Range("c3").Value     =     "表     格"  
  '                 ex.Range("d3").Value   =   "春"  
  '                 ex.Range("e3").Value   =   "夏"  
  '                 ex.Range("f3").Value   =   "秋"  
  '                 ex.Range("g3").Value   =   "冬"  
              '取值  
  ''大片赋值  
                  ex.Range("c4:c7").Value   =   aa  
   
          Text1.Text   =   exsheet.Cells(13,   1)  
          Print   exsheet.Cells(10,   5)  
          ex.Range("h3").Value   =   "ddd"  
          exsheet.Cells(10,   5).Value   =   "11"  
          '保存  
  ChDir   "C:\Win98\Desktop"  
  ActiveWorkbook.SaveAs   FileName:="C:\Win98\Desktop\aaa.xls",   FileFormat:=xlNormal,   Password:="",   WriteResPassword:="",   ReadOnlyRecommended:=False,   CreateBackup:=False  
              '     关闭工作表。  
              exBook.Close  
              '用     Quit     方法关闭     Microsoft     Excel  
              ex.Quit  
              '释放对象  
              Set   ex   =   Nothing  
              Set   exBook   =   Nothing  
              Set   exsheet   =   Nothing  
   
  End   Sub  
  Top

相关问题

  • 如何使用VB来操纵lotus的数据库
  • 如何在VC++中像VB中那样使用WORD对象库去操纵WORD文档?
  • VB中使用Adodc控件操纵数据库的具体方法(代码)——熟悉VB数据库编程的人请进。
  • 怎样使用JS操纵滚动条?
  • vb 使用 RegisterServiceProcess
  • VB 中使用TAPI
  • vb操纵Excel问题(cells(x,y).value或cells(x,y).value2)
  • vb操纵word时的字符间距问题
  • 使用DAO操纵数据库的问题
  • VB中如何使用SetBitmapDimensionEx?

关键词

  • .net
  • win98
  • excel
  • desktop
  • microsoft
  • exbook
  • exsheet
  • 赋值
  • range
  • ex

得分解答快速导航

  • 帖主:eddycheng

相关链接

  • Visual Basic类图书
  • Visual Basic类源码下载

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
世纪乐知(北京)网络技术有限公司 版权所有, 京 ICP 证 020026 号
北京创新乐知广告有限公司 提供技术支持
Copyright © 2000-2007, CSDN.NET, All Rights Reserved
GongshangLogo