[从Form2的Form1的复选框获取构建Exe的值

问题描述 投票:-2回答:1

我的代码是If CheckBox4.Checked = True Then rtools = True Else : rtools = False End If仅适用于一个表单,我现在两个表单,分别为form2中的My All chekboxs每个人都能帮助我吗?

c# vb.net visual-studio command toolbox
1个回答
0
投票
在Form2的代码中尝试类似的操作

dim checkboxresults as bool if form1.checkbox1.checked = true then checkboxresults = true else checkboxresults = false end if

© www.soinside.com 2019 - 2024. All rights reserved.