Progress question

It seems a bit slow today, so I will ask this.
I am attempting to write a procedure that will grab data from the VB fields
of one table (Part) and plug them into the user fields of another (JobHead).
First attempt at actually writing data to the database. Figured I was safe
with the user fields if any.
Anyway, I think I got most of the details worked out in it, but now I get an
error that says I can't compile programs that write data to the database in
this version. Is this because of the way I am going about this, or is this
a limitation of the version of progress that I have?
The code is included below in case it is of any help.

Thanks for any response.

Aaron Hoyt
Design Standards


/* include vbp/vb.i so VBasic functions are accessible. */
{vbp/vb.i}

/* Define the variables */
DEFINE VARIABLE jobid AS ROWID NO-UNDO.
DEFINE VARIABLE partnumber LIKE JobHead.Partnum NO-UNDO.
DEFINE VARIABLE opsheetrev LIKE Part.Character01 NO-UNDO.
DEFINE VARIABLE ecnumber LIKE Part.Character02 NO-UNDO.
DEFINE VARIABLE approvaldate LIKE Part.Date01 NO-UNDO.

/* Set the record number for a quick return */
SET jobid = GetCurrentRowID().

/* Find and assign the part number to a variable */
FIND JobHead WHERE ROWID(JobHead) = jobid NO-LOCK.
ASSIGN partnumber = JobHead.partnum.

/* Find the associated Part and grab the data into variables */
FIND Part WHERE Part.Partnum = partnumber NO-LOCK.
ASSIGN opsheetrev = Part.Character01
ecnumber = Part.Character02
approvaldate = Part.Date01.

/*Go back to the original record and record the values there */
FIND JobHead WHERE ROWID(JobHead) = jobid NO-LOCK.
ASSIGN JobHead.UserChar1 = opsheetrev
JobHead.UserChar2 = ecnumber
JobHead.UserDate1 = approvaldate.

/* Finish */
RETURN.
It's late and I'm just typing this from memory. But I think this will do
what you want:

-------------- code assigned to button ----------------

SET {_CLIPTEXT} = ""
RUNPROG VBP\filename.p
SET JobHead.UserChar1.SCRVALUE = {_CLIPTEXT}
RUNPROG VBP\filename.p
SET JobHead.UserChar2.SCRVALUE = {_CLIPTEXT}
RUNPROG VBP\filename.p
SET JobHead.UserDate1.SCRVALUE = {_CLIPTEXT}

------------- filename.p i vbp directory ---------------

/* include vbp/vb.i so VBasic functions are accessible. */
{vbp/vb.i}

/* Find and assign the part number to a variable */
FIND JobHead WHERE ROWID(JobHead) = GetCurrentRowID() NO-LOCK.

/* Find the associated Part and grab the data into variables */
FIND Part WHERE Part.Partnum = JobHead.PartNum NO-LOCK.

CASE CLIPBOARD:VALUE:
WHEN Part.Character02 THEN
CLIPBOARD:VALUE = Part.Date01.
WHEN Part.Character01 THEN
CLIPBOARD:VALUE = Part.Character02.
WHEN "" THEN
CLIPBOARD:VALUE = Part.Character01.
OTHERWISE
MESSAGE "ERROR" VIEW-AS ALERT-BOX.
END CASE.

/* Finish */
RETURN.


-----Original Message-----
From: Aaron Hoyt
To: 'Vantage E-Group (E-mail) ' (E-mail)
Sent: 10/9/03 2:42 PM
Subject: [Vantage] Progress question

It seems a bit slow today, so I will ask this.
I am attempting to write a procedure that will grab data from the VB
fields
of one table (Part) and plug them into the user fields of another
(JobHead).
First attempt at actually writing data to the database. Figured I was
safe
with the user fields if any.
Anyway, I think I got most of the details worked out in it, but now I
get an
error that says I can't compile programs that write data to the database
in
this version. Is this because of the way I am going about this, or is
this
a limitation of the version of progress that I have?
The code is included below in case it is of any help.

Thanks for any response.

Aaron Hoyt
Design Standards


/* include vbp/vb.i so VBasic functions are accessible. */
{vbp/vb.i}

