I don't have a complete version that I can cut and paste handy but these are the basic steps. This is C# but same steps apply for VB, declaration of objects would be the major syntax change. Everything is standard .net, Google this topic will return additional examples.
Declare your form and add controls to it, do this in the global area.
private static Form _CustomCopy = new Form();
private static Button _cCopy = new Button();
private static Button _cCancel = new Button();
private static Button _cMaxIt = new Button();
private static EpiNumericEditor _cOurRemainQty = new EpiNumericEditor();
private static Label _cLOurRemainQty = new Label();
// set properties such as location and size, this can be in the initialize, form load events or on demand.
// Define the border style of the form to a dialog box.
_CustomCopy.FormBorderStyle = FormBorderStyle.FixedDialog;
_cCopy.DialogResult = DialogResult.OK;
// Set the cancel button of the form to button2.
_CustomCopy.CancelButton = _cCancel;
_CustomCopy.Width = 500;
_CustomCopy.Height = 300;
_CustomCopy.Controls.Add(_cCopy );
_CustomCopy.Controls.Add(_cCancel );
_cCopy.Text = "Copy";
_cCopy.Location = new Point (20,20);
// display it when you want to interact with user.
_CustomCopy.ShowDialog();
if (_CustomCopy.DialogResult == DialogResult.OK)
{
using(oTrans.PushDisposableStatusText("Copying Lines", true))
{
// action to take upon return from form.
CopyLines();
oTrans.Refresh();
}
}
Jim Kinneman
Encompass Solutions, Inc
Declare your form and add controls to it, do this in the global area.
private static Form _CustomCopy = new Form();
private static Button _cCopy = new Button();
private static Button _cCancel = new Button();
private static Button _cMaxIt = new Button();
private static EpiNumericEditor _cOurRemainQty = new EpiNumericEditor();
private static Label _cLOurRemainQty = new Label();
// set properties such as location and size, this can be in the initialize, form load events or on demand.
// Define the border style of the form to a dialog box.
_CustomCopy.FormBorderStyle = FormBorderStyle.FixedDialog;
_cCopy.DialogResult = DialogResult.OK;
// Set the cancel button of the form to button2.
_CustomCopy.CancelButton = _cCancel;
_CustomCopy.Width = 500;
_CustomCopy.Height = 300;
_CustomCopy.Controls.Add(_cCopy );
_CustomCopy.Controls.Add(_cCancel );
_cCopy.Text = "Copy";
_cCopy.Location = new Point (20,20);
// display it when you want to interact with user.
_CustomCopy.ShowDialog();
if (_CustomCopy.DialogResult == DialogResult.OK)
{
using(oTrans.PushDisposableStatusText("Copying Lines", true))
{
// action to take upon return from form.
CopyLines();
oTrans.Refresh();
}
}
Jim Kinneman
Encompass Solutions, Inc
--- In vantage@yahoogroups.com, Marco Vissuet <mvissuet@...> wrote:
>
> Do you have an example of this?
>
>
> Marco Vissuet
> Systems Engineering
> Pacific Contours Corporation
> Office (619) 670-3900
> Fax (619) 670-1643
> mvissuet@...<mailto:marcov@...>
> http://www.pacificcontours.com/
>
> "The information contained herein may be subject to the International Traffic in Arms Regulations (ITAR) Warning: - This document contains data whose export is restricted by the Arms Export Control Act (Title 22, U.S.C., Sec 2751, et seq.) as amended, or the Export Administration Act (Title 50, U.S.C., App 2401 et seq.) as amended. Violations of these export laws are subject to severe criminal and civil penalties. Disseminate in accordance with provisions of DoD Directive 5230.25.
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of jckinneman
> Sent: Monday, October 15, 2012 1:25 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: User Input to a BPM
>
>
>
> You can also dynamically via program code build a .net form, populate it with controls, call/display it and interact with it. This would allow you to put all the controls on the form, add validation if you like and when they close the form pass the values back to main flow.
>
> Even in 9 I have done this when I need to interact with the user in a dialog fashion that doesn't fit into a BPM interaction scenario or adding a new tab isn't controlling enough.
>
> Jim Kinneman
> Encompass Solutions, Inc
>
> --- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>, Rob Bucek <rbucek@<mailto:rbucek@>> wrote:
> >
> > This is a fairly unsophisticated method but its straight forward and works for something not too complex. I'm using an after field changed event as a trigger (that field is mandated by a BPM). The business case is during receipt entry, the users are required to record data from the packing slip (in this case carbon content, yield, and tensile strength of the steel by lot number). The form simply gives them 3 input boxes in succession. I then apply the value entered (if any) to user defined fields in the receipt detail. Had I developed this in 9 I would use a BPM form as it would have been easier to get all three fields on one form. That being said it doesn't flow too bad. We don't validate the data they are inputing but you could do data validation by any method you desired.
> >
> >
> > Case "ShortChar01"
> > 'Carbon Content
> > Dim Carbon As String = InputBox("Enter carbon content of Heat Number", "Carbon Content")
> > 'MsgBox("Your Input is " & Carbon)
> > If Carbon = "" Then
> > Carbon = 0
> > End If
> > edvRcvDtl.DataView(edvRcvDtl.Row)("ShortChar02") = Carbon
> > 'Yield Strength
> > Dim Yield As String = InputBox("Enter yield strength of Heat Number", "Yield Strength")
> > 'MsgBox("Your Input is " & Carbon)
> > If Yield = "" Then
> > Yield = 0
> > End If
> > edvRcvDtl.DataView(edvRcvDtl.Row)("ShortChar03") = Yield
> > 'Tensile Strength
> > Dim Tensile As String = InputBox("Enter tensile strength of Heat Number", "Tensile Strength")
> > 'MsgBox("Your Input is " & Carbon)
> > If Tensile = "" Then
> > Tensile = 0
> > End If
> > edvRcvDtl.DataView(edvRcvDtl.Row)("ShortChar04") = Tensile
> > Case Else
> >
> >
> >
> > Rob Bucek
> > Production Control Manager
> > PH: (715) 284-5376 ext 311
> > Mobile: (715)896-4832
> > FAX: (715)284-4084
> > [cid:1.234354861@]<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 Rob Bucek
> > Sent: Tuesday, October 09, 2012 6:27 PM
> > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
> > Subject: RE: [Vantage] Re: User Input to a BPM
> >
> >
> >
> > All,
> >
> > I should have some time to post something this Thursday or Friday.
> >
> > Rob Bucek
> > Production Control Manager
> > PH: (715) 284-5376 ext 311
> > Mobile: (715)896-4832
> > 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%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>] On Behalf Of snielsen28
> > Sent: Tuesday, October 09, 2012 8:09 AM
> > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > Subject: [Vantage] Re: User Input to a BPM
> >
> > I'd like to see it too please.
> >
> > Sue
> >
> > --- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>, Dan Godfrey <dgodfrey@> wrote:
> > >
> > > Rob, is it too late to add me in as well?
> > >
> > > Dan Godfrey (dgodfrey@)
> > >
> > > -----Original Message-----
> > > 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 Neil Buckman
> > > Sent: Monday, October 08, 2012 2:08 PM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > Subject: RE: [Vantage] Re: User Input to a BPM
> > >
> > > Hi Rob,
> > >
> > > Add me in too please.
> > >
> > > - Neil
> > >
> > >
> > > 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 Ree Pruehs
> > > Sent: Tuesday, 9 October 2012 2:05 AM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > Subject: RE: [Vantage] Re: User Input to a BPM
> > >
> > >
> > >
> > > It would be great if you could post this, Rob - please and thank you.
> > >
> > > 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 Marco Vissuet
> > > Sent: Monday, October 08, 2012 10:45 AM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > Subject: RE: [Vantage] Re: User Input to a BPM
> > >
> > > Can you send it to me too?
> > >
> > > Marco Vissuet
> > > Systems Engineering
> > > Pacific Contours Corporation
> > > Office (619) 670-3900
> > > Fax (619) 670-1643
> > > mvissuet@<mailto:mvissuet%40pacificcontours.com<mailto:mvissuet@%3cmailto:mvissuet%40pacificcontours.com>> <mailto:mvissuet%40pacificcontours.com>
> > > <mailto:marcov@<mailto:marcov%40pacificcontours.com<mailto:marcov@%3cmailto:marcov%40pacificcontours.com>> <mailto:marcov%40pacificcontours.com>
> > > >
> > > http://www.pacificcontours.com/
> > >
> > > "The information contained herein may be subject to the International Traffic in Arms Regulations (ITAR) Warning: - This document contains data whose export is restricted by the Arms Export Control Act (Title 22, U.S.C., Sec 2751, et seq.) as amended, or the Export Administration Act (Title 50, U.S.C., App 2401 et seq.) as amended. Violations of these export laws are subject to severe criminal and civil penalties.
> > > Disseminate in accordance with provisions of DoD Directive 5230.25.
> > >
> > > From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.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> <mailto:vantage%40yahoogroups.com> ] On Behalf Of Karen Schoenung
> > > Sent: Monday, October 08, 2012 6:38 AM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> > > Subject: RE: [Vantage] Re: User Input to a BPM
> > >
> > > This sounds like something several of us may want - can you post it?
> > >
> > > From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.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>
> > > <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
> > > On Behalf Of tracy.tmat
> > > Sent: Monday, October 08, 2012 4:17 AM
> > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> > > <mailto:vantage%40yahoogroups.com>
> > > Subject: [Vantage] Re: User Input to a BPM
> > >
> > > Rob, I would be interested in this code if it is available? Thanks.
> > >
> > > --- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> > > <mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>,
> > > Rob Bucek
> > > <rbucek@<mailto:rbucek@<mailto:rbucek@%3cmailto:rbucek@
> > > <mailto:rbucek@%3cmailto:rbucek@%3cmailto:rbucek@%3cmailto:rbuc
> <mailto:rbucek@%3cmailto:rbucek@%3cmailto:rbucek@%3cmailto:rbuc%0b>> > ek@<mailto:rbucek@%3cmailto:rbucek@%3cmailto:rbucek@%3cmailto:rbucek@%0b%3cmailto:rbucek@%3cmailto:rbucek@%3cmailto:rbucek@%3cmailto:rbuc%0bek@>> >>> wrote:
> > > >
> > > > True statement...i have some .net code for a vantage form to bring up
> > > an input box and apply the values given if you're interested..
> > > >
> > > > Rob Bucek
> > > > Production Control Manager
> > > > PH: (715) 284-5376 ext 311
> > > > Mobile: (715)896-0590
> > > > FAX: (715)284-4084
> > > >
> > > > (Click the logo to view our site)
> > > >
> > > > -----Original Message-----
> > > > From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.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> <mailto:vantage%40yahoogroups.com>
> > > <mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>] On Behalf Of John Driggers
> > > > Sent: Tuesday, June 19, 2012 2:08 PM
> > > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > > <mailto:vantage%40yahoogroups.com>
> > > <mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > > Subject: Re: [Vantage] User Input to a BPM
> > > >
> > > > You're probably going to want to go with a screen customization for
> > > this.
> > > > You can use BPM dataforms to do what you want, but they are only
> > > available in newer versions.
> > > >
> > > > *John Driggers*
> > > > **
> > > > *Chief Data Wrangler*
> > > > *
> > > > *
> > > > *I have an Epicor blog <http://usdoingstuff.com/>. How useful is
> > > that?*
> > > > *
> > > > *:: 904.404.9233
> > > > :: waffqle@
> > > > :: http://www.usdoingstuff.com <http://www.usdoingstuff.com/>
> > > >
> > > > *
> > > >
> > > > *
> > > >
> > > >
> > > >
> > > > On Tue, Jun 19, 2012 at 2:57 PM, Karl Dash
> > > <dashkarl@<mailto:dashkarl@<mailto:dashkarl@%3cmailto:dashkarl@
> > > ...
> > > <mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt
> <mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt%0b>> > o:dashkarl@<mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%0b...%0b%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt%0bo:dashkarl@>> >>> wrote:
> > > >
> > > > > **
> > > > >
> > > > >
> > > > > Sorry, Progress 803.408
> > > > >
> > > > > Thanks -Karl
> > > > >
> > > > > ________________________________
> > > > > From: Jose Gomez
> > > <jose@<mailto:jose@<mailto:jose@%3cmailto:jose@
> > > <mailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@<mailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%0b%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@<mailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%0b%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@%3cmailto:jose@>>>
> > > >>>
> > > > > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > > > <mailto:vantage%40yahoogroups.com>
> > > <mailto:vantage%40yahoogroups.com><mailto:vantage%40yahoogroups.com>
> > > > > Sent: Tuesday, June 19, 2012 11:53 AM
> > > > > Subject: Re: [Vantage] User Input to a BPM
> > > > >
> > > > >
> > > > > What version?\
> > > > > 8X
> > > > > 9X?
> > > > > 9.05??
> > > > >
> > > > > *Jose C Gomez*
> > > > > *Software Engineer*
> > > > > *
> > > > > *
> > > > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > > > *
> > > > > *T: 904.469.1524 mobile
> > > > > E: jose@
> > > > > 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 Tue, Jun 19, 2012 at 2:52 PM, Karl Dash
> > > <dashkarl@<mailto:dashkarl@<mailto:dashkarl@%3cmailto:dashkarl@
> > > ...
> > > <mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt
> <mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt%0b>> > o:dashkarl@<mailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%0b...%0b%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailto:dashkarl@%3cmailt%0bo:dashkarl@>> >>> wrote:
> > > > >
> > > > > > **
> > > > > >
> > > > > >
> > > > > > Does anyone have an idea of how to get /retrieve user input for a
> > > > > > BPM. I want the user to update a field from a BPM request for
> > > input.
> > > > > > The only examples I've seen have the input into a UD field and
> > > then
> > > > > > ASSIGN that to the database field.
> > > > > >
> > > > > > Thanks -Karl
> > > > > >
> > > > > > [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/.<http://groups.yahoo.com/group/vantage/files/><http://groups.yahoo.com/group/vantage/files/><http://groups.yahoo.com/group/vantage/files/><http://groups.yahoo.co
> > > > > m/group/vantage/files/>
> > > <http://groups.yahoo.com/group/vantage/files/>
> > > <http://groups.yahoo.com/group/vantage/files/><http://groups.yahoo.com/g
> > > roup/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/.<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/>
> > > <http://groups.yahoo.com/group/vantage/files/><http://groups.yahoo.com/g
> > > roup/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]
> > >
> > >
> > >
> > > Notice:This e-mail and any attachments are confidential and are only for the use of the person to whom they are addressed. If you are not the intended recipient please advise the sender by return e-mail and delete the message and any attachments. Any use, interference with, disclosure or copying of this message or any attachments is unauthorised and prohibited. The sender does not warrant that the information is free of a virus or any other defect or error, and any views expressed herein, unless specifically indicated otherwise, are those of the individual sender.
> > >
> > > The DH Gibson Group of Companies - http://www.gibsonshopfitters.com.au
> > >
> > > P Please consider our shared environment before printing this communication.
> > >
> > >
> > >
> > > [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/>
> > > (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]
>