UD Text field does not allow me to insert a file

We have added a UD Text field (string) with a format of x(250). Customized the UI and bound the new text box to this new UD field. We can add data and save it to the JobHead table not problem.
The issue is that the user would like to right click and insert a file, like they can do with any of the native text fields.
Any ideas?

on your control there is a property called allowdrop, so in an initialize event use this code, and it will turn on that feature.

YourTextBox.AllowDrop = true;

image

4 Likes