+ Reply to Thread
Results 1 to 2 of 2

Accessing controls in excel using vbscript

Hybrid View

Guest Accessing controls in excel... 07-06-2005, 03:05 PM
Guest Re: Accessing controls in... 07-06-2005, 03:05 PM
  1. #1
    Suresh
    Guest

    Accessing controls in excel using vbscript

    I have an excel sheet which populates values based on a value selected in a
    combobox. I am using a vbscript code to access this excel and generate an
    html page.

    My requirement is to generate seperate html page based on each value in the
    excel combobox.

    Using vbscript i need to write
    I need to identify the combo list items.
    I need to repopluate the excel for each combo values before generating the
    html

    How can i do this.
    Thanks in advance.

  2. #2
    Tom Ogilvy
    Guest

    Re: Accessing controls in excel using vbscript

    With ActiveSheet.Combobox1
    for i = 0 to .listcount - 1
    v = .list(i)
    ' populate
    next
    End With

    --
    Regards,
    Tom Ogilvy

    "Suresh" <Suresh@discussions.microsoft.com> wrote in message
    news:E88A03D8-710C-435E-9B93-F383050AE432@microsoft.com...
    > I have an excel sheet which populates values based on a value selected in

    a
    > combobox. I am using a vbscript code to access this excel and generate an
    > html page.
    >
    > My requirement is to generate seperate html page based on each value in

    the
    > excel combobox.
    >
    > Using vbscript i need to write
    > I need to identify the combo list items.
    > I need to repopluate the excel for each combo values before generating the
    > html
    >
    > How can i do this.
    > Thanks in advance.




+ 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