Hi,

I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
possible to have a shortcut on my desktop that launches a specific project
in the development environment? That way I could have a shortcut to each
project that would have the correct startup folder and all. Does that make
sense? Is it possible? How do you handle developing multiple projects on
the same system?

Thanks in advanced,
Linn

Re: Usability question? by Josh

Josh
Tue Aug 15 16:58:55 CDT 2006

I use project files
I have a project hook that changes the current directory to the project's home

There's also a few project managers on the UT

On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler" <lkubler@chartwellwisc2.com>
wrote:

>Hi,
>
>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>possible to have a shortcut on my desktop that launches a specific project
>in the development environment? That way I could have a shortcut to each
>project that would have the correct startup folder and all. Does that make
>sense? Is it possible? How do you handle developing multiple projects on
>the same system?
>
>Thanks in advanced,
>Linn
>


--- AntiSpam/harvest ---
Remove X's to send email to me.

Re: Usability question? by Stefan

Stefan
Tue Aug 15 17:12:28 CDT 2006


"Linn Kubler" <lkubler@chartwellwisc2.com> schrieb im Newsbeitrag
news:uxYgp%23KwGHA.3936@TK2MSFTNGP04.phx.gbl...
> Hi,
>
> I'm developing multiple projects in VFP 9.0 and I'm wondering if it is possible to
> have a shortcut on my desktop that launches a specific project in the development
> environment? That way I could have a shortcut to each project that would have the
> correct startup folder and all. Does that make sense? Is it possible? How do you
> handle developing multiple projects on the same system?

Hi Linn,

You can add a -C parameter to each of your desktop shortcuts,
each pointing to a different, project specific Config.FPW file.
Those Config.FPW files cab contain lines like
Resource=x:\myProjects\foo\foxuser.dbf
Command=Modify Project foo.PJX

Then optionally do all required IDE settings etc. in
yourProjectHook.Init()

Or alternatively use a
Command=Do myDevStart.PRG
and do your settings there.


hth
-Stefan



--
|\_/| ------ ProLib - programmers liberty -----------------
(.. ) Our MVPs and MCPs make the Fox run....
- / See us at www.prolib.de or www.AFPages.de
-----------------------------------------------------------


Re: Usability question? by Linn

Linn
Wed Aug 16 09:56:36 CDT 2006

Ok, this looks promissing but I've never used Projecthooks. Do I have to
create a new projecthook class for each different project? If so, how do I
create one?

How do you access the properties, methods and events for a projecthook? I'm
assuming, as Stefan mentioned, that I would put the "set default to..."
command in the projecthook.init() event.

Thanks,
Linn

"Josh Assing" <XjoshX@jassing.com> wrote in message
news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>I use project files
> I have a project hook that changes the current directory to the project's
> home
>
> There's also a few project managers on the UT
>
> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
> <lkubler@chartwellwisc2.com>
> wrote:
>
>>Hi,
>>
>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>>possible to have a shortcut on my desktop that launches a specific project
>>in the development environment? That way I could have a shortcut to each
>>project that would have the correct startup folder and all. Does that
>>make
>>sense? Is it possible? How do you handle developing multiple projects on
>>the same system?
>>
>>Thanks in advanced,
>>Linn
>>
>
>
> --- AntiSpam/harvest ---
> Remove X's to send email to me.



Re: Usability question? by Linn

Linn
Wed Aug 16 10:35:04 CDT 2006

Hmm... Ok, I thought I figured this out... I went into the Class Tab of my
project, created a new class based on the ProjectHook class. Next, I went
into the Project Information dialog box and selected the Project tab. There
I put a check mark into the Project Class and specified my new class.

I closed the project and openned it again, no errors so it looked good.
Then I went to the Classes tab and tried to modify my new projecthook class
and it won't let me cause it is being used by the Project and is loaded into
memory.

Am I barking up the wrong tree here? Do I have to remove the projecthook
from the Project Information dialog box each time I want to modify it? I
suppose I could close the project and modify the projecthook class from the
command window, looks like that works.

I'm still learning this tool so please bear with me as I pick up new tricks.

Thanks,
Linn

