气升举无力形成的病证是()。脏腑功能低下或衰退形成的病证是()。
A.气逆证
B.气滞证
C.气陷证
D.气虚证
E.气脱证
参考答案:C,D
服用洋地黄时应()
A.用钙忌钾
B.用钙忌氯
C.用钾忌钙
D.用氯忌钙
E.用钾用钙
在窗体上有一个名称为Drive1的驱动器列表框,一个名称为Dir1的目录列表框,一个名称为File1的文件列表框,两个名称分别为Label1、Label2的标签(标题分别为空白和“共有文件”)。要使得驱动器列表框与目录列表框、目录列表框与文件列表框同步变化,并且在标签Label1中显示当前文件夹中文件的数量。下列能够正确实现上述功能的程序是( )。
A.Private Sub Dir1_Change() File 1.Path=Dir1.Path End Sub Private Sub Drive1_Change() Dir1.Path=Drive1.Drive Label1.Caption=File1.ListCount End Sub
B.Private Sub Dir1_Change() File1.Path=Dir1.Path End Sub Private Sub Drive1_Change() Dir1.Path=Drive1.Drive Label1.Caption=File1.List End Sub
C.Private Sub Dir1_Change() File1.Path=Dir1.Path Label1.Caption=File1.ListCount End Sub Private Sub Drive1_Change() Dir1.Path=Drive1.Drive Label1.Caption=File1.ListCount End Sub
D.Private Sub Dir1_Change() File1.Path=Dir1.Path Label1.Caption=File1.List End Sub Private Sub Drive1_Change() Dir1.Path=Drive1.Drive Label1.Caption=File1.List End Sub