|
-
May 21st, 2008, 10:30 AM
#1
-
May 21st, 2008, 10:51 AM
#2
Re: Ideas to break a huge form into smaller ones
I'm facing a similar problem. Previous programmer named his controls txtFields(0), txtFields(87), txtFields(2), txtFields(66), txtFields(11)... It's killing me. The hardest part of the job is to rename theme.
So i would be happy to hear of some add-in that can help me a little too
-
May 21st, 2008, 10:58 AM
#3
Re: Ideas to break a huge form into smaller ones
 Originally Posted by gavio
txtFields(0), txtFields(87), txtFields(2), txtFields(66), txtFields(11)... 
EXACTLY same thing happned here. 
...and he added 'Me' keyword before EVERY control without any reason.
Code:
Me.txtFields(39).Text = Me.chkLedger.Value
-
May 21st, 2008, 12:13 PM
#4
Re: Ideas to break a huge form into smaller ones
 Originally Posted by gavio
I'm facing a similar problem. Previous programmer named his controls txtFields(0), txtFields(87), txtFields(2), txtFields(66), txtFields(11)...  It's killing me. The hardest part of the job is to rename theme.
So i would be happy to hear of some add-in that can help me a little too 
One thing short of reworking everything might be to set up some public variable to control them. For example if txtFields(0) is last name set up
LastName = 0 and globally change them everywhere to txtFields(LastName).
That might be better then a rewrite.
-
May 21st, 2008, 01:24 PM
#5
Re: Ideas to break a huge form into smaller ones
It's not that hard - it's just a pain in the... Specially since you haven't done anything wrong and you must be correcting such other people's stupid work habits.
-
May 22nd, 2008, 01:25 PM
#6
Re: Ideas to break a huge form into smaller ones
We have decided to build 3 new forms from scratch. We figured that it will take less time and a lot less headache.
Thanks to everyone for posting.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|