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

What is Intellisense and where can I learn more about it?

Thank you
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default Intellisense

Did you try google?

http://tinyurl.com/rm997

--
Don Guillett
SalesAid Software

"Sandy" wrote in message
...
What is Intellisense and where can I learn more about it?

Thank you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 163
Default Intellisense

Hi Sandy,

there isn't much to learn about it.

Dim oWrk As Workbook
With oWrk
.[suggestions, intellisense]
End With

Though Excel's demands for precise declaration
are higher as e.g. Word's demands.

Dim oWrk As Workbook
With oWrk
.Worksheets(1).[no suggestions, no intellisense]
End With

As opposite to:

Dim oWrk As Workbook
Dim oSht As Worksheet
Set oSht = oWrk.Worksheets(1)
With oSht
.[suggestions, intellisense]
End With

IMHO
HTH

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Intellisense

.Worksheets(1).[no suggestions, no intellisense]

The reason is that that Item method of Worksheets returns a
generic Object rather than a Worksheet type variable, even though
at run time it will always return a Worksheet object. Poor
typelib design by Microsoft.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Helmut Weber" wrote in message
...
Hi Sandy,

there isn't much to learn about it.

Dim oWrk As Workbook
With oWrk
.[suggestions, intellisense]
End With

Though Excel's demands for precise declaration
are higher as e.g. Word's demands.

Dim oWrk As Workbook
With oWrk
.Worksheets(1).[no suggestions, no intellisense]
End With

As opposite to:

Dim oWrk As Workbook
Dim oSht As Worksheet
Set oSht = oWrk.Worksheets(1)
With oSht
.[suggestions, intellisense]
End With

IMHO
HTH

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"



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
Intellisense [email protected] Excel Worksheet Functions 0 August 16th 06 07:58 PM
Intellisense Stef Excel Worksheet Functions 0 August 16th 06 03:08 PM
Intellisense does not pup up? Ben Excel Programming 2 January 5th 06 02:58 PM
Properties with Intellisense ZootRot Excel Programming 1 February 4th 05 10:46 AM
Sometimes Intellisense, sometimes not Alan Excel Programming 2 May 14th 04 07:54 PM


All times are GMT +1. The time now is 03:35 AM.

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"