473,385 Members | 1,338 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Is there an Intellisense Object?

I am working on a custom app that has similar functionality as Intellisense
but it does not use the Intellisense object.

Can you use the Intellisense object? Has anyone done it? Any documentation
(google has failed me on this so far)?

thanks,

lee
Nov 17 '05 #1
7 1278
What kind of application is it? Are you just looking for word
completion or are you developing a custom IDE for programming?

Either case, you would need a dictionary of available "phrases", then
in the OnKeypress (or similar) event you would need to check for
partial matchesand display the nearest match.

Intellisense, for the most part and from my understanding, has its
cache of objects and methods. You can add to this by assigning
parameters and using reflection in your libraries so that Intellisense
picks it up as you use it. (Which is what happens with MS core
libraries and Namespaces, at least with .Net.)

Nov 17 '05 #2
It is for word completion.

I've got the class library and first pass of the application built and
working using all custom code. It pretty much does what you mention. I was
thinking a better way might be to use the Intelliense object. I've found
some help on modifying the class stucture for use in VS, but I'm looking to
use it in a stand-alone application.
thanks,

lee

"gmiley" <gm****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
What kind of application is it? Are you just looking for word
completion or are you developing a custom IDE for programming?

Either case, you would need a dictionary of available "phrases", then
in the OnKeypress (or similar) event you would need to check for
partial matchesand display the nearest match.

Intellisense, for the most part and from my understanding, has its
cache of objects and methods. You can add to this by assigning
parameters and using reflection in your libraries so that Intellisense
picks it up as you use it. (Which is what happens with MS core
libraries and Namespaces, at least with .Net.)

Nov 17 '05 #3
Have you considered using Smart Tags?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:e8**************@TK2MSFTNGP14.phx.gbl...
It is for word completion.

I've got the class library and first pass of the application built and
working using all custom code. It pretty much does what you mention. I was
thinking a better way might be to use the Intelliense object. I've found
some help on modifying the class stucture for use in VS, but I'm looking
to use it in a stand-alone application.
thanks,

lee

"gmiley" <gm****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
What kind of application is it? Are you just looking for word
completion or are you developing a custom IDE for programming?

Either case, you would need a dictionary of available "phrases", then
in the OnKeypress (or similar) event you would need to check for
partial matchesand display the nearest match.

Intellisense, for the most part and from my understanding, has its
cache of objects and methods. You can add to this by assigning
parameters and using reflection in your libraries so that Intellisense
picks it up as you use it. (Which is what happens with MS core
libraries and Namespaces, at least with .Net.)


Nov 17 '05 #4
Heard about them way back when and promptly forgot about them ;)

Not everyone that will need this application will have Office XP (actually
I'm the only one in the group that does not have it. I'm the 'standard
corporate desktop' testing guy on this team ;) But Smart Tags do look
promising. All I would need to do is build the XML files that define the
class structure and then point Word to the XML files?

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:Oc**************@TK2MSFTNGP10.phx.gbl...
Have you considered using Smart Tags?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:e8**************@TK2MSFTNGP14.phx.gbl...
It is for word completion.

I've got the class library and first pass of the application built and
working using all custom code. It pretty much does what you mention. I
was thinking a better way might be to use the Intelliense object. I've
found some help on modifying the class stucture for use in VS, but I'm
looking to use it in a stand-alone application.
thanks,

lee

"gmiley" <gm****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
What kind of application is it? Are you just looking for word
completion or are you developing a custom IDE for programming?

Either case, you would need a dictionary of available "phrases", then
in the OnKeypress (or similar) event you would need to check for
partial matchesand display the nearest match.

Intellisense, for the most part and from my understanding, has its
cache of objects and methods. You can add to this by assigning
parameters and using reflection in your libraries so that Intellisense
picks it up as you use it. (Which is what happens with MS core
libraries and Namespaces, at least with .Net.)



Nov 17 '05 #5
As I understand it yes, SmartTags could prove an ideal solution and may even
become more useful when integrated with a Research Task Pane or the
Information Bridge Framework. I've been developing a series of hosted
services that will require the use of those implementations so I put a bit
of time evaluating the possibilities.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:u4**************@tk2msftngp13.phx.gbl...
Heard about them way back when and promptly forgot about them ;)

