Dialog Box (How to connect checkbox with functions
talebi
Forums
Hi Brian,
I hope you are doing well.
I have created a dialog to import some tables into a project.
Attached is my codes. My problem is I could not find how to connect each function (like GL_BS, Gl_EXP,...) to the checkboxes I have created.
I just want to import selected tables into a project by using this checkbox.
thanks,
Wow, you were so close. Your
Wow, you were so close. Your main problem was for the Select Case Action% you had your code under Case 1. Case 1 is when you first start-up the dialog so it only gets run once on the initial start-up. What you wanted was Case 2 as this is run when something changes in an dialog, such as clicking on a checkbox. Here is your updated code. Also watch your indenting. Several places you didn't indent, IDEAScript doesn't care but it makes the code harder to understand if you don't indent consistently. It is a good habit to get into.