This is from a POST I did on How to add a dashboard to MES. Only difference is that your MENU ID is Order Tracker
Version: 9.05?
Add the dashboard to your main menu.
Write down the MENU ID that you created. Ex. DASH0001
Under the properties for the MES Icon, change -MES to -MESC
Start the Application.
Click your current Customization for MES and open
Right click on one of your buttons and select CUSTOMIZATION
Choose your Tab to place the button.
Tools> Tool Box
Click EPI BUTTON
Add your button somewhere in the screen. Align and size button
Click on new button to display properties.
Under MISC, change TEXT; Ex. SHIPPING DASH
Under MISC, change NAME; epiBtDASH0001 (optional)
SAVE
Go to WIZARDS tab > Event Wizard
Control Type Filter: EPIButton
Custom Control: epiBtDASH001
Available Control Events: CLICK
Add using the arrow button; epibtDASH001_Click should be highlighted and the following displayed:
Private Sub epibtDASH0001_Click(ByVal sender As Object, ByVal args As System.EventArgs)
' ** Place Event Handling Code Here **
End Sub
Click on Update Selected Event Code (bottom right Corner)
Now go to the Script Editor Tab and look for the code you just pasted via the last step.
Add:
ProcessCaller.LaunchForm(MESMenu,"DASH001")
Should look like this:
Private Sub epibtDASH0001_Click(ByVal sender As Object, ByVal args As System.EventArgs)
' ** Place Event Handling Code Here **
ProcessCaller.LaunchForm(MESMenu,"DASH001")
End Sub
Save, close, remove the -MESC and leave it as -MES.
Start application and that is it.
Miguel A. Santillan
Compass Components, Inc.
From:
vantage@yahoogroups.com [mailto:
vantage@yahoogroups.com] On Behalf Of Karen Schoenung
Sent: Wednesday, July 17, 2013 12:23 PM
To:
vantage@yahoogroups.com
Subject: RE: [Vantage] MES Customization
Sounds similar...Did you create a button and save it ?(you have to have a custom button - you can hide the original one by making visible = false)
From:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Mike Numbers
Sent: Wednesday, July 17, 2013 2:05 PM
To:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] MES Customization
In trying to follow the wizard, I went to event wizard, chose epibutton,
the next drop down is titled "Custom Control" and there are no choices for
this one. The next drop down is "Available Control Events" and there are no
choices for this either.
From:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> [mailto:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>] On Behalf Of
Karen Schoenung
Sent: Wednesday, July 17, 2013 2:58 PM
To:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] MES Customization
Vantage 8.03.09c, vb code:
Private Sub btnReprint_Click(ByVal Sender As Object, ByVal Args As
System.EventArgs) Handles btnReprint.Click
'// ** Place Event Handling Code Here **
End Sub
In Vantage, customization mode, go to the event wizard tab, choose epibutton
from first drop down, your button from second drop down, click from the
third drop down. I do not have Epicor 9 to see the options, but they may be
similar...
Then search this group for _Click for example...To see if there are any code
examples for the process calling....
From:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Mike Numbers
Sent: Wednesday, July 17, 2013 1:44 PM
To:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] MES Customization
I am not experienced in writing code for Click Events or using the
ProcessCaller. I learn from examples. I am looking at one of the existing
buttons on the MES (Order Tracker) and trying to match my button with
theirs. If I look at the Script Editor for Order Tracker, I don't see
anything added. I am not familiar with using the wizards, but l looked to
see if something would make sense to me and nothing did. Do you know of an
example I could follow. Basically I want to run a program that has a
customization version when the button is selected.
-----Original Message-----
From:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:
vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>] On
Behalf Of
Jose Gomez
Sent: Wednesday, July 17, 2013 1:55 PM
To: Vantage
Subject: Re: [Vantage] MES Customization
You have to actually write the code behindd for the Click Event on the
button and use the ProcessCaller.launchform to launch the form you want.
*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E:
jose@...<mailto:jose%40josecgomez.com><mailto:jose%40josecgomez.com> <mailto:jose%40josecgomez.com>
<mailto:jose%40josecgomez.com>
http://www.josecgomez.com
<
http://www.linkedin.com/in/josecgomez> <
http://www.facebook.com/josegomez>
<
http://www.google.com/profiles/jose.gomez> <
http://www.twitter.com/joc85>
<
http://www.josecgomez.com/professional-resume/>
<
http://www.josecgomez.com/feed/>
<
http://www.usdoingstuff.com>
*Quis custodiet ipsos custodes?*
On Wed, Jul 17, 2013 at 1:49 PM, mike.numbers <
mnumbers@...<mailto:mnumbers%40cignys.com><mailto:mnumbers%40cignys.com>
<mailto:mnumbers%40cignys.com> <mailto:mnumbers%40cignys.com>> wrote:
> **
>
>
> 9.04.507a
> I am trying to do my 1st MES customization. I am using one of the
> buttons on the supervisors menu that has not been used. I have created
> customization over EmpBasicEntry.dll through the normal customization
> process and put it on a menu with an id of UPSHPE. I have changed the
> Epibinding to "MESControl.Employee Fix". I have changed the text to
> "&Fix Employee Log in Error". I have changed Data - Tag to "UDSHPE"
> (this is the menu id that has my customized program and the customized
> version. Not sure this is needed, but I am trying to match one of
> Epicor's working buttons.) I have created in Process Calling
> Maintenance a custom process - Called Process Reference = "Employee Fix",
and Menu ID = "UPSHPE".
> While still in developer mode my button looks ok. When I click on the
> button I get the message - "No Menu ID found for MESControl.Employee Fix".
> Any ideas on what I am missing?
> TIA
>
>
>
[Non-text portions of this message have been removed]
------------------------------------
Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.<http://groups.yahoo.com/group/vantage/files/><
http://groups.yahoo.com/group/vantage/files/>
<
http://groups.yahoo.com/group/vantage/files/>
<
http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]