"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
news:udDLtQUwGHA.3588@TK2MSFTNGP04.phx.gbl...
> Ok, this looks promissing but I've never used Projecthooks. Do I have to
> create a new projecthook class for each different project? If so, how do
> I create one?
>
> How do you access the properties, methods and events for a projecthook?
> I'm assuming, as Stefan mentioned, that I would put the "set default
> to..." command in the projecthook.init() event.
>
> Thanks,
> Linn
>
> "Josh Assing" <XjoshX@jassing.com> wrote in message
> news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>>I use project files
>> I have a project hook that changes the current directory to the project's
>> home
>>
>> There's also a few project managers on the UT
>>
>> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
>> <lkubler@chartwellwisc2.com>
>> wrote:
>>
>>>Hi,
>>>
>>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>>>possible to have a shortcut on my desktop that launches a specific
>>>project
>>>in the development environment? That way I could have a shortcut to each
>>>project that would have the correct startup folder and all. Does that
>>>make
>>>sense? Is it possible? How do you handle developing multiple projects
>>>on
>>>the same system?
>>>
>>>Thanks in advanced,
>>>Linn
>>>
>>
>>
>> --- AntiSpam/harvest ---
>> Remove X's to send email to me.
>
>



Re: Usability question? by Josh

Josh
Wed Aug 16 11:16:00 CDT 2006

well duh! (sorry)

can you modify ANY class that's in use? no.

Close your project that is currently using that project class
now use modify class <project class> and poke around!

You're almost there!

My project class does a lot of stuff:
Backs up source files before editing
zips up the entire project to a zipfile (unique data/time stamp) after a
successful build
changes to the PJX's home directory on activation & on close, returns to the
initial directory.

You can do a lot of stuff in the hook!

Enjoy!


On Wed, 16 Aug 2006 10:35:04 -0500, "Linn Kubler" <lkubler@chartwellwisc2.com>
wrote:

>Hmm... Ok, I thought I figured this out... I went into the Class Tab of my
>project, created a new class based on the ProjectHook class. Next, I went
>into the Project Information dialog box and selected the Project tab. There
>I put a check mark into the Project Class and specified my new class.
>
>I closed the project and openned it again, no errors so it looked good.
>Then I went to the Classes tab and tried to modify my new projecthook class
>and it won't let me cause it is being used by the Project and is loaded into
>memory.
>
>Am I barking up the wrong tree here? Do I have to remove the projecthook
>from the Project Information dialog box each time I want to modify it? I
>suppose I could close the project and modify the projecthook class from the
>command window, looks like that works.
>
>I'm still learning this tool so please bear with me as I pick up new tricks.
>
>Thanks,
>Linn
>
>"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
>news:udDLtQUwGHA.3588@TK2MSFTNGP04.phx.gbl...
>> Ok, this looks promissing but I've never used Projecthooks. Do I have to
>> create a new projecthook class for each different project? If so, how do
>> I create one?
>>
>> How do you access the properties, methods and events for a projecthook?
>> I'm assuming, as Stefan mentioned, that I would put the "set default
>> to..." command in the projecthook.init() event.
>>
>> Thanks,
>> Linn
>>
>> "Josh Assing" <XjoshX@jassing.com> wrote in message
>> news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>>>I use project files
>>> I have a project hook that changes the current directory to the project's
>>> home
>>>
>>> There's also a few project managers on the UT
>>>
>>> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
>>> <lkubler@chartwellwisc2.com>
>>> wrote:
>>>
>>>>Hi,
>>>>
>>>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>>>>possible to have a shortcut on my desktop that launches a specific
>>>>project
>>>>in the development environment? That way I could have a shortcut to each
>>>>project that would have the correct startup folder and all. Does that
>>>>make
>>>>sense? Is it possible? How do you handle developing multiple projects
>>>>on
>>>>the same system?
>>>>
>>>>Thanks in advanced,
>>>>Linn
>>>>
>>>
>>>
>>> --- AntiSpam/harvest ---
>>> Remove X's to send email to me.
>>
>>
>


--- AntiSpam/harvest ---
Remove X's to send email to me.

