Skip to content

Instantly share code, notes, and snippets.

View lopezpdvn's full-sized avatar

Pedro Ivan Lopez lopezpdvn

View GitHub Profile
@tdcbm
tdcbm / epi2.cs
Last active June 24, 2020 16:50
Epicor Launch Form with parameters
//Code src: http://lethanhname.blogspot.co.id/2014/03/epicor-launch-form-with-parameters.html
public void CallLot(string PartNum,string LotNum)
{
try
{
string[] CompoundKeys =new string[]{PartNum,LotNum};
CompoundKeyBinding cb=new CompoundKeyBinding(CompoundKeys,null,null);
LaunchFormOptions opts = new LaunchFormOptions();
opts.ValueIn=cb;