/* Define the variables */
DEFINE VARIABLE jobid AS ROWID NO-UNDO.
DEFINE VARIABLE partnumber LIKE JobHead.Partnum NO-UNDO.
DEFINE VARIABLE opsheetrev LIKE Part.Character01 NO-UNDO.
DEFINE VARIABLE ecnumber LIKE Part.Character02 NO-UNDO.
DEFINE VARIABLE approvaldate LIKE Part.Date01 NO-UNDO.

/* Set the record number for a quick return */
SET jobid = GetCurrentRowID().

/* Find and assign the part number to a variable */
FIND JobHead WHERE ROWID(JobHead) = jobid NO-LOCK.
ASSIGN partnumber = JobHead.partnum.

/* Find the associated Part and grab the data into variables */
FIND Part WHERE Part.Partnum = partnumber NO-LOCK.
ASSIGN opsheetrev = Part.Character01
ecnumber = Part.Character02
approvaldate = Part.Date01.

/*Go back to the original record and record the values there */
FIND JobHead WHERE ROWID(JobHead) = jobid NO-LOCK.
ASSIGN JobHead.UserChar1 = opsheetrev
JobHead.UserChar2 = ecnumber
JobHead.UserDate1 = approvaldate.

/* Finish */
RETURN.
Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]
Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

<http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



<http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]
Andy,

Thanks for the reply.

My database runs perfectly through the progress explorer tool, no problems
there, starts right up and everything seems to run.

I install my client and then try to click on one of the desktop icons .. and
the system comes up with the browsing dialog trying to look for the files
the icons link to (mfg files in the mfgsys60 folder). The system cant find
the mfg files and then asks me if I want to delete the shortcuts.

Any idea here?

Jessee Holmes

-----Original Message-----
From: Andy Berg [mailto:andy.berg@...]
Sent: Friday, October 10, 2003 7:59 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

<http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



<http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT

