Aaron
Because I don't know any better, I'm running my .p's out ther UD
folder.
Cliff
________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Chris Robisch
Sent: Thursday, October 13, 2005 1:07 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] VB form help.
Here's how one of ours works... this is fundamental stuff.
On the Shop Employee's VBForm OK Button, we have:
runprog eiempbasicok.p
That program has {vb.i} as the first line (braces, not parentheses).
Ensure you're storing the program in the VBP directory of the Vantage
you're
in.
Because I don't know any better, I'm running my .p's out ther UD
folder.
Cliff
________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Chris Robisch
Sent: Thursday, October 13, 2005 1:07 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] VB form help.
Here's how one of ours works... this is fundamental stuff.
On the Shop Employee's VBForm OK Button, we have:
runprog eiempbasicok.p
That program has {vb.i} as the first line (braces, not parentheses).
Ensure you're storing the program in the VBP directory of the Vantage
you're
in.
----- Original Message -----
From: "Podlin, Michael" <michael.podlin@...>
To: <vantage@yahoogroups.com>
Sent: Thursday, October 13, 2005 12:29 PM
Subject: RE: [Vantage] VB form help.
> Have you tried:
>
> RUNPROG vbp\JobLog.p
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of Aaron Hoyt
> Sent: Thursday, October 13, 2005 2:13 PM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
> All right.
> Can anyone that is running V6.1 526 or above and Progress 9.1D 0920
check
> to
> see if RUNPROG can find a file?
> No matter what I do and how I do it, this can't find a file. Even
> creating
> a VBP (I can find those) can't find the .p with a RUNPROG command.
> This is getting beyond frustrating at this point.
> Thanks,
> Aaron
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of Aaron Hoyt
> Sent: Thursday, October 13, 2005 2:25 PM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
> I think Todd might be onto something.
> I have tried about every variant...
> p, .r, with vbp\, with full path, with nothing...can't seem to find a
file
> with runprog directly from the VB form for me.
> I am going to try to dance a little two step with it to see if I can
> loosen
> things up a bit. :)
> I will let everyone know my progress.
> Thanks,
> Aaron
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of Butch Menge
> Sent: Thursday, October 13, 2005 12:58 PM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
> Have you tried RUNPROG JobLog.p? It seem like when I first played
with
> BAM's I had similar issues and it was because I was specifying the
path.
> Just a thought.
>
>
>
> Butch
>
>
>
> ________________________________
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
Behalf
> Of Aaron Hoyt
> Sent: Thursday, October 13, 2005 9:01 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
>
> My command looks like this.
>
> RUNPROG v:\mfgsys61\vbp\JobLog.p
>
> I can't get it to find the file wherever I put it. Just File
> v:\mfgsys61\vbp\JobLog.p not found.
>
> Grrr.
> Any ideas?
> Aaron
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of Brandon Murch
> Sent: Thursday, October 13, 2005 11:46 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
> I have a button that calls a .p program and this is the command I am
> using:
>
> RUNPROG z:\vantage\vbp\order.p
>
> I know that I had to put the .p file in the VBP directory in order for
> Vantage to see it...
>
> Brandon R Murch
> Supervisor of Information Technology
> WindStone Medical Packaging
> 406.259.6387
> bmurch@... <mailto:bmurch@...>
>
> -----Original Message-----
> From: Aaron Hoyt [mailto:aaron.hoyt@...]
> Sent: Thursday, October 13, 2005 9:39 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
> Thanks you Brandon,
> Sounds great, but all I get when trying to call a .p lately is file
not
> found.
> Any thought on that?
> I have a .p that should work using DOS command, but can't get Vantage
to
> find it in VBP even calling out the full path.
> Grrrr.
> Aaron
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of Brandon Murch
> Sent: Thursday, October 13, 2005 11:28 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] VB form help.
>
>
> Aaron,
>
> Would a .p file assigned to the button work?
>
> I did some searching on www.progresstalk.com
> <http://www.progresstalk.com/> and found some sample code which may
> help in getting excel to open:
>
> DEF VAR ExcelApp AS COM-HANDLE NO-UNDO.
> DEF VAR ExcelWkbk AS COM-HANDLE NO-UNDO.
> DEF VAR ExcelFileName AS CHARACTER NO-UNDO.
> ASSIGN ExcelFileName = "filename.
>
>
> CREATE "Excel.Application":U ExcelApp NO-ERROR.
>
>
> /*Open Excel*/
> chExcelApplication:VISIBLE = TRUE.
>
> /*open workbook*/
> ExcelWkbk = ExcelApp:workbooks:OPEN(ExcelFileName).
>
> I think if you used the vb.i program as well to call the jobnum
> associated with operation you may be able to parse that into the
> ExcelFileName variable.
>
>
>
> Brandon R Murch
> Supervisor of Information Technology
> WindStone Medical Packaging
> 406.259.6387
> bmurch@... <mailto:bmurch@...>
>
> -----Original Message-----
> From: Aaron Hoyt [mailto:aaron.hoyt@...]
> Sent: Thursday, October 13, 2005 8:56 AM
> To: Vantage Group
> Subject: [Vantage] VB form help.
>
> Requesting help again for an issue I was helped with once before I
> think.
> I have a VB form that I am trying to use a button on.
> It's the JobOperation VBForm. I would like to be able to use the
> current
> job number in a call to an outside program. What I am trying to do it
> call
> an excel file by the same name as the job number. Can anyone help me?
> I could create a BAM to do this and just sacrifice one of the VB
> checkboxes,
> but I would rather have a button so it looks nice.
> Any ideas?
> Thanks,
> Aaron Hoyt
> Vantage Plastics
>
>
>
> 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/links
>
>
>
> SPONSORED LINKS
> Manufacturing software
>
<http://groups.yahoo.com/gads?t=ms&k=Manufacturing+software&w1=Manufactu
>
ring+software&w2=Membership+database+software&w3=Database+mortgage+softw
>
are&w4=Pda+database+software&w5=Database+management+software&w6=Database
> +marketing+software&c=6&s=188&.sig=OG5F3819UOUOg63i0bu6kA>
> Membership database software
>
<http://groups.yahoo.com/gads?t=ms&k=Membership+database+software&w1=Man
>
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
>
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
> tabase+marketing+software&c=6&s=188&.sig=N5BGdur84p-jyuOomcQdbQ>
> Database mortgage software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+mortgage+software&w1=Manuf
>
acturing+software&w2=Membership+database+software&w3=Database+mortgage+s
>
oftware&w4=Pda+database+software&w5=Database+management+software&w6=Data
> base+marketing+software&c=6&s=188&.sig=8rvcSQnCqJhTCZu-0Si39A>
> Pda database software
>
<http://groups.yahoo.com/gads?t=ms&k=Pda+database+software&w1=Manufactur
>
ing+software&w2=Membership+database+software&w3=Database+mortgage+softwa
>
re&w4=Pda+database+software&w5=Database+management+software&w6=Database+
> marketing+software&c=6&s=188&.sig=u3KQrTRPAQfsWIT39aHDkg>
> Database management software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+management+software&w1=Man
>
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
>
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
> tabase+marketing+software&c=6&s=188&.sig=R3CF3ODPY4gwjDZjykQYvw>
> Database marketing software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+marketing+software&w1=Manu
>
facturing+software&w2=Membership+database+software&w3=Database+mortgage+
>
software&w4=Pda+database+software&w5=Database+management+software&w6=Dat
> abase+marketing+software&c=6&s=188&.sig=lmBkRUiBtvHI1u5dkymDcw>
>
> _____
>
> YAHOO! GROUPS LINKS
>
> * Visit your group "vantage
> <http://groups.yahoo.com/group/vantage> " on the web.
>
> * To unsubscribe from this group, send an email to:
> vantage-unsubscribe@yahoogroups.com
> <mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
> _____
>
>
>
***********************************************************************
> Privileged and/or confidential information may be contained in
> this message. If you are not the addressee indicated in this
> message (or are not responsible for deliver of this message to
> that person), you may not copy or deliver this message to
> anyone. In such case, you should destroy this message and
> notify the sender by reply e-mail. If you or your employer do
> not consent to Internet e-mail for messages of this kind,
> please advise the sender. Windstone Medical Packaging,
> Inc. does not provide or endorse any opinions, conclusions
> or other information in this message that do not relate to the
> official business of the company.
>
***********************************************************************
>
>
> [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/>
> (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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
> 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/>
> (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/links
>
>
>
> _____
>
> YAHOO! GROUPS LINKS
>
> * Visit your group "vantage
> <http://groups.yahoo.com/group/vantage> " on the web.
>
> * To unsubscribe from this group, send an email to:
> vantage-unsubscribe@yahoogroups.com
> <mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
> _____
>
>
>
***********************************************************************
> Privileged and/or confidential information may be contained in
> this message. If you are not the addressee indicated in this
> message (or are not responsible for deliver of this message to
> that person), you may not copy or deliver this message to
> anyone. In such case, you should destroy this message and
> notify the sender by reply e-mail. If you or your employer do
> not consent to Internet e-mail for messages of this kind,
> please advise the sender. Windstone Medical Packaging,
> Inc. does not provide or endorse any opinions, conclusions
> or other information in this message that do not relate to the
> official business of the company.
>
***********************************************************************
>
>
> [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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
> 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/links
>
>
>
>
> SPONSORED LINKS
>
> Manufacturing software
>
<http://groups.yahoo.com/gads?t=ms&k=Manufacturing+software&w1=Manufactu
>
ring+software&w2=Membership+database+software&w3=Database+mortgage+softw
>
are&w4=Pda+database+software&w5=Database+management+software&w6=Database
> +marketing+software&c=6&s=188&.sig=OG5F3819UOUOg63i0bu6kA>
>
> Membership database software
>
<http://groups.yahoo.com/gads?t=ms&k=Membership+database+software&w1=Man
>
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
>
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
> tabase+marketing+software&c=6&s=188&.sig=N5BGdur84p-jyuOomcQdbQ>
>
> Database mortgage software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+mortgage+software&w1=Manuf
>
acturing+software&w2=Membership+database+software&w3=Database+mortgage+s
>
oftware&w4=Pda+database+software&w5=Database+management+software&w6=Data
> base+marketing+software&c=6&s=188&.sig=8rvcSQnCqJhTCZu-0Si39A>
>
> Pda database software
>
<http://groups.yahoo.com/gads?t=ms&k=Pda+database+software&w1=Manufactur
>
ing+software&w2=Membership+database+software&w3=Database+mortgage+softwa
>
re&w4=Pda+database+software&w5=Database+management+software&w6=Database+
> marketing+software&c=6&s=188&.sig=u3KQrTRPAQfsWIT39aHDkg>
>
> Database management software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+management+software&w1=Man
>
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
>
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
> tabase+marketing+software&c=6&s=188&.sig=R3CF3ODPY4gwjDZjykQYvw>
>
> Database marketing software
>
<http://groups.yahoo.com/gads?t=ms&k=Database+marketing+software&w1=Manu
>
facturing+software&w2=Membership+database+software&w3=Database+mortgage+
>
software&w4=Pda+database+software&w5=Database+management+software&w6=Dat
> abase+marketing+software&c=6&s=188&.sig=lmBkRUiBtvHI1u5dkymDcw>
>
>
>
> ________________________________
>
> YAHOO! GROUPS LINKS
>
>
>
> * Visit your group "vantage
> <http://groups.yahoo.com/group/vantage> " on the web.
>
> * To unsubscribe from this group, send an email to:
> vantage-unsubscribe@yahoogroups.com
> <mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
>
>
> ________________________________
>
>
>
> [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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
>
> 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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
> 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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
> 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/links
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
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/links
SPONSORED LINKS
Manufacturing software
<http://groups.yahoo.com/gads?t=ms&k=Manufacturing+software&w1=Manufactu
ring+software&w2=Membership+database+software&w3=Database+mortgage+softw
are&w4=Pda+database+software&w5=Database+management+software&w6=Database
+marketing+software&c=6&s=188&.sig=OG5F3819UOUOg63i0bu6kA>
Membership database software
<http://groups.yahoo.com/gads?t=ms&k=Membership+database+software&w1=Man
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
tabase+marketing+software&c=6&s=188&.sig=N5BGdur84p-jyuOomcQdbQ>
Database mortgage software
<http://groups.yahoo.com/gads?t=ms&k=Database+mortgage+software&w1=Manuf
acturing+software&w2=Membership+database+software&w3=Database+mortgage+s
oftware&w4=Pda+database+software&w5=Database+management+software&w6=Data
base+marketing+software&c=6&s=188&.sig=8rvcSQnCqJhTCZu-0Si39A>
Pda database software
<http://groups.yahoo.com/gads?t=ms&k=Pda+database+software&w1=Manufactur
ing+software&w2=Membership+database+software&w3=Database+mortgage+softwa
re&w4=Pda+database+software&w5=Database+management+software&w6=Database+
marketing+software&c=6&s=188&.sig=u3KQrTRPAQfsWIT39aHDkg> Database
management software
<http://groups.yahoo.com/gads?t=ms&k=Database+management+software&w1=Man
ufacturing+software&w2=Membership+database+software&w3=Database+mortgage
+software&w4=Pda+database+software&w5=Database+management+software&w6=Da
tabase+marketing+software&c=6&s=188&.sig=R3CF3ODPY4gwjDZjykQYvw>
Database marketing software
<http://groups.yahoo.com/gads?t=ms&k=Database+marketing+software&w1=Manu
facturing+software&w2=Membership+database+software&w3=Database+mortgage+
software&w4=Pda+database+software&w5=Database+management+software&w6=Dat
abase+marketing+software&c=6&s=188&.sig=lmBkRUiBtvHI1u5dkymDcw>
________________________________
YAHOO! GROUPS LINKS
* Visit your group "vantage
<http://groups.yahoo.com/group/vantage> " on the web.
* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .
________________________________
[Non-text portions of this message have been removed]