CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 13 of 13

Threaded View

  1. #2
    Join Date
    Jan 2004
    Location
    San Diego
    Posts
    148

    Re: Objects names in frames

    Yes. You should be able to reference an object something like the following.
    Code:
    Frame1.txtFile.Value
    Frame1.opt1.Value
    You may need to provide a copy of the code to let us help you find the problem, if these kinds of statements aren't working.

    You may also want to try refering to the object plainly by name. Sometimes the app will know what you are refering to and not need the reference to the frame object as well. i.e.
    Code:
    txtFile.Value
    opt1.Value
    Last edited by NatThoelecke; September 22nd, 2005 at 12:56 PM. Reason: Thought of something else that might help
    Death is life's special way of telling you you're fired.

    For I do not seek to understand in order to believe, but I believe in order to understand. For I believe this: unless I believe, I will not understand. - Anselm of Canterbury (1033–1109)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured