cnks 发表于 2004-8-29 13:49:00

怎样在VB中获得当前EXCEL所选择range?

怎样在VB中获得当前EXCEL所选择range?在VBA中可以用selection中获得当前选择的range,还有就是在cad vba中怎样设置当前文字的style?

ntchjie 发表于 2004-8-29 19:29:00

Set ex = GetObject(, "Excel.Application")<BR>txtexl(0) = ex.Selection.EntireRow.Row                       <BR>txtexl(1) = ex.Selection.EntireColumn.Column                                                                                       ‘起始行列<BR>txtexl(2) = ex.Selection.Rows.Count<BR>txtexl(3) = ex.Selection.Columns.Count                                                                                                                                                                                       ’行列数
页: [1]
查看完整版本: 怎样在VB中获得当前EXCEL所选择range?