Re: Usability question? by Craig

Craig
Wed Aug 16 11:21:40 CDT 2006

Another option, and one I find MUCH more useful than multiple Fox heads
floating around my desktop.

Select Tools > Taskpane then select Environment Manager from the Taskpane
Toolbar.

You only need one Fox and then select the environment you want. Everything
will get setup how you need it for that project.

--
Craig Berntson
MCSD, Visual FoxPro MVP
www.craigberntson.com
Salt Lake City Fox User Group
www.slcfox.org
www.foxcentral.net


"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
news:uxYgp%23KwGHA.3936@TK2MSFTNGP04.phx.gbl...
> Hi,
>
> I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
> possible to have a shortcut on my desktop that launches a specific project
> in the development environment? That way I could have a shortcut to each
> project that would have the correct startup folder and all. Does that
> make sense? Is it possible? How do you handle developing multiple
> projects on the same system?
>
> Thanks in advanced,
> Linn
>
>



Re: Usability question? by Carlos

Carlos
Wed Aug 16 15:17:19 CDT 2006


"Linn Kubler" <lkubler@chartwellwisc2.com> escribió en el mensaje
news:uxYgp%23KwGHA.3936@TK2MSFTNGP04.phx.gbl...
> Hi,
>
> I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
> possible to have a shortcut on my desktop that launches a specific project
> in the development environment? That way I could have a shortcut to each
> project that would have the correct startup folder and all. Does that
> make sense? Is it possible? How do you handle developing multiple
> projects on the same system?
>
> Thanks in advanced,
> Linn
>
>

Tools - Task Pane - Environment Manager

"The Environment Manager is where you can organize environment settings into
groups and associate projects with them. When you select a project from
here, the environment settings will execute before the project opens."

--
Carlos Alloatti




Re: Usability question? by Linn

Linn
Thu Aug 17 09:23:27 CDT 2006

Oh cool, that's new too. From looking at it though, it looks like I have to
manually select the Environment associated with the project I want to launch
before opening the project, or am I miss-understanding how this works?

It looks like the directions say it will set the environment when you open
the project but it doesn't appear to actually work that way. Unless I'm
doing something wrong.

Thanks,
Linn

"Craig Berntson" <iamcraig@iamcraigberntson.com> wrote in message
news:uIv1PAVwGHA.2204@TK2MSFTNGP03.phx.gbl...
> Another option, and one I find MUCH more useful than multiple Fox heads
> floating around my desktop.
>
> Select Tools > Taskpane then select Environment Manager from the Taskpane
> Toolbar.
>
> You only need one Fox and then select the environment you want. Everything
> will get setup how you need it for that project.
>
> --
> Craig Berntson
> MCSD, Visual FoxPro MVP
> www.craigberntson.com
> Salt Lake City Fox User Group
> www.slcfox.org
> www.foxcentral.net
>
>
> "Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
> news:uxYgp%23KwGHA.3936@TK2MSFTNGP04.phx.gbl...
>> Hi,
>>
>> I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>> possible to have a shortcut on my desktop that launches a specific
>> project in the development environment? That way I could have a shortcut
>> to each project that would have the correct startup folder and all. Does
>> that make sense? Is it possible? How do you handle developing multiple
>> projects on the same system?
>>
>> Thanks in advanced,
>> Linn
>>
>>
>
>



Re: Usability question? by Linn

Linn
Thu Aug 17 09:27:13 CDT 2006

That's neet. But how does this affect the building of the project? Once I
compile my project does the projecthook get run when I install it on another
machine and execute it? I'm thinking specifically of the "Set Default To"
command, if I set that to my development directories, well, they won't exist
on the client's computer. How is that reconciled?

Thanks,
Linn

