I'm writing a C# application which pulls a string of text from a MySql database, opens a form contained within a Microsoft Access database and populates a textbox on the form with this string.
The first two parts I'm fine with, I can pull the string from the MySql database and open the Access database, but I am struggling to get a handle on the textbox.
How do I, after pressing a button on a C# Windows Form application, populate a textbox on a Microsoft Access Form with a string contained within the C# application.
Thanks