11523.html
来自「以电子书的形式收集了VB一些常见问题解决方法,可以很方便的查找自己需要解决的问题」· HTML 代码 · 共 23 行
HTML
23 行
<html>
<head>
<title>最快速简单的方法....</title>
</head>
<body bgcolor="#FFFFFF" vlink="#808080">
<center>
<h1>最快速简单的方法....</h1>
</center>
<hr size=7 width=75%>
<hr size=7 width=75%><p>
Posted by <a href="mailto:lai@ms3.url.com.tw">小Sam</a> on March 30, 1999 at 15:04:47:<p>
In Reply to: <a href="11460.html">VB for EXCEL (如何框线)</a> posted by Gordon.Liu on March 29, 1999 at 11:56:18:<p>
Range("E4").Select<br> Selection.Borders(xlDiagonalDown).LineStyle = xlNone<br> Selection.Borders(xlDiagonalUp).LineStyle = xlNone<br> With Selection.Borders(xlEdgeLeft)<br> .LineStyle = xlContinuous<br> .Weight = xlThin<br> .ColorIndex = xlAutomatic<br> End With<br> With Selection.Borders(xlEdgeTop)<br> .LineStyle = xlContinuous<br> .Weight = xlThin<br> .ColorIndex = xlAutomatic<br> End With<br> With Selection.Borders(xlEdgeBottom)<br> .LineStyle = xlContinuous<br> .Weight = xlThin<br> .ColorIndex = xlAutomatic<br> End With<br> With Selection.Borders(xlEdgeRight)<br> .LineStyle = xlContinuous<br> .Weight = xlThin<br> .ColorIndex = xlAutomatic<br> End With<p>吓一跳吧!!<br>开玩笑的,如果真要你动手写那么一串的程式,<br>那哪叫快速简单呢?<p>不过上面程式五秒钟就可以"变出来″,<br>方法真的很简单:<p>工具->巨集->录制新巨集<br>选个栏位,画个四角框<br>结束录制巨集<p>就这样,VBA就自动写好了,<br>几乎可以在Excel里作的动作都可以被录制起来!<br>帅吧!<br>所以根本不必死记程式码,<br>管它什么 Word VBA,Power Point VBA....<br>全部搞定!<br>
<br>
<br><hr size=7 width=75%><p>
<a name="followups">Follow Ups:</a><br>
<ul><!--insert: 11523-->
</ul><!--end: 11523-->
<br><hr size=7 width=75%><p>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?