一个可以显示历史的菜单 Option Explicit Dim main As New main_frm Public max_index As Integer Public myindex As Integer Private Sub close_Click() On Error Resume Next '循环语句 For Each main In Forms If main.MDIChild = True Then Unload main End If Next Dim FNum As I
! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYS_SIZE 是要加载的节数(16 字节为1 节)。0x3000 共为 1 2 3 4 5 6 0x7c00 0x0000 0x90000 0x10000 0xA0000 system 模块 代码执
for循环
for variable in (list)
do
command
done
#!/bin/bash
for variable in {1..5}
do
echo Hello,Welcome $variable times
done
#!/bin/bash
#步长为2
for variable in {1..5..2}
do
echo Hello,Welcome $variable times
done
不带列表的for循环
for variable
do
comman