Hello everyone,
I've created a custom Form for my import function, which must give a possibility to set several settings for exporting, such as folder path, items id settings etc.
For this post let's use simplified scheme:
I have 3 element on the form. Select Path button, Textbox, Ok button
- User choose a folder path on click Select button;
- Then path sting value goes to a textbox;
- Click on OK button and import procedure starts.
Ok, it looked quite clear for me. Just need to add some field events and it's done. And here appear two problems. 1st one is that I don't get how to pass values between form fields, if events aren't executed in the same time. 2nd one is I need to access several form fields, which I don't know how to do.
The second option I thought about is to write one method as a Form event and use onclick Event. But there is still this problem of access to these different fields.
I will be grateful to any solution.
Thanks.