Brian,
You were right! Thank you very much!! Smack dab in front of me too.
Kurt
You were right! Thank you very much!! Smack dab in front of me too.
Kurt
--- In vantage@yahoogroups.com, "Brian Roberts" <broberts@...> wrote:
>
> I think its the last parameter to BOMTrackerArgs, try changing it to
> false.
>
> Brian.
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> Of Kurt
> Sent: Thursday, October 11, 2012 11:25 AM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: Method Tracker on the Menu
>
>
>
>
>
> Hi,
>
> I gave this a try and it works great. I have it working where the user
> can search, or enter their own part,rev and alt to call up. Thanks very
> much for the code!! But, it looks like (at least the way it works for
> us) when the Method Tracker comes up, it's full blown modal. No other
> forms in Vantage can be used when the MT opens from there. That doesn't
> happen when it's opened from the Part Tracker. Does anyone have an idea
> how to open the MT "de-modalized"?
>
> Thanks!!
>
> Kurt
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
> Miguel Santillan <msantillan@> wrote:
> >
> > Thanks will try that out.
> >
> > Miguel A. Santillan
> > Compass Components, Inc.
> >
> >
> > From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> [mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
> Behalf Of bw2868bond
> > Sent: Thursday, August 30, 2012 3:42 PM
> > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > Subject: [Vantage] Re: Method Tracker on the Menu
> >
> >
> >
> > This is what we did on 8.03.405a
> > Take a simple entry form and hide/move all the base controls.
> > Add a button to the blank form.
> > Here is the code customization that will allow the user to select the
> assembly - rev and launch Method Tracker:
> >
> > '//**************************************************
> > '// Custom VB.NET code for UD40Form
> > '// Created: 8/11/2008 10:11:15 AM
> > '//**************************************************
> > Imports System
> > Imports System.Data
> > Imports System.Diagnostics
> > Imports System.Windows.Forms
> > Imports System.ComponentModel
> > Imports Microsoft.VisualBasic
> > Imports Epicor.Mfg.UI
> > Imports Epicor.Mfg.UI.FrameWork
> > Imports Epicor.Mfg.UI.ExtendedProps
> > Imports Epicor.Mfg.UI.FormFunctions
> > Imports Epicor.Mfg.UI.Customization
> > Imports Epicor.Mfg.UI.Adapters
> > Imports Epicor.Mfg.UI.Searches
> > Imports Epicor.Mfg.BO
> >
> > Module Script
> >
> > '// ** Wizard Insert Location - Do Not Remove 'Begin/End Wizard Added
> Module Level Variables' Comments! **
> > '// Begin Wizard Added Module Level Variables **
> >
> > '// End Wizard Added Module Level Variables **
> >
> > '// Add Custom Module Level Variables Here **
> >
> > Sub InitializeCustomCode()
> >
> > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added
> Variable Intialization' lines **
> > '// Begin Wizard Added Variable Intialization
> >
> > '// End Wizard Added Variable Intialization
> > '// Begin Custom Method Calls
> >
> > '// End Custom Method Calls
> > End Sub
> >
> > Sub DestroyCustomCode()
> >
> > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added
> Object Disposal' lines **
> > '// Begin Wizard Added Object Disposal
> >
> > '// End Wizard Added Object Disposal
> > '// Begin Custom Code Disposal
> >
> > '// End Custom Code Disposal
> > End Sub
> >
> > Private Sub btnBomSearch_Click(ByVal Sender As Object, ByVal Args As
> System.EventArgs) Handles btnBomSearch.Click
> > '// ** Place Event Handling Code Here **
> > Dim recordSelected As Boolean
> > Dim dsSearch As DataSet = SearchFunctions.listLookup(UD40Form,
> "PartRevSearchAdapter", recordSelected, True, "", False)
> > If recordSelected
> > Dim bsa As Epicor.Mfg.UI.FormFunctions.BomTrackerArgs
> > bsa = New BomTrackerArgs(dsSearch.Tables(0).Rows(0)("PartNum"),
> dsSearch.Tables(0).Rows(0)("RevisionNum"),
> dsSearch.Tables(0).Rows(0)("AltMethod"), true)
> > Dim mt As Object = ProcessCaller.LaunchTracker(UD40Form, "XAGO3000",
> bsa)
> > End If
> > End Sub
> >
> > End Module
> >
> > --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> <mailto:vantage%40yahoogroups.com>, Miguel Santillan
> <msantillan@<mailto:msantillan@>> wrote:
> > >
> > > How can I get the Method Tracker on the menu. Is it possible?
> > >
> > > App.EngWorkBenchEntry.BOMTrackerForm
> > >
> > >
> > > Regards,
> > >
> > > Miguel A. Santillan
> > > ERP Administrator
> > > Compass Components, Inc.
> > > 510-661-6666 Office
> > > 510-656-0603 Fax
> > >
> msantillan@<mailto:msantillan@<mailto:msantillan@%3cmailto:msantillan@>.
> ..>
> > > www.ccicms.com<http://www.ccicms.com/>
> > >
> > >
> > >
> > > [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]
>