Excellent!
On Thu, Mar 15, 2012 at 1:30 PM, Ted Koch <tkoch77@...> wrote:
> **
>
>
> Ah okay, I understand. That worked great, thank you John!
>
>
> ________________________________
> From: John Driggers <waffqle@...>
> To: vantage@yahoogroups.com
> Sent: Thursday, March 15, 2012 1:09 PM
>
> Subject: Re: [Vantage] Event Handlers
>
> Ok, what you need to do is pull the info you want from the dataview instead
> of the control.
> It should look something like this:
>
> dim variable As String = view.dataView(args.Row)("FieldName")
>
> That will pull the data that the notification is firing against.
>
> On Thu, Mar 15, 2012 at 11:44 AM, Ted Koch <tkoch77@...> wrote:
>
> > **
>
> >
> >
> > Not not seeing it, when it is being triggered I'm getting the data before
> > the initialize has completed, not what is on the screen after. I dont
> know
> > if you have time, but if you try this you can see what is happening.
> >
> >
> > Private Sub edvSugPoDtl_EpiViewNotification(ByVal view As EpiDataView,
> > ByVal args As EpiNotifyArgs)
> > ' ** Argument Properties and Uses **
> > If (args.NotifyType = EpiTransaction.NotifyType.Initialize) Then
> > dim txtAsmSeq as epiNumericeditor =
> >
> Ctype(csm.GetNativeControlReference("5621d1ff-7728-456c-a3c4-724b67b69cbc"),
> > epinumericeditor)
> > msgbox(txtasmseq.text)
> >
> > End If
> > End Sub
> >
> > ________________________________
> > From: John Driggers <waffqle@...>
> > To: vantage@yahoogroups.com
> > Sent: Thursday, March 15, 2012 11:22 AM
> >
> > Subject: Re: [Vantage] Event Handlers
> >
> > You should be able to use the EpiView. The data you need should be
> visible
> > by the time the event fires. Are you not seeing it?
> >
> > On Thu, Mar 15, 2012 at 10:32 AM, Ted Koch <tkoch77@...> wrote:
> >
> > > **
> >
> > >
> > >
> > > Thanks for the input Rob, I'll keep trying different ways until I get
> it.
> > >
> > >
> > > ________________________________
> > > From: Rob Bucek <rbucek@...>
> > > To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
> > > Sent: Thursday, March 15, 2012 10:26 AM
> > >
> > > Subject: RE: [Vantage] Event Handlers
> > >
> > > I thought I remember reading another post about capturing where the
> focus
> > > was on the tree... if you could do that then maybe you could refresh or
> > > notify the form, or even your embedded dashboard (if that's what your
> > grid
> > > is..) that code would be beyond my experience though.
> > >
> > > Rob Bucek
> > > Production Control Manager
> > > PH: (715) 284-5376 ext 311
> > > Mobile: (715)896-0590
> > > FAX: (715)284-4084
> > > [Description: cid:1.234354861@...]<
> > > http://www.dsmfg.com/>
> > > (Click the logo to view our site)<http://www.dsmfg.com/>
> > >
> > > From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
> Behalf
> > > Of Ted Koch
> > > Sent: Thursday, March 15, 2012 9:19 AM
> > > To: vantage@yahoogroups.com
> > > Subject: Re: [Vantage] Event Handlers
> > >
> > > I did that, and the only one I am able to get a messagebox to show up
> > when
> > > clicking through the tree nodes is with EpiViewNotification, message
> box
> > > appears saying initialize. The only problem with this is there is no
> > AFTER
> > > EpiViewNotification. I am trying to update a datagrid I have on a tab,
> > and
> > > it keys off what is in the job fields on that form. So after the new
> > > information is loaded into the form i want to use that information to
> > > update the datagrid.
> > >
> > > I tried using this but it uses what is in the form prior to the
> > > EpiViewNotification updating the UI.
> > >
> > > Private Sub edvSugPoDtl_EpiViewNotification(ByVal view As EpiDataView,
> > > ByVal args As EpiNotifyArgs)
> > >
> > > If (args.NotifyType = EpiTransaction.NotifyType.Initialize) Then
> > > Search()
> > > End If
> > > End Sub
> > >
> > > ________________________________
> > > From: Rob Bucek <rbucek@...<mailto:rbucek%40dsmfg.com>>
> > > To: "vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>" <
> > > vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>>
> > > Sent: Thursday, March 15, 2012 9:57 AM
> > > Subject: RE: [Vantage] Event Handlers
> > >
> > > I haven't tried to customize that form but sometimes when ive been
> > > searching for a trigger I use the following in various forms..try
> before
> > > and after.. uncomment the messagebox.show, if the method is being
> exposed
> > > to the client (I think) youll get a message box as you step yourself
> > > through the form..some forms don't show anything, which makes it
> tough..
> > >
> > > Private Sub oTrans_adapter_BeforeAdapterMethod(ByVal
> > > sender As object, ByVal args As BeforeAdapterMethodArgs) Handles
> > > oTrans_adapter.BeforeAdapterMethod
> > > '// ** Argument Properties and Uses **
> > > '// args.MethodName, args.Cancel
> > > '
> > > 'Add Event Handler Code
> > > '
> > > 'MessageBox.Show(args.MethodName) ' use this to find
> > > method
> > >
> > > Most of the event handlers from the wizard give you some clues about
> > > checking for events.. like the epiviewnotification (the fire hose) you
> > > could try messagebox.show (args.notifytpe)
> > >
> > > HTH
> > >
> > > Rob Bucek
> > > Production Control Manager
> > > PH: (715) 284-5376 ext 311
> > > Mobile: (715)896-0590
> > > FAX: (715)284-4084
> > > [Description: cid:1.234354861@...<mailto:
> > > 1.234354861%40web65412.mail.ac4.yahoo.com>]<http://www.dsmfg.com/>
> > > (Click the logo to view our site)<http://www.dsmfg.com/>
> > >
> > > From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
> [mailto:
> > > vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
> Of
> > > tkoch77
> > > Sent: Thursday, March 15, 2012 7:57 AM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
> > > Subject: [Vantage] Event Handlers
> > >
> > > I don't know what I'm missing. I'm on New PO Suggestion and trying to
> > > trigger an event AFTER I click on a material or subcontract item and
> the
> > > form is repopulated. What transaction event handler would I use to
> > trigger
> > > something?
> > >
> > > Thanks,
> > >
> > > Ted
> > >
> > > [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/>
> > > (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]
> > >
> > > ------------------------------------
> > >
> > > 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/.
> > > (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]
> > >
> > >
> > >
> >
> > --
> > *John Driggers*
> > *High End Dev, System Design, Profit Drinking*
> > *
> > **:: 904.404.9233*
> > *:: waffqle@...*
> > *:: NO FAXES*
> >
> > *
> >
> >
> > *
> >
> > [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/.
> > (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]
> >
> >
> >
>
> --
> *John Driggers*
> *High End Dev, System Design, Profit Drinking*
> *
> **:: 904.404.9233*
> *:: waffqle@...*
> *:: NO FAXES*
>
> *
>
> *
>
> [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/.
> (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]
>
>
>
--
*John Driggers*
*High End Dev, System Design, Profit Drinking*
*
**:: 904.404.9233*
*:: waffqle@...*
*:: NO FAXES*
*
*
[Non-text portions of this message have been removed]