📄 qqexp027.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> ●VarType<br>
MyVal = "123"<br>
MyStr = "123"<br>
MyDate = #2/12/69#<br>
A = VarType(MyVal)<br>
B = VarType(MyStr)<br>
C = VarType(MyDate)<br>
结果<br>
A = 2<br>
B = 8<br>
C = 7
<table border="1" width="100%">
<caption>值与代表含意</caption>
<tr>
<th>vbEmpty </th>
<th>0 </th>
<td>空值 </td>
</tr>
<tr>
<th>vbNull </th>
<th>1 </th>
<td>虚值 </td>
</tr>
<tr>
<th>vbInteger </th>
<th>2 </th>
<td>整数 </td>
</tr>
<tr>
<th>vbLong </th>
<th>3 </th>
<td>长整数 </td>
</tr>
<tr>
<th>vbSingle </th>
<th>4 </th>
<td>单精数 </td>
</tr>
<tr>
<th>vbDouble </th>
<th>5 </th>
<td>双精数 </td>
</tr>
<tr>
<th>vbCurrency </th>
<th>6 </th>
<td>币值 </td>
</tr>
<tr>
<th>vbDate </th>
<th>7 </th>
<td>日期 </td>
</tr>
<tr>
<th>vbString </th>
<th>8 </th>
<td>字串 </td>
</tr>
<tr>
<th>vbObject </th>
<th>9 </th>
<td>对象 </td>
</tr>
<tr>
<th>vbError </th>
<th>10 </th>
<td>错误值(Error Value) </td>
</tr>
<tr>
<th>vbBoolean </th>
<th>11 </th>
<td>布林代数 </td>
</tr>
<tr>
<th>vbVariant </th>
<th>12 </th>
<td>Variant (used only with arrays of variants) </td>
</tr>
<tr>
<th>vbDataObject </th>
<th>13 </th>
<td>存取对象资料 </td>
</tr>
<tr>
<th>vbDecimal </th>
<th>14 </th>
<td>十进数 </td>
</tr>
<tr>
<th>vbByte </th>
<th>17 </th>
<td>位元组 </td>
</tr>
<tr>
<th>vbArray </th>
<th>8192 </th>
<td>阵列 </td>
</tr>
</table>
<p> ●TypeName<br>
MyVal = "123"<br>
MyStr = "123"<br>
MyDate = #2/12/69#<br>
A = TypeName(MyVal)<br>
B = TypeName(MyStr)<br>
C = TypeName(MyDate)<br>
结果<br>
A = "Integer"<br>
B = "String"<br>
C = "Date"<br>
<table border="1" width="100%">
<caption>值与代表含意</caption>
<tr>
<th>Byte </th>
<td>位元组 </td>
</tr>
<tr>
<th>Integer </th>
<td>整数 </td>
</tr>
<tr>
<th>Long </th>
<td>长整术 </td>
</tr>
<tr>
<th>Single </th>
<td>单精数 </td>
</tr>
<tr>
<th>Double </th>
<td>双精数 </td>
</tr>
<tr>
<th>Currency </th>
<td>币值 </td>
</tr>
<tr>
<th>Decimal </th>
<td>十进值 </td>
</tr>
<tr>
<th>Date </th>
<td>日期 </td>
</tr>
<tr>
<th>String </th>
<td>字串 </td>
</tr>
<tr>
<th>Boolean </th>
<td>布林代数 </td>
</tr>
<tr>
<th>Error </th>
<td>错误值 </td>
</tr>
<tr>
<th>Empty </th>
<td>空值 </td>
</tr>
<tr>
<th>Null </th>
<td>虚值 </td>
</tr>
<tr>
<th>Object </th>
<td>误对象 </td>
</tr>
<tr>
<th>Unknown </th>
<td>未知种类 </td>
</tr>
<tr>
<th>Nothing </th>
<td>未之类型的对象 </td>
</tr>
</table>
<br>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -