Hi!
i like to use DotNet datatype in C/AL to open a WinForm with a RichTextBox.
my code idea:
var SystemWinFormsForm DotNet 'System.Windows.Forms, Version=2.0.0.0, Culture=neutral,PublicKeyToken=b77a5c561934e089'.System.Windows.Forms.Form
var RichTextBox DotNet 'System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Windows.Forms.RichTextBox
// new instance
SystemWinFormsForm := SystemWinFormsForm.Form;
// open win form
SystemWinFormsForm.Show;
// to create a RichTextBox
RichTextBox := RichTextBox.RichTextBox;
RichTextBox.Rtf(rtfText);
Does anyone know how i can open the win form? nothing happens with SystemWinFormsForm.Show;
How can i include the RichTextBox in my WinForm object?
Kind regards
Alex
0
Comments
Niels-Henrik Sejthen
Senior Software Developer
Microsoft Dynamics NAV
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.