<http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754452/R=0/SIG=11tadqrng/*http://www.netflix.com/Default?mqso=60178
324&partid=4024216> click here

<http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754452/rand=317667873>

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

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]
Are you using a physical drive letter or a drive letter mapped to the folder? Wasn't there some issue about client on same system having to use a mapped reference? Or was it the other way around...? Just a wild guess.
-Todd C.

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 8:28 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Andy,

Thanks for the reply.

My database runs perfectly through the progress explorer tool, no problems
there, starts right up and everything seems to run.

I install my client and then try to click on one of the desktop icons .. and
the system comes up with the browsing dialog trying to look for the files
the icons link to (mfg files in the mfgsys60 folder). The system cant find
the mfg files and then asks me if I want to delete the shortcuts.

Any idea here?

Jessee Holmes

-----Original Message-----
From: Andy Berg [mailto:andy.berg@...]
Sent: Friday, October 10, 2003 7:59 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

< http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



< http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
< http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT

< http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754452/R=0/SIG=11tadqrng/* http://www.netflix.com/Default?mqso=60178
324&partid=4024216> click here

< http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754452/rand=317667873>

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

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]



Yahoo! Groups Sponsor

ADVERTISEMENT
<http://rd.yahoo.com/M=244522.3707890.4968055.1261774/D=egroupweb/S=1705007183:HM/A=1595054/R=0/SIG=124ukap9t/*http://ashnin.com/clk/muryutaitakenattogyo?YH=3707890&yhad=1595054> Click Here!
<http://us.adserver.yahoo.com/l?M=244522.3707890.4968055.1261774/D=egroupmail/S=:HM/A=1595054/rand=232082774>

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

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]
Well I just figured it out the problem ... Seems it was a security issue ...
I believe I kinda took some funky steps to get about it, but what I ended up
doing was applying full security rights to the everyone group on the C drive
then told it to apply the settings to all directories and subdirectories.

I deleted the mfgsys60 and train60 folders and then reinstalled the vantage
server software... I looked in the folder and the icons were still not
there, so then I tried installing the client AGAIN through the mapped drive
and once I did that WITH the new security settings applied ... It worked
perfectly.


Thanks for the idea Andy ... And FYI im on Progress 9.1D SP6 (might want to
try that if you don't have that all ready.

Jessee Holmes
Stremel Manufacturing Company

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 8:28 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Andy,

Thanks for the reply.

My database runs perfectly through the progress explorer tool, no problems
there, starts right up and everything seems to run.

I install my client and then try to click on one of the desktop icons .. and
the system comes up with the browsing dialog trying to look for the files
the icons link to (mfg files in the mfgsys60 folder). The system cant find
the mfg files and then asks me if I want to delete the shortcuts.

Any idea here?

Jessee Holmes

-----Original Message-----
From: Andy Berg [mailto:andy.berg@...]
Sent: Friday, October 10, 2003 7:59 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

<http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



<http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT

<http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754452/R=0/SIG=11tadqrng/*http://www.netflix.com/Default?mqso=60178
324&partid=4024216> click here

<http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754452/rand=317667873>

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

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

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
true, that also may have had something to do with it, I believe I tried
installing the client through the c drive at first by accident (which was
dumb of me); however I later realized my error and did a reinstall with it
through a mapped V drive.. but yes you can have server and client on the
same machine running (I even believe Epicor recommends this but don't quote
me on that).

Anyways, per my previous email I did get it fixed, thanks for the input
though. I appreciate it.

Jessee Holmes

-----Original Message-----
From: Todd Caughey [mailto:caugheyt@...]
Sent: Friday, October 10, 2003 8:37 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Are you using a physical drive letter or a drive letter mapped to the
folder? Wasn't there some issue about client on same system having to use a
mapped reference? Or was it the other way around...? Just a wild guess.
-Todd C.

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 8:28 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Andy,

Thanks for the reply.

My database runs perfectly through the progress explorer tool, no problems
there, starts right up and everything seems to run.

I install my client and then try to click on one of the desktop icons .. and
the system comes up with the browsing dialog trying to look for the files
the icons link to (mfg files in the mfgsys60 folder). The system cant find
the mfg files and then asks me if I want to delete the shortcuts.

Any idea here?

Jessee Holmes

-----Original Message-----
From: Andy Berg [mailto:andy.berg@...]
Sent: Friday, October 10, 2003 7:59 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

<
http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



<
http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
< http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT

<
http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754452/R=0/SIG=11tadqrng/*
http://www.netflix.com/Default?mqso=60178
324&partid=4024216> click here

<
http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754452/rand=317667873>

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

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]



Yahoo! Groups Sponsor

ADVERTISEMENT
<http://rd.yahoo.com/M=244522.3707890.4968055.1261774/D=egroupweb/S=17050071
83:HM/A=1595054/R=0/SIG=124ukap9t/*http://ashnin.com/clk/muryutaitakenattogy
o?YH=3707890
<http://rd.yahoo.com/M=244522.3707890.4968055.1261774/D=egroupweb/S=17050071
83:HM/A=1595054/R=0/SIG=124ukap9t/*http://ashnin.com/clk/muryutaitakenattogy
o?YH=3707890&yhad=1595054> &yhad=1595054> Click Here!

<http://us.adserver.yahoo.com/l?M=244522.3707890.4968055.1261774/D=egroupmai
l/S=:HM/A=1595054/rand=232082774>

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

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]



Yahoo! Groups Sponsor

<http://rd.yahoo.com/M=259395.3614674.4902533.1261774/D=egroupweb/S=17050071
83:HM/A=1524963/R=0/SIG=12o885gmo/*http://hits.411web.com/cgi-bin/autoredir?
camp=556&lineid=3614674&prop=egroupweb&pos=HM>

<http://us.adserver.yahoo.com/l?M=259395.3614674.4902533.1261774/D=egroupmai
l/S=:HM/A=1524963/rand=737610747>

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

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]
I have it installed right on the C drive (no drive mapping) and share out
the Epic52 folder. Just skip the step of installing the Progress client
networking when you install the Vantage client. This works for 5.2, I’m not
sure about 6.0



-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 8:56 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro



true, that also may have had something to do with it, I believe I tried
installing the client through the c drive at first by accident (which was
dumb of me); however I later realized my error and did a reinstall with it
through a mapped V drive.. but yes you can have server and client on the
same machine running (I even believe Epicor recommends this but don't quote
me on that).

Anyways, per my previous email I did get it fixed, thanks for the input
though. I appreciate it.

Jessee Holmes

-----Original Message-----
From: Todd Caughey [mailto:caugheyt@...]
Sent: Friday, October 10, 2003 8:37 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Are you using a physical drive letter or a drive letter mapped to the
folder? Wasn't there some issue about client on same system having to use a
mapped reference? Or was it the other way around...? Just a wild guess.
-Todd C.

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 8:28 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Andy,

Thanks for the reply.

My database runs perfectly through the progress explorer tool, no problems
there, starts right up and everything seems to run.

I install my client and then try to click on one of the desktop icons .. and
the system comes up with the browsing dialog trying to look for the files
the icons link to (mfg files in the mfgsys60 folder). The system cant find
the mfg files and then asks me if I want to delete the shortcuts.

Any idea here?

Jessee Holmes

-----Original Message-----
From: Andy Berg [mailto:andy.berg@...]
Sent: Friday, October 10, 2003 7:59 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Vantage 6.0 Server Install on XP Pro


Jessee,



I have Vantage 5.2 / Progress 9.1d server and client running on an XP
laptop. I use it to test patches, utilities and update our database over the
weekends. The progress explorer tools would only work with w2k so I use the
procontrol utility to start and stop the database. See document 2350MPS



Andy Berg

National Tube Form

260-478-2363 ext 211

-----Original Message-----
From: Jessee Holmes [mailto:jholmes@...]
Sent: Friday, October 10, 2003 7:34 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage 6.0 Server Install on XP Pro



Has anyone ever tried installing Vantage 6.0 Server on a Windows XP
machine?

I have recently tried this and found that it does not work (the mfg files
are never created.)

I called tech support and they told me that this was because Vantage 6.0
Server does not work on XP Pro; however, that it works on EVERY other O/S
out there.

Anyone ever come across this problem; and more importantly, anyone figure
out a way to fix it?

The tech support guy told me that for some people it works and for some it
doesn't, but they are unsure as to why it works half/half.

Thanks for any incite into this issue,
Jessee Holmes
Stremel Manufacturing Company

P.S. the only reason im installing this on XP Pro cause we're testing
something, I would never install for a live environment on a desktop O/S.
Just in case anyone is wondering.


[Non-text portions of this message have been removed]






Yahoo! Groups Sponsor



ADVERTISEMENT

<
http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754451/R=0/SIG=11tmlldst/*http:/www.netflix.com/Default?mqso=601783
23&partid=4024216> click here



<
http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754451/rand=689924467>


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

Your use of Yahoo! Groups is subject to the Yahoo!
< http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT

<
http://rd.yahoo.com/M=251812.4024216.5238180.1261774/D=egroupweb/S=17050071
83:HM/A=1754452/R=0/SIG=11tadqrng/*
http://www.netflix.com/Default?mqso=60178
324&partid=4024216> click here

<
http://us.adserver.yahoo.com/l?M=251812.4024216.5238180.1261774/D=egroupmai
l/S=:HM/A=1754452/rand=317667873>

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

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]



Yahoo! Groups Sponsor

ADVERTISEMENT
<http://rd.yahoo.com/M=244522.3707890.4968055.1261774/D=egroupweb/S=17050071
83:HM/A=1595054/R=0/SIG=124ukap9t/*http://ashnin.com/clk/muryutaitakenattogy
o?YH=3707890
<http://rd.yahoo.com/M=244522.3707890.4968055.1261774/D=egroupweb/S=17050071
83:HM/A=1595054/R=0/SIG=124ukap9t/*http://ashnin.com/clk/muryutaitakenattogy
o?YH=3707890&yhad=1595054> &yhad=1595054> Click Here!

<http://us.adserver.yahoo.com/l?M=244522.3707890.4968055.1261774/D=egroupmai
l/S=:HM/A=1595054/rand=232082774>

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

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]



Yahoo! Groups Sponsor

<http://rd.yahoo.com/M=259395.3614674.4902533.1261774/D=egroupweb/S=17050071
83:HM/A=1524963/R=0/SIG=12o885gmo/*http://hits.411web.com/cgi-bin/autoredir?
camp=556&lineid=3614674&prop=egroupweb&pos=HM>

<http://us.adserver.yahoo.com/l?M=259395.3614674.4902533.1261774/D=egroupmai
l/S=:HM/A=1524963/rand=737610747>

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

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]






Yahoo! Groups Sponsor



<http://rd.yahoo.com/M=259395.3614674.4902533.1261774/D=egroupweb/S=17050071
83:HM/A=1524963/R=0/SIG=12o885gmo/*http:/hits.411web.com/cgi-bin/autoredir?c
amp=556&lineid=3614674∝=egroupweb&pos=HM>



<http://us.adserver.yahoo.com/l?M=259395.3614674.4902533.1261774/D=egroupmai
l/S=:HM/A=1524963/rand=999061884>


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

Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.



[Non-text portions of this message have been removed]