i have a Visual FoxPro 8.0 app that works perfectly on
computer 1. i copied the source code to a second pc and
now I am getting errors like this "procedure _2b231j80 not
found" when clicking on menu choices. searching for this
procedure i found it in the menu files.

so i copied over new versions of the menu files - mnx,
mpr, etc - recompiled everything and it worked fine for a
bit. but now the errors have started again. help!

nancy

Re: vfp 8.0 menu error by trw7at

trw7at
Tue Nov 25 11:06:50 CST 2003

nancy imib seemed to utter in news:081601c3b361$9b8c03f0$a001280a@phx.gbl:

> i have a Visual FoxPro 8.0 app that works perfectly on
> computer 1. i copied the source code to a second pc and
> now I am getting errors like this "procedure _2b231j80 not
> found" when clicking on menu choices. searching for this
> procedure i found it in the menu files.
>
> so i copied over new versions of the menu files - mnx,
> mpr, etc - recompiled everything and it worked fine for a
> bit. but now the errors have started again. help!
>
> nancy
>

Did you build an APP? An EXE? Did you use InstallShield
to install it on PC #2? There is more to distributing
a VFP application than copying some files onto the target
machine. With more detail, we may be able to see what
step(s) you skipped.

-- TRW
_______________________________________
My e-mail: t r w 7
@ i x . n e t c o m . c o m
_______________________________________

Re: vfp 8.0 menu error by nancy

nancy
Tue Nov 25 22:39:48 CST 2003

hi tim,

as i mentioned in my original email, i am not distributing
the app. i simply copied the source code - project files,
prgs, scxs, mnx, etc, etc. to the second computer. on the
new computer i am trying to run the code by running
main.prg. of course i have checked to make sure the file
attributes haven't been mistakenly set to readonly or
archive or something like that occasionally happens..

thanks,

n.


>-----Original Message-----
>nancy imib seemed to utter in news:081601c3b361$9b8c03f0
$a001280a@phx.gbl:
>
>> i have a Visual FoxPro 8.0 app that works perfectly on
>> computer 1. i copied the source code to a second pc and
>> now I am getting errors like this "procedure _2b231j80
not
>> found" when clicking on menu choices. searching for
this
>> procedure i found it in the menu files.
>>
>> so i copied over new versions of the menu files - mnx,
>> mpr, etc - recompiled everything and it worked fine for
a
>> bit. but now the errors have started again. help!
>>
>> nancy
>>
>
>Did you build an APP? An EXE? Did you use InstallShield
>to install it on PC #2? There is more to distributing
>a VFP application than copying some files onto the target
>machine. With more detail, we may be able to see what
>step(s) you skipped.
>
>-- TRW
>_______________________________________
>My e-mail: t r w 7
> @ i x . n e t c o m . c o m
>_______________________________________
>.
>

Re: vfp 8.0 menu error by trw7at

trw7at
Wed Nov 26 10:56:49 CST 2003

Sorry, it wasn't clear that you had moved your
entire development environment to a new machine and
are trying to develop it there now.

Here are a few things to check:

1) Same version of VFP installed on both machines (including SP)

2) The *entire* development environment is copied to the new PC.

3) Ideally, the files are copied to the same folder as on
the original PC. This avoids errors caused by hard-coded
paths in your code.

4) The database(s) used on the original machine are placed
on the new machine - ideally at the same location.

-- TRW

nancy imib seemed to utter in news:075601c3b3d7$52fa45e0$a401280a@phx.gbl:

> hi tim,
>
> as i mentioned in my original email, i am not distributing
> the app. i simply copied the source code - project files,
> prgs, scxs, mnx, etc, etc. to the second computer. on the
> new computer i am trying to run the code by running
> main.prg. of course i have checked to make sure the file
> attributes haven't been mistakenly set to readonly or
> archive or something like that occasionally happens..

>>-----Original Message-----
>>nancy imib seemed to utter in news:081601c3b361$9b8c03f0
>>$a001280a@phx.gbl:
>>
>>> i have a Visual FoxPro 8.0 app that works perfectly on
>>> computer 1. i copied the source code to a second pc and
>>> now I am getting errors like this "procedure _2b231j80 not
>>> found" when clicking on menu choices. searching for this
>>> procedure i found it in the menu files.
>>>
>>> so i copied over new versions of the menu files - mnx,
>>> mpr, etc - recompiled everything and it worked fine for a
>>> bit. but now the errors have started again. help!
>>>
>>> nancy
>>>
>>
>>Did you build an APP? An EXE? Did you use InstallShield
>>to install it on PC #2? There is more to distributing
>>a VFP application than copying some files onto the target
>>machine. With more detail, we may be able to see what
>>step(s) you skipped.
>>
>>-- TRW
>>_______________________________________
>>My e-mail: t r w 7
>> @ i x . n e t c o m . c o m
>>_______________________________________ .
>>
>



--
_______________________________________
My e-mail: t r w 7
@ i x . n e t c o m . c o m
_______________________________________

Re: vfp 8.0 menu error by Gregory

Gregory
Thu Nov 27 01:32:57 CST 2003

Nancy,

This is an answer on a similar one by Jim Saunders - Microsoft

Hope it helps

_______________Quote from the UT_____________________________
We had a somewhat similar support case where it turned out the MPR file
contained a chr(26), which is an end of file marker, in the middle of the
file. Any procs after that character could not be found. It took us a while
to pin this one down.

>Hi Vim,
>
>First check the mpr file to make sure that procedure _2b231j80 is in the
file, IF it is, step through invoking the menu bar that calls procedure
_2b231j80 and figure out why it isn't in scope.
>
>pamela
>
>>i have a Visual FoxPro 8.0 app that works fine on my PC at home. i copied
the source code to my friend's pc and he is getting tons of errors like this
"procedure _2b231j80 not found" when he clicks on menu choices. we copied
over new version of the menu files - mnx, mpr, etc - and it worked fine for
a bit but now the errors have start again. any suggestions?
Jim Saunders

______________________________________________________________

"nancy imib" <nimib@pacbell.net> wrote in message
news:081601c3b361$9b8c03f0$a001280a@phx.gbl...
> i have a Visual FoxPro 8.0 app that works perfectly on
> computer 1. i copied the source code to a second pc and
> now I am getting errors like this "procedure _2b231j80 not
> found" when clicking on menu choices. searching for this
> procedure i found it in the menu files.
>
> so i copied over new versions of the menu files - mnx,
> mpr, etc - recompiled everything and it worked fine for a
> bit. but now the errors have started again. help!
>
> nancy