+ Reply to Thread
Results 1 to 3 of 3

"Frozen columns"

  1. #1
    Tim Lypes
    Guest

    "Frozen columns"

    Hello,

    I do not know the right ms teminologie for that. Maybe you know a column
    that is always visible inside a sheet even if the user scroll to the right
    site of the sheet. I want to set the "frozen" column programmatically with
    vb 2005 and office interop.
    I hope you know what I mean



  2. #2
    Stefi
    Guest

    RE: "Frozen columns"

    Hi Tim,

    If you want to freeze column A, then

    Range("B1").Select
    ActiveWindow.FreezePanes = True

    If you select C1, then columns A and B will be frozen, etc.

    Regards,
    Stefi

    „Tim Lypes” ezt Ã*rta:

    > Hello,
    >
    > I do not know the right ms teminologie for that. Maybe you know a column
    > that is always visible inside a sheet even if the user scroll to the right
    > site of the sheet. I want to set the "frozen" column programmatically with
    > vb 2005 and office interop.
    > I hope you know what I mean
    >
    >
    >


  3. #3
    Charlie
    Guest

    RE: "Frozen columns"

    Another useful command to move the cursor to the frozen corner is

    Cells(ActiveWindow.ActivePane.ScrollRow,
    ActiveWindow.ActivePane.ScrollColumn).Select



    "Stefi" wrote:

    > Hi Tim,
    >
    > If you want to freeze column A, then
    >
    > Range("B1").Select
    > ActiveWindow.FreezePanes = True
    >
    > If you select C1, then columns A and B will be frozen, etc.
    >
    > Regards,
    > Stefi
    >
    > „Tim Lypes” ezt Ã*rta:
    >
    > > Hello,
    > >
    > > I do not know the right ms teminologie for that. Maybe you know a column
    > > that is always visible inside a sheet even if the user scroll to the right
    > > site of the sheet. I want to set the "frozen" column programmatically with
    > > vb 2005 and office interop.
    > > I hope you know what I mean
    > >
    > >
    > >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1