Here is the post that got me started from Nic
http://www.omaticsoftware.com/Forums/tabid/108/aft/606/Default.aspx
It has been a while but basically I created the UI as an application in Visual Studio
Here is what I had in my IOM profile code (without the comments obviously)
Public Overrides Sub AfterDictionaries(Cancel as ImportOM.API.iCancel)
'The data row at this point has gone through dictionaries
'Use the Fields object to access the data
'Example: Import.Fields.GetByExcelName("D").Value = "New Value for D Column"
'Dim sText1 As String = "Foo"
'Dim sText2 As String = "Bar"
'Dim o As Object
'o = CreateObject("ClassLibrary1.TestClass")
'o.HelloWorld(sText1, sText2)
End Sub
Attached is my Visual Studio project for this. My license ran out and I don't recall exactly what I had to do but I remember that I had some trouble until I was able to get the .dll registered correctly on the machine.
P.S. Attaching a file is very hard in this forum... and the forms don't really work in Chrome.
Wayne Pozzar
Is there any way to include external .vb files?
I am thinking about setting up IOM to use a webservice call (REST API) to do some data updating from our website.
I have a framework for building and processing the calls in PHP which I could probably port to VB but it would be nice to have it in a separate module that I would include somehow in the IOM API.
Ideas?