Loading an array of frames with controls

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nicolas Poirier

    Loading an array of frames with controls

    I have a frame with index = 0 that contains a button also with an index = 0.

    If I call the functions at run time :
    Load MyFrame(1)
    Load MyButton(1)

    Both buttons are located in MyFrame(0) and MyFrame(1) is empty.

    Is there a way to make the MyButton(1) sit inMyFrame(1) at run time ?

    Thank You
    Nicolas Poirier


  • J French

    #2
    Re: Loading an array of frames with controls

    On Fri, 17 Jun 2005 00:22:11 -0400, "Nicolas Poirier"
    <nicoglycerine@ tlb.sympatico.c a> wrote:
    [color=blue]
    >I have a frame with index = 0 that contains a button also with an index = 0.
    >
    >If I call the functions at run time :
    >Load MyFrame(1)
    >Load MyButton(1)
    >
    >Both buttons are located in MyFrame(0) and MyFrame(1) is empty.
    >
    >Is there a way to make the MyButton(1) sit inMyFrame(1) at run time ?[/color]

    Set MyButton(1).Con tainer = MyFrame(1)


    Comment

    • Rick Rothstein

      #3
      Re: Loading an array of frames with controls

      See... here is a problem when you multi-post instead of cross post. I
      already provided an answer to this question in another newsgroup you
      posted your question to. Please read the following and follow it in the
      future.

      From a post by Jeff Johnson:

      "You have posted this question individually to
      multiple groups. This is called Multiposting
      and it's BAD. Replies made in one group will
      not be visible in the other groups, which may
      cause multiple people to respond to your
      question with the same answer because they
      didn't know someone else had already done it.
      This is a waste of time.

      If you MUST post your message to multiple
      groups, post a single message and select all
      the groups (or type their names manually in
      the Newsgroups field, separated by commas)
      in which you want it to be seen. This is called
      Crossposting and when used properly it is
      GOOD."

      Rick - MVP



      "Nicolas Poirier" <nicoglycerine@ tlb.sympatico.c a> wrote in message
      news:_fsse.9846 $Qr3.1156178@ne ws20.bellglobal .com...[color=blue]
      > I have a frame with index = 0 that contains a button also with an[/color]
      index = 0.[color=blue]
      >
      > If I call the functions at run time :
      > Load MyFrame(1)
      > Load MyButton(1)
      >
      > Both buttons are located in MyFrame(0) and MyFrame(1) is empty.
      >
      > Is there a way to make the MyButton(1) sit inMyFrame(1) at run time ?
      >
      > Thank You
      > Nicolas Poirier
      >
      >[/color]

      Comment

      • Nicolas Poirier

        #4
        Solution worked fine, Thank you :-)


        "J French" <erewhon@nowher e.uk> a écrit dans le message de
        news:42b28189.6 05075076@news.b topenworld.com. ..[color=blue]
        > On Fri, 17 Jun 2005 00:22:11 -0400, "Nicolas Poirier"
        > <nicoglycerine@ tlb.sympatico.c a> wrote:
        >[color=green]
        > >I have a frame with index = 0 that contains a button also with an index =[/color][/color]
        0.[color=blue][color=green]
        > >
        > >If I call the functions at run time :
        > >Load MyFrame(1)
        > >Load MyButton(1)
        > >
        > >Both buttons are located in MyFrame(0) and MyFrame(1) is empty.
        > >
        > >Is there a way to make the MyButton(1) sit inMyFrame(1) at run time ?[/color]
        >
        > Set MyButton(1).Con tainer = MyFrame(1)
        >
        >[/color]


        Comment

        Working...