《会计基础工作规范》规定,对账工作至少每月进行一次。( )
参考答案:错
解析:《会计基础工作规范》第63条规定,对账工作每年至少进行一次。
男性,46岁,有血吸虫疫区接触史,肝区胀痛,脾大。结合下列超声图诊断为()。
A.肝包虫病
B.肝硬化
C.肝癌
D.血吸虫肝纤维化
E.脂肪肝
[说明] 在一些应用场合中,需要对用户的输入数据进行检查监控。以下VisualBasic程序实现了对新添加到 List列表的内容进行监控,拒绝向List列表添加重复信息。例如,在List列表中存在元素“a01001;a01002”,如果用户输入数据为“aOl001”或“a01002”,系统则弹出提示信息,拒绝将新数据加入List列表;如果用户输入的数据不同与List列表中的任何一个元素,则作为新元素加入List中。VisualBasic界面显示如图11-5所示。根据程序功能说明,完成程序代码。
[代码1] Begin VB.Form Form1Caption=“List列表拒绝添加重复信息” //...窗体描述(略)Begin VB.CommandButton Command2 Caption=“退出” //...窗体描述(略)EndBegin VB.CommandButton ommand1 Caption=“添加” //...窗体描述(略)EndBegin VB.TextBox Text1 //...窗体描述(略)EndBegin VB.ListBox List1 Height=1860 ItemData="Form1.frx": 0000 Left=1020 List="Form1.frx": 0002 TabIndex=0 Top=525 Width=2580EndBegin VB.Label Labell BackStyle=0’Transparent Caption="请输入编号" //...窗体描述(略)End End [代码2] Attribute VB_Name="Form1" Attribute VB_GlobalNameSpace=False Attribute VB_Creatable=False Attribute VB_PredeclaredId=True Attribute VB_Exposed=False Private Sub Form_Load ( ) Listl.AddItem"a01001" Listl.AddItem"a01002" End Sub Private Sub Command1 Click ( ) Dim Myval As Long For i=0 To (1) (2) If (3) Then MsgBox"系统不允许重复输入,请重新输入" Exit SubEnd If (4) (5) End Sub