"Josh Assing" <XjoshX@jassing.com> wrote in message
news:ukg6e2l3qfejqmspctjk8mbfi4tj0fh96r@4ax.com...
> well duh! (sorry)
>
> can you modify ANY class that's in use? no.
>
> Close your project that is currently using that project class
> now use modify class <project class> and poke around!
>
> You're almost there!
>
> My project class does a lot of stuff:
> Backs up source files before editing
> zips up the entire project to a zipfile (unique data/time stamp) after a
> successful build
> changes to the PJX's home directory on activation & on close, returns to
> the
> initial directory.
>
> You can do a lot of stuff in the hook!
>
> Enjoy!
>
>
> On Wed, 16 Aug 2006 10:35:04 -0500, "Linn Kubler"
> <lkubler@chartwellwisc2.com>
> wrote:
>
>>Hmm... Ok, I thought I figured this out... I went into the Class Tab of
>>my
>>project, created a new class based on the ProjectHook class. Next, I went
>>into the Project Information dialog box and selected the Project tab.
>>There
>>I put a check mark into the Project Class and specified my new class.
>>
>>I closed the project and openned it again, no errors so it looked good.
>>Then I went to the Classes tab and tried to modify my new projecthook
>>class
>>and it won't let me cause it is being used by the Project and is loaded
>>into
>>memory.
>>
>>Am I barking up the wrong tree here? Do I have to remove the projecthook
>>from the Project Information dialog box each time I want to modify it? I
>>suppose I could close the project and modify the projecthook class from
>>the
>>command window, looks like that works.
>>
>>I'm still learning this tool so please bear with me as I pick up new
>>tricks.
>>
>>Thanks,
>>Linn
>>
>>"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
>>news:udDLtQUwGHA.3588@TK2MSFTNGP04.phx.gbl...
>>> Ok, this looks promissing but I've never used Projecthooks. Do I have
>>> to
>>> create a new projecthook class for each different project? If so, how
>>> do
>>> I create one?
>>>
>>> How do you access the properties, methods and events for a projecthook?
>>> I'm assuming, as Stefan mentioned, that I would put the "set default
>>> to..." command in the projecthook.init() event.
>>>
>>> Thanks,
>>> Linn
>>>
>>> "Josh Assing" <XjoshX@jassing.com> wrote in message
>>> news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>>>>I use project files
>>>> I have a project hook that changes the current directory to the
>>>> project's
>>>> home
>>>>
>>>> There's also a few project managers on the UT
>>>>
>>>> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
>>>> <lkubler@chartwellwisc2.com>
>>>> wrote:
>>>>
>>>>>Hi,
>>>>>
>>>>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>>>>>possible to have a shortcut on my desktop that launches a specific
>>>>>project
>>>>>in the development environment? That way I could have a shortcut to
>>>>>each
>>>>>project that would have the correct startup folder and all. Does that
>>>>>make
>>>>>sense? Is it possible? How do you handle developing multiple projects
>>>>>on
>>>>>the same system?
>>>>>
>>>>>Thanks in advanced,
>>>>>Linn
>>>>>
>>>>
>>>>
>>>> --- AntiSpam/harvest ---
>>>> Remove X's to send email to me.
>>>
>>>
>>
>
>
> --- AntiSpam/harvest ---
> Remove X's to send email to me.



Re: Usability question? by Josh

Josh
Thu Aug 17 10:36:33 CDT 2006


the project class gets 'connected' to the pjx, not the resulting exe

On Thu, 17 Aug 2006 09:27:13 -0500, "Linn Kubler" <lkubler@chartwellwisc2.com>
wrote:

