⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qqexp027.html

📁 包含大量VB常用函数 大概一百几十个左右 每个函数都有比较详细的说明 希望大家喜欢它啦
💻 HTML
字号:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html">
<meta name="Generator" content="千千VB站 VB函数清单">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>千千VB站 VB函数清单</title>
</head>

<body text="#000000" bgcolor="#FFFFFF" link="#2020A0" vlink="#FF0000" alink="#FF0000">

<center>
<marquee><b><blink><font color="#000000">传回变数种类</font></blink></b></marquee>
<br>
<hr width="100%" szie="4">
</center>
<p>&nbsp;&nbsp;&nbsp; ●VarType<br>
&nbsp;&nbsp;&nbsp; MyVal = &quot;123&quot;<br>
&nbsp;&nbsp;&nbsp; MyStr = &quot;123&quot;<br>
&nbsp;&nbsp;&nbsp; MyDate = #2/12/69#<br>
&nbsp;&nbsp;&nbsp; A = VarType(MyVal)<br>
&nbsp;&nbsp;&nbsp; B = VarType(MyStr)<br>
&nbsp;&nbsp;&nbsp; C = VarType(MyDate)<br>
&nbsp;&nbsp;&nbsp; 结果<br>
&nbsp;&nbsp;&nbsp; A = 2<br>
&nbsp;&nbsp;&nbsp; B = 8<br>
&nbsp;&nbsp;&nbsp; C = 7
<table border="1" width="100%">
  <caption>值与代表含意</caption>
  <tr>
    <th>vbEmpty&nbsp;</th>
    <th>0&nbsp;</th>
    <td>空值&nbsp;</td>
  </tr>
  <tr>
    <th>vbNull&nbsp;</th>
    <th>1&nbsp;</th>
    <td>虚值&nbsp;</td>
  </tr>
  <tr>
    <th>vbInteger&nbsp;</th>
    <th>2&nbsp;</th>
    <td>整数&nbsp;</td>
  </tr>
  <tr>
    <th>vbLong&nbsp;</th>
    <th>3&nbsp;</th>
    <td>长整数&nbsp;</td>
  </tr>
  <tr>
    <th>vbSingle&nbsp;</th>
    <th>4&nbsp;</th>
    <td>单精数&nbsp;</td>
  </tr>
  <tr>
    <th>vbDouble&nbsp;</th>
    <th>5&nbsp;</th>
    <td>双精数&nbsp;</td>
  </tr>
  <tr>
    <th>vbCurrency&nbsp;</th>
    <th>6&nbsp;</th>
    <td>币值&nbsp;</td>
  </tr>
  <tr>
    <th>vbDate&nbsp;</th>
    <th>7&nbsp;</th>
    <td>日期&nbsp;</td>
  </tr>
  <tr>
    <th>vbString&nbsp;</th>
    <th>8&nbsp;</th>
    <td>字串&nbsp;</td>
  </tr>
  <tr>
    <th>vbObject&nbsp;</th>
    <th>9&nbsp;</th>
    <td>对象&nbsp;</td>
  </tr>
  <tr>
    <th>vbError&nbsp;</th>
    <th>10&nbsp;</th>
    <td>错误值(Error Value)&nbsp;</td>
  </tr>
  <tr>
    <th>vbBoolean&nbsp;</th>
    <th>11&nbsp;</th>
    <td>布林代数&nbsp;</td>
  </tr>
  <tr>
    <th>vbVariant&nbsp;</th>
    <th>12&nbsp;</th>
    <td>Variant (used only with arrays of variants)&nbsp;</td>
  </tr>
  <tr>
    <th>vbDataObject&nbsp;</th>
    <th>13&nbsp;</th>
    <td>存取对象资料&nbsp;</td>
  </tr>
  <tr>
    <th>vbDecimal&nbsp;</th>
    <th>14&nbsp;</th>
    <td>十进数&nbsp;</td>
  </tr>
  <tr>
    <th>vbByte&nbsp;</th>
    <th>17&nbsp;</th>
    <td>位元组&nbsp;</td>
  </tr>
  <tr>
    <th>vbArray&nbsp;</th>
    <th>8192&nbsp;</th>
    <td>阵列&nbsp;</td>
  </tr>
</table>
<p>&nbsp;&nbsp;&nbsp; ●TypeName<br>
&nbsp;&nbsp;&nbsp; MyVal = &quot;123&quot;<br>
&nbsp;&nbsp;&nbsp; MyStr = &quot;123&quot;<br>
&nbsp;&nbsp;&nbsp; MyDate = #2/12/69#<br>
&nbsp;&nbsp;&nbsp; A = TypeName(MyVal)<br>
&nbsp;&nbsp;&nbsp; B = TypeName(MyStr)<br>
&nbsp;&nbsp;&nbsp; C = TypeName(MyDate)<br>
&nbsp;&nbsp;&nbsp; 结果<br>
&nbsp;&nbsp;&nbsp; A = &quot;Integer&quot;<br>
&nbsp;&nbsp;&nbsp; B = &quot;String&quot;<br>
&nbsp;&nbsp;&nbsp; C = &quot;Date&quot;<br>
&nbsp;
<table border="1" width="100%">
  <caption>值与代表含意</caption>
  <tr>
    <th>Byte&nbsp;</th>
    <td>位元组&nbsp;</td>
  </tr>
  <tr>
    <th>Integer&nbsp;</th>
    <td>整数&nbsp;</td>
  </tr>
  <tr>
    <th>Long&nbsp;</th>
    <td>长整术&nbsp;</td>
  </tr>
  <tr>
    <th>Single&nbsp;</th>
    <td>单精数&nbsp;</td>
  </tr>
  <tr>
    <th>Double&nbsp;</th>
    <td>双精数&nbsp;</td>
  </tr>
  <tr>
    <th>Currency&nbsp;</th>
    <td>币值&nbsp;</td>
  </tr>
  <tr>
    <th>Decimal&nbsp;</th>
    <td>十进值&nbsp;</td>
  </tr>
  <tr>
    <th>Date&nbsp;</th>
    <td>日期&nbsp;</td>
  </tr>
  <tr>
    <th>String&nbsp;</th>
    <td>字串&nbsp;</td>
  </tr>
  <tr>
    <th>Boolean&nbsp;</th>
    <td>布林代数&nbsp;</td>
  </tr>
  <tr>
    <th>Error&nbsp;</th>
    <td>错误值&nbsp;</td>
  </tr>
  <tr>
    <th>Empty&nbsp;</th>
    <td>空值&nbsp;</td>
  </tr>
  <tr>
    <th>Null&nbsp;</th>
    <td>虚值&nbsp;</td>
  </tr>
  <tr>
    <th>Object&nbsp;</th>
    <td>误对象&nbsp;</td>
  </tr>
  <tr>
    <th>Unknown&nbsp;</th>
    <td>未知种类&nbsp;</td>
  </tr>
  <tr>
    <th>Nothing&nbsp;</th>
    <td>未之类型的对象&nbsp;</td>
  </tr>
</table>
<br>
&nbsp;

</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -