各位没有看明白我的意思:
thisform.optiongroup2.Visible=.t.
thisform.optiongroup2.option1.Visible=.t.
thisform.optiongroup2.option2.Visible=.t.
thisform.optiongroup2.option3.Visible=.t.
&&此时需要等待做出选择
if thisform.optiongroup2.value=1
do 1.prg
endif
if thisform.optiongroup2.value=2
do 2.prg
endif
if thisform.optiongroup2.value=3
do 3.prg
endif
现在的情况是还没等进行选择呢,后面的IF语句就开始执行了呀。