LaunchForm with VB.Net in Customization

Thanks. Your information as well as other e-mail solutions from the group is
very helpful.







Best Regards,



Herby Dallard

Information Technology Engineer

Endicott Research Group

hdallard@...

607-754-9187 ext. 3078

www.ergpower.com







_____

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
bw2868bond
Sent: Monday, August 24, 2009 11:14 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: LaunchForm with VB.Net in Customization





I guess it depends on the requirements of what you are trying to launch.

Launching Sales Order Ack (Crystal Report) Form from within Sales Order
Entry:

dim num as Integer = Integer.Parse(oTrans.CurrentOrderNum)
If (num > 0) Then
Try
Dim options2 As New LaunchFormOptions()
options2.SuppressFormSearch = True
options2.ValueIn = num.ToString

ProcessCaller.LaunchForm(oTrans, "Epicor.Mfg.UIRpt.SalesOrderAck", options2)
Catch
End Try
End If

Launching another Vantage (Window) Form:

Dim myNewForm As Object = ProcessCaller.LaunchForm(oTrans, "Menu ID")

Where Menu ID is, for example, "SUMT2000" (Menu Maintenance)

--- In vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com,
"herbydallard" <hdallard@...> wrote:
>
> Does anyone have successful code using the UI Object Process Caller method
launchform? VB.Net Example:
>
> Dim [varName] As Object = ProcessCaller.LaunchForm(Sender, AssemblyName)
>
> What sample arguments would replace Sender and Assemblyname?
>
>
> Thanks.
>
> Best Regards,
>
> Herby Dallard
> IT Engineer
> Endicott Research Group
>





[Non-text portions of this message have been removed]
Does anyone have successful code using the UI Object Process Caller method launchform? VB.Net Example:

Dim [varName] As Object = ProcessCaller.LaunchForm(Sender, AssemblyName)

What sample arguments would replace Sender and Assemblyname?


Thanks.

Best Regards,

Herby Dallard
IT Engineer
Endicott Research Group
I guess it depends on the requirements of what you are trying to launch.

Launching Sales Order Ack (Crystal Report) Form from within Sales Order Entry:

dim num as Integer = Integer.Parse(oTrans.CurrentOrderNum)
If (num > 0) Then
Try
Dim options2 As New LaunchFormOptions()
options2.SuppressFormSearch = True
options2.ValueIn = num.ToString

ProcessCaller.LaunchForm(oTrans, "Epicor.Mfg.UIRpt.SalesOrderAck", options2)
Catch
End Try
End If

Launching another Vantage (Window) Form:

Dim myNewForm As Object = ProcessCaller.LaunchForm(oTrans, "Menu ID")

Where Menu ID is, for example, "SUMT2000" (Menu Maintenance)

--- In vantage@yahoogroups.com, "herbydallard" <hdallard@...> wrote:
>
> Does anyone have successful code using the UI Object Process Caller method launchform? VB.Net Example:
>
> Dim [varName] As Object = ProcessCaller.LaunchForm(Sender, AssemblyName)
>
> What sample arguments would replace Sender and Assemblyname?
>
>
> Thanks.
>
> Best Regards,
>
> Herby Dallard
> IT Engineer
> Endicott Research Group
>