Results 1 to 4 of 4

Thread: tabs

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2002
    Location
    Australia
    Posts
    635

    tabs

    How do I switch tabs in a Windows form control? and how do I retriwve assembly info (version,filename,etc) in a label control?
    A.A. Fussy
    Babya Software Group

  2. #2
    Frenzied Member trisuglow's Avatar
    Join Date
    Jan 2002
    Location
    Horsham, Sussex, UK
    Posts
    1,536
    Here's some stuff for the second part of the question. Can you explain a bit more what you're wanting to do with the Tab switching? I'm not sure I understand what you're asking.

    VB Code:
    1. lblVersionNumber.Text = Application.ProductVersion.ToString
    2.         lblFramework.Text = ".NET " & LCase(GetText("version")) & ":"
    3.         lblFrameworkNumber.Text = System.Environment.Version.ToString()
    This world is not my home. I'm just passing through.

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2002
    Location
    Australia
    Posts
    635
    from one tab to the other via a mainmenu item
    A.A. Fussy
    Babya Software Group

  4. #4
    Frenzied Member trisuglow's Avatar
    Join Date
    Jan 2002
    Location
    Horsham, Sussex, UK
    Posts
    1,536
    Like this?

    TabControl1.SelectedIndex = 1 ' or whichever tab you want to switch to
    This world is not my home. I'm just passing through.

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