>That's neet. But how does this affect the building of the project? Once I
>compile my project does the projecthook get run when I install it on another
>machine and execute it? I'm thinking specifically of the "Set Default To"
>command, if I set that to my development directories, well, they won't exist
>on the client's computer. How is that reconciled?
>
>Thanks,
>Linn
>
>"Josh Assing" <XjoshX@jassing.com> wrote in message
>news:ukg6e2l3qfejqmspctjk8mbfi4tj0fh96r@4ax.com...
>> well duh! (sorry)
>>
>> can you modify ANY class that's in use? no.
>>
>> Close your project that is currently using that project class
>> now use modify class <project class> and poke around!
>>
>> You're almost there!
>>
>> My project class does a lot of stuff:
>> Backs up source files before editing
>> zips up the entire project to a zipfile (unique data/time stamp) after a
>> successful build
>> changes to the PJX's home directory on activation & on close, returns to
>> the
>> initial directory.
>>
>> You can do a lot of stuff in the hook!
>>
>> Enjoy!
>>
>>
>> On Wed, 16 Aug 2006 10:35:04 -0500, "Linn Kubler"
>> <lkubler@chartwellwisc2.com>
>> wrote:
>>
>>>Hmm... Ok, I thought I figured this out... I went into the Class Tab of
>>>my
>>>project, created a new class based on the ProjectHook class. Next, I went
>>>into the Project Information dialog box and selected the Project tab.
>>>There
>>>I put a check mark into the Project Class and specified my new class.
>>>
>>>I closed the project and openned it again, no errors so it looked good.
>>>Then I went to the Classes tab and tried to modify my new projecthook
>>>class
>>>and it won't let me cause it is being used by the Project and is loaded
>>>into
>>>memory.
>>>
>>>Am I barking up the wrong tree here? Do I have to remove the projecthook
>>>from the Project Information dialog box each time I want to modify it? I
>>>suppose I could close the project and modify the projecthook class from
>>>the
>>>command window, looks like that works.
>>>
>>>I'm still learning this tool so please bear with me as I pick up new
>>>tricks.
>>>
>>>Thanks,
>>>Linn
>>>
>>>"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
>>>news:udDLtQUwGHA.3588@TK2MSFTNGP04.phx.gbl...
>>>> Ok, this looks promissing but I've never used Projecthooks. Do I have
>>>> to
>>>> create a new projecthook class for each different project? If so, how
>>>> do
>>>> I create one?
>>>>
>>>> How do you access the properties, methods and events for a projecthook?
>>>> I'm assuming, as Stefan mentioned, that I would put the "set default
>>>> to..." command in the projecthook.init() event.
>>>>
>>>> Thanks,
>>>> Linn
>>>>
>>>> "Josh Assing" <XjoshX@jassing.com> wrote in message
>>>> news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>>>>>I use project files
>>>>> I have a project hook that changes the current directory to the
>>>>> project's
>>>>> home
>>>>>
>>>>> There's also a few project managers on the UT
>>>>>
>>>>> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
>>>>> <lkubler@chartwellwisc2.com>
>>>>> wrote:
>>>>>
>>>>>>Hi,
>>>>>>
>>>>>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it is
>>>>>>possible to have a shortcut on my desktop that launches a specific
>>>>>>project
>>>>>>in the development environment? That way I could have a shortcut to
>>>>>>each
>>>>>>project that would have the correct startup folder and all. Does that
>>>>>>make
>>>>>>sense? Is it possible? How do you handle developing multiple projects
>>>>>>on
>>>>>>the same system?
>>>>>>
>>>>>>Thanks in advanced,
>>>>>>Linn
>>>>>>
>>>>>
>>>>>
>>>>> --- AntiSpam/harvest ---
>>>>> Remove X's to send email to me.
>>>>
>>>>
>>>
>>
>>
>> --- AntiSpam/harvest ---
>> Remove X's to send email to me.
>


--- AntiSpam/harvest ---
Remove X's to send email to me.

Re: Usability question? by Linn

Linn
Fri Aug 18 09:03:35 CDT 2006

I see, makes sense.

Thanks,
Linn

