Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Missing Paramenter List

Hi!

I am new to programming in Excel 2000 and have the following problem.

if I type the following code

dim rg as range

Set rg = Worksheets(1).Range("B1:B50")

when I type

"rg."

no property list pops up and rg is not a variant

This is happening with many other properties and objects

What is going on?




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Missing Paramenter List

Looks good to me...

This procedures works fine inside a standard module:

Sub test()
Dim rg As Range

Set rg = Worksheets(1).Range("B1:B50")

rg.Select
End Sub


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"Jess" wrote in message
...
Hi!

I am new to programming in Excel 2000 and have the following problem.

if I type the following code

dim rg as range

Set rg = Worksheets(1).Range("B1:B50")

when I type

"rg."

no property list pops up and rg is not a variant

This is happening with many other properties and objects

What is going on?






  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 60
Default Missing Paramenter List

Rob,

this is not what I am asking for. I just want to know why the property list
for the rg object is not automatically displayed when I type "rg."

These two sentences make rg an range-type object

Dim rg As Range
Set rg = Worksheets(1).Range("B1:B50")

Therefore, should display automacally the property list for the range object
when I type "rg."

Thanks



"Rob van Gelder" wrote:

Looks good to me...

This procedures works fine inside a standard module:

Sub test()
Dim rg As Range

Set rg = Worksheets(1).Range("B1:B50")

rg.Select
End Sub


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"Jess" wrote in message
...
Hi!

I am new to programming in Excel 2000 and have the following problem.

if I type the following code

dim rg as range

Set rg = Worksheets(1).Range("B1:B50")

when I type

"rg."

no property list pops up and rg is not a variant

This is happening with many other properties and objects

What is going on?







  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Missing Paramenter List

Sorry - I should have been clearer with my response.

With the code I replied with, when I typed the fullstop in rg.Select,
Intellisense displayed the property list.

I don't think it's your code, but something external to that code block
interfering.
Try to put that code block into a new workbook and see what happens.


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"Jess" wrote in message
...
Rob,

this is not what I am asking for. I just want to know why the property
list
for the rg object is not automatically displayed when I type "rg."

These two sentences make rg an range-type object

Dim rg As Range
Set rg = Worksheets(1).Range("B1:B50")

Therefore, should display automacally the property list for the range
object
when I type "rg."

Thanks



"Rob van Gelder" wrote:

Looks good to me...

This procedures works fine inside a standard module:

Sub test()
Dim rg As Range

Set rg = Worksheets(1).Range("B1:B50")

rg.Select
End Sub


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"Jess" wrote in message
...
Hi!

I am new to programming in Excel 2000 and have the following problem.

if I type the following code

dim rg as range

Set rg = Worksheets(1).Range("B1:B50")

when I type

"rg."

no property list pops up and rg is not a variant

This is happening with many other properties and objects

What is going on?









  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,120
Default Missing Paramenter List

Jess,

Do you have it enabled?

In VBA, go to the ToolsOptions, then on the Editor tab. There, check that
"Auto Data Tips" is checked.


--
HTH

-------

Bob Phillips
"Jess" wrote in message
...
Hi!

I am new to programming in Excel 2000 and have the following problem.

if I type the following code

dim rg as range

Set rg = Worksheets(1).Range("B1:B50")

when I type

"rg."

no property list pops up and rg is not a variant

This is happening with many other properties and objects

What is going on?








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
How can I extract a list of numbers missing in a list? Nancy New Users to Excel 2 January 28th 10 11:18 PM
Comparing List A to List B and add what's missing from List B Gilbert Excel Discussion (Misc queries) 2 July 20th 09 11:18 PM
Comparing List A to List B and add what's missing from List B Gilbert Excel Discussion (Misc queries) 1 July 20th 09 08:41 PM
Asterisk is missing from list jlclyde Excel Discussion (Misc queries) 2 July 14th 08 07:13 PM
Missing Text in a List Box [email protected] Excel Discussion (Misc queries) 0 July 18th 06 08:17 PM


All times are GMT +1. The time now is 03:42 PM.

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

About Us

"It's about Microsoft Excel"