Not everyone that will need this application will have Office XP (actually
I'm the only one in the group that does not have it. I'm the 'standard
corporate desktop' testing guy on this team ;) But Smart Tags do look
promising. All I would need to do is build the XML files that define the
class structure and then point Word to the XML files?

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:Oc**************@TK2MSFTNGP10.phx.gbl...
Have you considered using Smart Tags?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:e8**************@TK2MSFTNGP14.phx.gbl...
It is for word completion.

I've got the class library and first pass of the application built and
working using all custom code. It pretty much does what you mention. I
was thinking a better way might be to use the Intelliense object. I've
found some help on modifying the class stucture for use in VS, but I'm
looking to use it in a stand-alone application.
thanks,

lee

"gmiley" <gm****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
What kind of application is it? Are you just looking for word
completion or are you developing a custom IDE for programming?

Either case, you would need a dictionary of available "phrases", then
in the OnKeypress (or similar) event you would need to check for
partial matchesand display the nearest match.

Intellisense, for the most part and from my understanding, has its
cache of objects and methods. You can add to this by assigning
parameters and using reflection in your libraries so that Intellisense
picks it up as you use it. (Which is what happens with MS core
libraries and Namespaces, at least with .Net.)



Nov 17 '05 #6
Sorry to bother you again, but I have another question once I started
looking into SmartTags.

Is it possible to fire the Smart Tag word completion on the '.' key press?
So far it only looks like it is when you click on the little blue 'i'.

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
As I understand it yes, SmartTags could prove an ideal solution and may
even become more useful when integrated with a Research Task Pane or the
Information Bridge Framework. I've been developing a series of hosted
services that will require the use of those implementations so I put a bit
of time evaluating the possibilities.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:u4**************@tk2msftngp13.phx.gbl...
Heard about them way back when and promptly forgot about them ;)

Not everyone that will need this application will have Office XP
(actually I'm the only one in the group that does not have it. I'm the
'standard corporate desktop' testing guy on this team ;) But Smart Tags
do look promising. All I would need to do is build the XML files that
define the class structure and then point Word to the XML files?

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in
message news:Oc**************@TK2MSFTNGP10.phx.gbl...
Have you considered using Smart Tags?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:e8**************@TK2MSFTNGP14.phx.gbl...
It is for word completion.

I've got the class library and first pass of the application built and
working using all custom code. It pretty much does what you mention. I
was thinking a better way might be to use the Intelliense object. I've
found some help on modifying the class stucture for use in VS, but I'm
looking to use it in a stand-alone application.
thanks,

lee

"gmiley" <gm****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
> What kind of application is it? Are you just looking for word
> completion or are you developing a custom IDE for programming?
>
> Either case, you would need a dictionary of available "phrases", then
> in the OnKeypress (or similar) event you would need to check for
> partial matchesand display the nearest match.
>
> Intellisense, for the most part and from my understanding, has its
> cache of objects and methods. You can add to this by assigning
> parameters and using reflection in your libraries so that Intellisense
> picks it up as you use it. (Which is what happens with MS core
> libraries and Namespaces, at least with .Net.)
>



Nov 17 '05 #7
I think you may be correct but then again perhaps using whatever character
you want may be supported when using the AccessKey property. Try the
following for example...

// Search strategy
google: accesskey site:microsoft.com

//SmartTags newsgroup
news://microsoft.public.office.developer.smarttags
<%= Clinton Gallagher

"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Sorry to bother you again, but I have another question once I started
looking into SmartTags.

