Question : Modified ivItemMaintenance form, dynamice gp

I am trying to modify the ivItemMaintenance form by adding a button. On the button click I need to be able to get the Itemnumber that is selected in the ivItemmaintenance screen. I have the following code to raise the button click event, my problem is I am not able to msgbox the item number. Should I be accessing the field in a differnt way ? Thanks. Any suggestions would be great.
 Sub Initialize() Implements IDexterityAddIn.Initialize
        AddHandler DynamicsModified.Forms.IvItemMaintenance.IvItemMaintenance.LocalPushButtonM40.ClickAfterOriginal, AddressOf ItemMnt_Alias
    End Sub

    Private Sub ItemMnt_Alias(ByVal sender As Object, ByVal e As EventArgs)
        MsgBox(DynamicsModified.Forms.IvItemMaintenance.IvItemMaintenance.ItemNumber.Value & DynamicsModified.Forms.IvItemMaintenance.IvItemMaintenance.ItemDescription.ToString())
    End Sub

Answer : Modified ivItemMaintenance form, dynamice gp

okey, I found only editor jdeveloper able to do this for us
http://www.oracle.com/technology/products/jdev/index.html
Random Solutions  
 
programming4us programming4us