View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Jean-Yves TFELT Jean-Yves TFELT is offline
external usenet poster
 
Posts: 15
Default How to sort buttons

Hi Ray,

I use another scirpt that list all file in the search directory and adds a
hyperlink to open.
If interested, please post back.

Regards
JY

"Ray C" wrote in message
...
I have a VBA loop that reads file names from a directory. In the end I have
a
worksheet with a bunch of filename listed (plus other file info). I also
add
a button on each line that allows me to open the file. It all works
fine...until the user plays around with the sorting...When columns are
sorted, everything gets sorted except the buttons. In other words, after
the
user sorts, the buttons on each line open the wrong files.

Here's the code that adds the button on each line:

sht.Range("AA" & intCurrentLine).Select
With mySheet.Buttons.Add(ActiveCell.Left, ActiveCell.Top,
ActiveCell.Width,
ActiveCell.Height)
.Name = ...
.OnAction = ...
.Characters.Text = ...
End With

This code is inside another bigger loop that reads each file.

Thanks in advance
Ray