@josecgomez@rbucek - I told you that the next customization I do would be in C#. If nothing else, at least I am a man of my word
Basically, hide all of the default controls and containers, and then add a WebBrowser Control to the form.
All of that works perfectlyâŚthe SuperSecretURL loads right up, links are clickable, right-click context menu is there, etc. However, there is one issue that I am having. Modifier Keys do not work. My users are complaining that they cannot highlight some text in the WebBrowser control and use CTRL-C /V to Copy/Paste. Right click and selecting copy/paste does work though.
Anyone have any ideas what I may be missing?
I have also taken this same approach in Visual Studio, programmatically adding the WebBrowser control and showing it on the form, and the modifier keys work that way, so to me this says there is something in the way that Epicor is capturing my keystrokes and not sending all of them to the control.
Based on what Iâve seen in Epicor, Iâd expect this is Epicor misbehavior and not your Customization.
Epicor doesnât consistently handle the standard CTRL-C and CTRL-V keystrokes. In some areas these work, in other areas they donât and the right-click copy or paste is needed.
I donât have a list of where the CTRL-C and -V keystrokes are ignored by Epicor and where they arenât; havenât tried to compile one.
I just have a conditioned sequence that I follow : if CTRL-C or -V doesnât work, use the right-click menu. With CTRL-C, of course, go back into Epicor to use the right-click menu to copy the text I thought Iâd copied.
Neither. When I hear copy/paste by the users, I wondered if you could just make the http call in the background, parse the results and put them into fields on your form so they didnât need to copy/paste them. (or at least be able to copy/paste from a different type of control.)
@Hally
The Right-Click context menu for Copy/Paste works great.
The context menu seems to be the same context menu from Internet Explorer, which would make sense.
It is weird that the control handles all other keystrokes just fine (Up/Down,Page Up/Down, Home, End, etc). I can even type in the forms that are on the page and press Enter to submit the form. Epicor for some reason is just saying âToo bad, we are not giving you modifier keys on that controlâ.