Is it possible to fire the Smart Tag word completion on the '.' key press?
So far it only looks like it is when you click on the little blue 'i'.

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:Ol**************@TK2MSFTNGP11.phx.gbl...
As I understand it yes, SmartTags could prove an ideal solution and may
even become more useful when integrated with a Research Task Pane or the
Information Bridge Framework. I've been developing a series of hosted
services that will require the use of those implementations so I put a
bit of time evaluating the possibilities.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:u4**************@tk2msftngp13.phx.gbl...
Heard about them way back when and promptly forgot about them ;)

Not everyone that will need this application will have Office XP
(actually I'm the only one in the group that does not have it. I'm the
'standard corporate desktop' testing guy on this team ;) But Smart Tags
do look promising. All I would need to do is build the XML files that
define the class structure and then point Word to the XML files?

thanks,

lee

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in
message news:Oc**************@TK2MSFTNGP10.phx.gbl...
Have you considered using Smart Tags?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
"Lee Franke" <le********@fnc.fujitsu.com> wrote in message
news:e8**************@TK2MSFTNGP14.phx.gbl...
> It is for word completion.
>
> I've got the class library and first pass of the application built and
> working using all custom code. It pretty much does what you mention. I
> was thinking a better way might be to use the Intelliense object. I've
> found some help on modifying the class stucture for use in VS, but I'm
> looking to use it in a stand-alone application.
>
>
> thanks,
>
> lee
>
> "gmiley" <gm****@gmail.com> wrote in message
> news:11**********************@z14g2000cwz.googlegr oups.com...
>> What kind of application is it? Are you just looking for word
>> completion or are you developing a custom IDE for programming?
>>
>> Either case, you would need a dictionary of available "phrases", then
>> in the OnKeypress (or similar) event you would need to check for
>> partial matchesand display the nearest match.
>>
>> Intellisense, for the most part and from my understanding, has its
>> cache of objects and methods. You can add to this by assigning
>> parameters and using reflection in your libraries so that
>> Intellisense
>> picks it up as you use it. (Which is what happens with MS core
>> libraries and Namespaces, at least with .Net.)
>>
>
>



Nov 17 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: andrew.queisser | last post by:
Yesterday I typed in some C++ code that called a function with two ints. Intellisense (auto-complete) helpfully told me that the first formal parameter was called "frontLight" and the second...
6
by: Arno R | last post by:
Hi, I am just 'playing' a bit with classes these days. I would like to use a few classes in my codelibrary. (mde) I read (and noticed) that you can't use a class directly when the class is...
0
by: Jim | last post by:
I had a strange problem the other day when using Intellisense, and wondering if anyone has any experience with or advice on this... Just to give some quick background, I have a multi-tier...
9
by: Jim Starcher | last post by:
I cannot get the intellisense hints to work on my class constructors. Would you please tell me what I am doing wrong? public class MyObject { //Constructors /// <summary> /// Used to...
2
by: Don | last post by:
I'm having problems with intellisense, autocomplete, etc. suddenly not working in certain classes of a project I'm working on. All the options are set, and it all works fine for most classes, but...
1
by: deathtospam | last post by:
In Visual Studio.NET 2005, I've created a new website ("New Web Site...") and added global.asax to the root directory by right-clicking on the top-level object and selecting "Add New Item... Global...
1
by: Kimmo Laine | last post by:
Hi, is there a way to hide inherited methods from the IntelliSense-menu in VS2005? Lets say that i have the following: internal class MyClass { public const int MAX_COUNT = 10; }
11
by: kimiraikkonen | last post by:
Hi there, I needed to use MouseOver event on Webbrowser which is NOT provided by webbrowser control natively(what a disappointment), so i decided to go with another route to simulate this like: ...
3
by: Travis | last post by:
Hi, I was a user of Visual C# for a while and have gotten used to the Intellisense for that program. I went to try Visual Basic, and the intellisense is so much different. I'll try to make an...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.