Hello,
I have started to look at creating an addin for NAV 2009 SP1. A lot of examples are on the web but all of them are in C#.
I have tried to translate the example of ara3n (
http://mibuso.com/blogs/ara3n/2009/12/11/dynamics-nav-addin-example-large-button) to vb because I am more familiar with vb as i am with C#.
Unfortunally I didn't succeed.
Is there any example in vb?
Edited:
I'm a little but further with the translation to VB. The buttons are shown in the RTC. The only problem is the clicking of the buttons.
How can I translate the following line to VB:
button1.Click += New System.EventHandler(button1_Click)
Thanks in advance.
Answers
you can use this link for translate http://www.developerfusion.com/tools/convert/csharp-to-vb/
Regards,
Yukon
I had already found a sort of that solution.
The line is translated to button2.Click += New System.EventHandler(button2_Click).
Unfortunaly this is not working in VB.
http://blog.dmbcllc.com/2009/07/15/manu ... in-vb-net/
or this:
http://www.codeproject.com/KB/vb/StepBy ... VBNET.aspx
I will look at the examples.