"Josh Assing" <XjoshX@jassing.com> wrote in message
news:pa29e2950se924437k9lk9tl860pbq279p@4ax.com...
>
> the project class gets 'connected' to the pjx, not the resulting exe
>
> On Thu, 17 Aug 2006 09:27:13 -0500, "Linn Kubler"
> <lkubler@chartwellwisc2.com>
> wrote:
>
>>That's neet. But how does this affect the building of the project? Once
>>I
>>compile my project does the projecthook get run when I install it on
>>another
>>machine and execute it? I'm thinking specifically of the "Set Default To"
>>command, if I set that to my development directories, well, they won't
>>exist
>>on the client's computer. How is that reconciled?
>>
>>Thanks,
>>Linn
>>
>>"Josh Assing" <XjoshX@jassing.com> wrote in message
>>news:ukg6e2l3qfejqmspctjk8mbfi4tj0fh96r@4ax.com...
>>> well duh! (sorry)
>>>
>>> can you modify ANY class that's in use? no.
>>>
>>> Close your project that is currently using that project class
>>> now use modify class <project class> and poke around!
>>>
>>> You're almost there!
>>>
>>> My project class does a lot of stuff:
>>> Backs up source files before editing
>>> zips up the entire project to a zipfile (unique data/time stamp) after a
>>> successful build
>>> changes to the PJX's home directory on activation & on close, returns to
>>> the
>>> initial directory.
>>>
>>> You can do a lot of stuff in the hook!
>>>
>>> Enjoy!
>>>
>>>
>>> On Wed, 16 Aug 2006 10:35:04 -0500, "Linn Kubler"
>>> <lkubler@chartwellwisc2.com>
>>> wrote:
>>>
>>>>Hmm... Ok, I thought I figured this out... I went into the Class Tab of
>>>>my
>>>>project, created a new class based on the ProjectHook class. Next, I
>>>>went
>>>>into the Project Information dialog box and selected the Project tab.
>>>>There
>>>>I put a check mark into the Project Class and specified my new class.
>>>>
>>>>I closed the project and openned it again, no errors so it looked good.
>>>>Then I went to the Classes tab and tried to modify my new projecthook
>>>>class
>>>>and it won't let me cause it is being used by the Project and is loaded
>>>>into
>>>>memory.
>>>>
>>>>Am I barking up the wrong tree here? Do I have to remove the
>>>>projecthook
>>>>from the Project Information dialog box each time I want to modify it?
>>>>I
>>>>suppose I could close the project and modify the projecthook class from
>>>>the
>>>>command window, looks like that works.
>>>>
>>>>I'm still learning this tool so please bear with me as I pick up new
>>>>tricks.
>>>>
>>>>Thanks,
>>>>Linn
>>>>
>>>>"Linn Kubler" <lkubler@chartwellwisc2.com> wrote in message
>>>>news:udDLtQUwGHA.3588@TK2MSFTNGP04.phx.gbl...
>>>>> Ok, this looks promissing but I've never used Projecthooks. Do I have
>>>>> to
>>>>> create a new projecthook class for each different project? If so, how
>>>>> do
>>>>> I create one?
>>>>>
>>>>> How do you access the properties, methods and events for a
>>>>> projecthook?
>>>>> I'm assuming, as Stefan mentioned, that I would put the "set default
>>>>> to..." command in the projecthook.init() event.
>>>>>
>>>>> Thanks,
>>>>> Linn
>>>>>
>>>>> "Josh Assing" <XjoshX@jassing.com> wrote in message
>>>>> news:qog4e2h25diaknei1q78ai262fsaj7la86@4ax.com...
>>>>>>I use project files
>>>>>> I have a project hook that changes the current directory to the
>>>>>> project's
>>>>>> home
>>>>>>
>>>>>> There's also a few project managers on the UT
>>>>>>
>>>>>> On Tue, 15 Aug 2006 16:13:29 -0500, "Linn Kubler"
>>>>>> <lkubler@chartwellwisc2.com>
>>>>>> wrote:
>>>>>>
>>>>>>>Hi,
>>>>>>>
>>>>>>>I'm developing multiple projects in VFP 9.0 and I'm wondering if it
>>>>>>>is
>>>>>>>possible to have a shortcut on my desktop that launches a specific
>>>>>>>project
>>>>>>>in the development environment? That way I could have a shortcut to
>>>>>>>each
>>>>>>>project that would have the correct startup folder and all. Does
>>>>>>>that
>>>>>>>make
>>>>>>>sense? Is it possible? How do you handle developing multiple
>>>>>>>projects
>>>>>>>on
>>>>>>>the same system?
>>>>>>>
>>>>>>>Thanks in advanced,
>>>>>>>Linn
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --- AntiSpam/harvest ---
>>>>>> Remove X's to send email to me.
>>>>>
>>>>>
>>>>
>>>
>>>
>>> --- AntiSpam/harvest ---
>>> Remove X's to send email to me.
>>
>
>
> --- AntiSpam/harvest ---
> Remove X's to send email to me.