Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default RefEdit control by 3rd party or other option?

I'm working with a developer and we need to use the RefEdit control (.NET
application) but it seems that it's not supported in the COM Add-In:
http://support.microsoft.com/default...b;en-us;281542

Suggestions/recommendations on obtaining this functionality another way?

Toby Erkson
Windows XP, Excel 2003


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default RefEdit control by 3rd party or other option?

If there is a 3rd party control that does that, I am not aware of one.

within excel you can use

Dim rng as Range
On Error Resume Next
set rng = Application.InputBox("Select cell with mouse",type:=8)
On Error goto 0
if rng is nothing then
msgbox "You clicked cancel"
exit sub
end if

msgbox "range selected is " & rng.Address(0,0,,true)

--
Regards,
Tom Ogilvy

"T. Erkson" wrote in message
...
I'm working with a developer and we need to use the RefEdit control (.NET
application) but it seems that it's not supported in the COM Add-In:
http://support.microsoft.com/default...b;en-us;281542

Suggestions/recommendations on obtaining this functionality another way?

Toby Erkson
Windows XP, Excel 2003




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default RefEdit control by 3rd party or other option?

Thanks Tom!

"Tom Ogilvy" wrote in message
...
If there is a 3rd party control that does that, I am not aware of one.

within excel you can use

Dim rng as Range
On Error Resume Next
set rng = Application.InputBox("Select cell with mouse",type:=8)
On Error goto 0
if rng is nothing then
msgbox "You clicked cancel"
exit sub
end if

msgbox "range selected is " & rng.Address(0,0,,true)

--
Regards,
Tom Ogilvy

"T. Erkson" wrote in message
...
I'm working with a developer and we need to use the RefEdit control

(.NET
application) but it seems that it's not supported in the COM Add-In:
http://support.microsoft.com/default...b;en-us;281542

Suggestions/recommendations on obtaining this functionality another way?

Toby Erkson
Windows XP, Excel 2003






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
RefEdit ActiveX control Simon Shaw[_5_] Excel Programming 1 February 15th 05 05:44 PM
RefEdit control Tim[_39_] Excel Programming 2 August 10th 04 07:02 PM
Help: Looking for the replacement of RefEdit control Jerry Louis Excel Programming 2 April 21st 04 02:15 AM
Shift-Control Arrow and RefEdit Control? Ariel[_2_] Excel Programming 12 January 6th 04 11:10 PM
RefEdit control bug Dag Johansen[_6_] Excel Programming 1 October 20th 03 12:32 PM


All times are GMT +1. The time now is 10:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"