Link to home
Start Free TrialLog in
Avatar of mlcktmguy
mlcktmguyFlag for United States of America

asked on

How to reference control array objects generically

In my VB6.0 App I have a Public Sub 'Update_Form_Controls' that I call from each of the dozens of forms in the app.  The purpose of the sub is to make sure that the fonts, foreground colors and various other attributtes are consistent for most of the controls on all of the forms in the app.  We had several developers work on the forms and they didn't always adhere to the standards.  This is a way to clean up without revising each non-standard control individually.  I realize that I take a performance to invoke this on each form but it needs to be done.

Here is some of the Sub's code that I am using for labels:

Public Sub Update_Form_Controls(ByRef frm As Form)
 
  Dim c As Control
  For Each c In frm.Controls
    '
    controlType = Trim(UCase(TypeName(c)))
    controlName = Trim(UCase(c.Name))
    '
    Select Case UCase(TypeName(c))
    Case Is = "LABEL"
        If UCase(Mid(c.Name, 1, 7)) = "LBLVLOW" Or _
           UCase(Mid(c.Name, 1, 6)) = "LBLLOW" Or _
           UCase(Mid(c.Name, 1, 8)) = "LBLVHIGH" Or _
           UCase(Mid(c.Name, 1, 7)) = "LBLHIGH" Or _
           UCase(Mid(c.Name, 1, 6)) = "LBLCDP" Or _
           UCase(Mid(c.Name, 1, 13)) = "LBLDRAFTCOLOR" Or _
           UCase(Mid(c.Name, 1, 11)) = "LBLRFRCOLOR" Or _
           UCase(Mid(c.Name, 1, 13)) = "LBLERRORCOLOR" Or _
           UCase(Mid(c.Name, 1, 11)) = "LBLCDPCOLOR" Or _
           UCase(Mid(c.Name, 1, 11)) = "LBLTRANSFERCAPTION" Or _
           UCase(Mid(c.Name, 1, 16)) = "LBLCOMPLETECOLOR" Then
        Else
          c.BackStyle = 0
    '  certain labels should not be resized or font altered.


As you can see with lables, some of the the controls are execptions and I either don't want to alter the attributes or I want them to have their own unique attributes.  In this example I am identifying the by their names.  To reduce the number of contols on one of the forms I used a control array 'lblfrmDesc' for all of the 35 labels on the form.  Within those 35 labels their are some that I want to handle uniquely.  For example: lblfrmDesc(10) and lblfrmDesc(11) have attributes defined on them that I don't want to change.  I want all of the other labels in the control array to have a tranparent background, but these should be opaque.  I can't figure out how to reference a unique occurrence of a control array in the Public Sub that is used by all of the forms in the system.  If the Sub were private and on the form in question, I would could refer to the controls as lblfrmDesc(10).backstyle but since it is public and I pass the form into it I don't have that option.

How do I reference lblfrmDesc(10).backstyle in my public subroutine?  Gnerally how do I reference a specific element of a control array in my subroutine.
SOLUTION
Avatar of cool12399
cool12399

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mlcktmguy

ASKER

Thanks for the response.  It is almost what I was looking but I re-read my question and see that didn't explain it well.

frm.lblfrmDesc(10) on form 'frmDescription' is one of the fields that had its attributes set correctly at design time.  One of those attributes is backstyle but there are many others that make it non-standard.  Rather than set the attributes in my public subroutine I want to be able to identify frm.lblfrmDesc(10) on form 'frmDescription' and bypass all my standardized atribute logic.  In pseudo code it woulld look like

If this control is on 'frmDescription' and it is occurrence 10 or 11 of label control 'lblfrmDesc' then
    don't do anything
else
    set all of the 'standard' attributes
endif



In my generic subrouitne I want to be able to identify frm.lblfrmDesc(10).BackStyle=12345
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In my experience, i would strongly recommend changing the source forms directly rather than impacting on application performance at runtime especially if as i supsect you have hundreds of controls on any one form... Open a couple up in notepad and see how there are start and end blocks that you can change the properties within.

write a routine to open each form, do a readline into a collection/listbox or similar, then for each line check that the required property is at the required value, save te collection back out to the file.. BTW in this case each control begin and end block will list the control index and its name.

Job done, once only... (you could knock up a quick Add-in to enable this functionality from the design time environment if you need to do this on a regular basis; worth a look)