On 8/5/2011 3:56 PM, James E Harvey wrote:
> I'm looking for an automated way to add a copyright statement to all the
> forms in a project. Basic information such as my name as author is all I'm
> looking at adding, and I thought it could go in the .init or .load of each
> form.
>
> The documenting wizard doesn't seem to have been designed for this, and I
> kind of remember using something years ago to document another project, but
> my memory is failing me now.
If you've subclassed your forms, then just add it to the base class that
you subclassed.
--
Mike Babcock, MCP
MB Software Solutions, LLC
President, Chief Software Architect
http://mbsoftwaresolutions.com
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/4E3C3FFF.7030206@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
On 8/5/2011 4:12 PM, James E Harvey wrote:
> Sorry, that won't work for me as I do not subclass my forms.
And that's a perfect example of why subclassing should ALWAYS be done.
I'm not talking VCX forms exclusively, to be clear. I'm just talking
about creating a form class and using that. My SCX forms are created
like this:
CREATE FORM c:\dev\myproject\forms\frmMain as frmbase from
c:\dev\myproject\classes\mjbbase.vcx
Sorry for your luck, Jim! You'll have to programatically add the info I
guess.
--
Mike Babcock, MCP
MB Software Solutions, LLC
President, Chief Software Architect
http://mbsoftwaresolutions.com
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/4E3C43CC.8010107@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
On Aug 5, 2011, at 2:26 PM, MB Software Solutions, LLC wrote:
> And that's a perfect example of why subclassing should ALWAYS be done.
> I'm not talking VCX forms exclusively, to be clear. I'm just talking
> about creating a form class and using that.
If the forms are in different files, then the copyright notice will NOT be in the subclass's file.
-- Ed Leafe
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/5D1E9872-A1AE-43D3-9CCB-4AD309E1310C@leafe.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
I'm looking for an automated way to add a copyright statement to all the
forms in a project. Basic information such as my name as author is all I'm
looking at adding, and I thought it could go in the .init or .load of each
form.
The documenting wizard doesn't seem to have been designed for this, and I
kind of remember using something years ago to document another project, but
my memory is failing me now.
James E Harvey
Corresponding Officer/M.I.S.
Hanover Shoe Farms, Inc.
www.hanoverpa.com
jharvey@hanoverpa.com
717-637-8931
fax: 717-637-6766
cell: 717-887-2565
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/072e01cc53a9$d49cb540$7dd61fc0$@hanoverpa.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
> I'm looking for an automated way to add a copyright statement to all
the
> forms in a project. Basic information such as my name as author is
all
> I'm
> looking at adding, and I thought it could go in the .init or .load
of
> each
> form.
Can't you just open the forms up as tables and insert the text string
you want programmatically into the method of your own choosing?
Thanks,
Matthew Jarvis || Business Systems Analyst
IT Department
McKenzie-Willamette Medical Center
1460 G Street, Springfield, OR 97477 || Ph: 541-744-6092 || Fax:
541-744-6145
--------------------------------------------------------------------------
Disclaimer: This electronic message may contain information that is
Proprietary, Confidential, or legally privileged or protected. It
is intended only for the use of the individual(s) and entity named
in the message. If you are not an intended recipient of this
message, please notify the sender immediately and delete the
material from your computer. Do not deliver, distribute or copy
this message and do not disclose its contents or take any action in
reliance on the information it contains.
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/69F310C05DD83C48A84BA3769CE1ECF805786E88@TNTRIEXEVS02.triadhospitals.net
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Sorry, that won't work for me as I do not subclass my forms.
James E Harvey
Corresponding Officer/M.I.S.
Hanover Shoe Farms, Inc.
www.hanoverpa.com
jharvey@hanoverpa.com
717-637-8931
fax: 717-637-6766
cell: 717-887-2565
-----Original Message-----
From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf
Of MB Software Solutions, LLC
Sent: Friday, August 05, 2011 3:10 PM
To: ProFox Email List
Subject: Re: Copyright for vfp code
On 8/5/2011 3:56 PM, James E Harvey wrote:
> I'm looking for an automated way to add a copyright statement to all
> the forms in a project. Basic information such as my name as author
> is all I'm looking at adding, and I thought it could go in the .init
> or .load of each form.
>
> The documenting wizard doesn't seem to have been designed for this,
> and I kind of remember using something years ago to document another
> project, but my memory is failing me now.
If you've subclassed your forms, then just add it to the base class that you
subclassed.
--
Mike Babcock, MCP
MB Software Solutions, LLC
President, Chief Software Architect
http://mbsoftwaresolutions.com
[excessive quoting removed by server]
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/074a01cc53ac$0058c640$010a52c0$@hanoverpa.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Figure out how you want it to appear, then use the scx and see what it looks
like in in the form code.
Then scan thru your project hack each screen in the project to add the
necessary code.
Jerry
-----Original Message-----
From: profox-bounces@leafe.com [mailto:profox-bounces@leafe.com] On Behalf
Of MB Software Solutions,LLC
Sent: Friday, August 05, 2011 2:26 PM
To: ProFox Email List
Subject: Re: Copyright for vfp code
On 8/5/2011 4:12 PM, James E Harvey wrote:
> Sorry, that won't work for me as I do not subclass my forms.
And that's a perfect example of why subclassing should ALWAYS be done.
I'm not talking VCX forms exclusively, to be clear. I'm just talking
about creating a form class and using that. My SCX forms are created
like this:
CREATE FORM c:\dev\myproject\forms\frmMain as frmbase from
c:\dev\myproject\classes\mjbbase.vcx
Sorry for your luck, Jim! You'll have to programatically add the info I
guess.
--
Mike Babcock, MCP
MB Software Solutions, LLC
President, Chief Software Architect
http://mbsoftwaresolutions.com
[excessive quoting removed by server]
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/1283DAEBCC074D6DADD1F03112D1B724@jerryfootePC
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
> Figure out how you want it to appear, then use the scx and see what it
> looks
> like in in the form code.
> Then scan thru your project hack each screen in the project to add the
> necessary code.
> Jerry
>
Oh, and make a BACKUP first.... ;)
Thanks,
Matthew Jarvis || Business Systems Analyst
IT Department
McKenzie-Willamette Medical Center
1460 G Street, Springfield, OR 97477 || Ph: 541-744-6092 || Fax:
541-744-6145
--------------------------------------------------------------------------
Disclaimer: This electronic message may contain information that is
Proprietary, Confidential, or legally privileged or protected. It
is intended only for the use of the individual(s) and entity named
in the message. If you are not an intended recipient of this
message, please notify the sender immediately and delete the
material from your computer. Do not deliver, distribute or copy
this message and do not disclose its contents or take any action in
reliance on the information it contains.
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/69F310C05DD83C48A84BA3769CE1ECF805786EAF@TNTRIEXEVS02.triadhospitals.net
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
On 8/5/2011 4:19 PM, Jerry Foote wrote:
> Figure out how you want it to appear, then use the scx and see what it looks
> like in in the form code.
> Then scan thru your project hack each screen in the project to add the
> necessary code.
Not sure if Rick Schummer's HackCX would be intended for this kind of
thing? (Rick?)
--
Mike Babcock, MCP
MB Software Solutions, LLC
President, Chief Software Architect
http://mbsoftwaresolutions.com
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/4E3C52CC.5050904@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
I put my company logo in the lower left of all of my forms. It looks
nice - that's why I did it.
Jeff
---------------
Jeff Johnson
jeff@san-dc.com
(623) 582-0323
www.san-dc.com
On 08/05/2011 12:56 PM, James E Harvey wrote:
> I'm looking for an automated way to add a copyright statement to all the
> forms in a project. Basic information such as my name as author is all I'm
> looking at adding, and I thought it could go in the .init or .load of each
> form.
>
> The documenting wizard doesn't seem to have been designed for this, and I
> kind of remember using something years ago to document another project, but
> my memory is failing me now.
>
> James E Harvey
> Corresponding Officer/M.I.S.
> Hanover Shoe Farms, Inc.
> www.hanoverpa.com
> jharvey@hanoverpa.com
> 717-637-8931
> fax: 717-637-6766
> cell: 717-887-2565
>
>
[excessive quoting removed by server]
_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/4E3C5815.3060203@san-dc.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.