473,583 Members | 2,858 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Auto Complete of Variable Names

I would like to find out how to turn on the Auto Complete variable names
feature while editing source code in Visual Studio. It seems to appear on
intermittantly, and when it does the variable list is incomplete or contains
variables that do not even exist in the project being worked on. It seems
like there should be a setting to turn this on and keep it up to date but I
cannot find anything in MSDN. It is also a complete mystery why it only pops
up on rare occassions and is missing the rest of the time.

Thanks
Dave
Nov 17 '05 #1
5 2564
Did you look at Options->Text Editor->All Languages->General?

When IntelliSence acts funny, deleting the .ncb file in the project
directory usually solves the problem.

Hope the helps,
Mark.

"Brakeshoe" wrote:
I would like to find out how to turn on the Auto Complete variable names
feature while editing source code in Visual Studio. It seems to appear on
intermittantly, and when it does the variable list is incomplete or contains
variables that do not even exist in the project being worked on. It seems
like there should be a setting to turn this on and keep it up to date but I
cannot find anything in MSDN. It is also a complete mystery why it only pops
up on rare occassions and is missing the rest of the time.

Thanks
Dave

Nov 17 '05 #2
I do not see Options->Text Editor->All Languages->General. When I go under
the Tools tab in Visual Studio I see an options tab with 3 sections. They
are Windows settings, save options and statement completion options. I am in
Visual Studio 6.0.
Deleting the NCB files did not have any effect, I still do not get auto
complete even when pressing control-space.

"Mark" wrote:
Did you look at Options->Text Editor->All Languages->General?

When IntelliSence acts funny, deleting the .ncb file in the project
directory usually solves the problem.

Hope the helps,
Mark.

"Brakeshoe" wrote:
I would like to find out how to turn on the Auto Complete variable names
feature while editing source code in Visual Studio. It seems to appear on
intermittantly, and when it does the variable list is incomplete or contains
variables that do not even exist in the project being worked on. It seems
like there should be a setting to turn this on and keep it up to date but I
cannot find anything in MSDN. It is also a complete mystery why it only pops
up on rare occassions and is missing the rest of the time.

Thanks
Dave

Nov 17 '05 #3
There still is an option for it on the Editor tab, Statement Completion
Options.

It's time to upgrade. You can download VC++ 8.0 Express for free from MSDN.

Mark.

"Brakeshoe" wrote:
I do not see Options->Text Editor->All Languages->General. When I go under
the Tools tab in Visual Studio I see an options tab with 3 sections. They
are Windows settings, save options and statement completion options. I am in
Visual Studio 6.0.
Deleting the NCB files did not have any effect, I still do not get auto
complete even when pressing control-space.

"Mark" wrote:
Did you look at Options->Text Editor->All Languages->General?

When IntelliSence acts funny, deleting the .ncb file in the project
directory usually solves the problem.

Hope the helps,
Mark.

"Brakeshoe" wrote:
I would like to find out how to turn on the Auto Complete variable names
feature while editing source code in Visual Studio. It seems to appear on
intermittantly, and when it does the variable list is incomplete or contains
variables that do not even exist in the project being worked on. It seems
like there should be a setting to turn this on and keep it up to date but I
cannot find anything in MSDN. It is also a complete mystery why it only pops
up on rare occassions and is missing the rest of the time.

Thanks
Dave

Nov 17 '05 #4
I have all the statement completion options checked on, but it does work. I
do not know if my IT department will allow me to upgrade.

"Mark" wrote:
There still is an option for it on the Editor tab, Statement Completion
Options.

It's time to upgrade. You can download VC++ 8.0 Express for free from MSDN.

Mark.

"Brakeshoe" wrote:
I do not see Options->Text Editor->All Languages->General. When I go under
the Tools tab in Visual Studio I see an options tab with 3 sections. They
are Windows settings, save options and statement completion options. I am in
Visual Studio 6.0.
Deleting the NCB files did not have any effect, I still do not get auto
complete even when pressing control-space.

"Mark" wrote:
Did you look at Options->Text Editor->All Languages->General?

When IntelliSence acts funny, deleting the .ncb file in the project
directory usually solves the problem.

Hope the helps,
Mark.

"Brakeshoe" wrote:

> I would like to find out how to turn on the Auto Complete variable names
> feature while editing source code in Visual Studio. It seems to appear on
> intermittantly, and when it does the variable list is incomplete or contains
> variables that do not even exist in the project being worked on. It seems
> like there should be a setting to turn this on and keep it up to date but I
> cannot find anything in MSDN. It is also a complete mystery why it only pops
> up on rare occassions and is missing the rest of the time.
>
> Thanks
> Dave

Nov 17 '05 #5
>> It's time to upgrade. You can download VC++ 8.0 Express for free from
MSDN.

Which is not compatible with anything before it, so be warned. It will
almost assuredly require you to make changes form any previous code that
worked, and then it might not act as before. For example, in my case, I
can't run my program without it being in Console mode (brings up a Console
screen) or else I get an exception error on exit. This didn't happen in
2003. And there are many REQUIRED syntax changes, EVEN if you use the old
syntax switch. For example, references to handler functions must now be
fully quilfied in managed code. So if you had any code that looked like:

Click += new EventHandler( this, m_Handler ) ;

then if this is in the class myClass you know are REQUIRED to express it
like this:

Click += new EventHandler( this, &myClass::m_Han dler ) ;

Note also the '&' in front of "myClass::m_Han dler".
do not know if my IT department will allow me to upgrade.
They might be afraid of your code no longer working if you do... : )

In a nutshell, the new 2005 is not backwards compatible with any previous
version (except of course 2005 beta...hehe), so upgrade at your own risk!
: )

[==P==]

PS - And if you use a lot of managed code in your legacy code, I recommend
NOT trying to switch over to /clr, and leave it in old syntax mode (which,
like I said, still requires changes from all previous versions). It is quite
mindboggling how many changes need to be made to convert from __gc to /clr.
But note that MS plans to completely remove all __gc syntax functionality
and support in the future, so you're damned if you do, and damned if you
don't... : )
"Brakeshoe" <Br*******@disc ussions.microso ft.com> wrote in message
news:D9******** *************** ***********@mic rosoft.com...I have all the statement completion options checked on, but it does work.
I
do not know if my IT department will allow me to upgrade.

"Mark" wrote:
There still is an option for it on the Editor tab, Statement Completion
Options.

It's time to upgrade. You can download VC++ 8.0 Express for free from
MSDN.

Mark.

"Brakeshoe" wrote:
> I do not see Options->Text Editor->All Languages->General. When I go
> under
> the Tools tab in Visual Studio I see an options tab with 3 sections.
> They
> are Windows settings, save options and statement completion options. I
> am in
> Visual Studio 6.0.
> Deleting the NCB files did not have any effect, I still do not get auto
> complete even when pressing control-space.
>
> "Mark" wrote:
>
> > Did you look at Options->Text Editor->All Languages->General?
> >
> > When IntelliSence acts funny, deleting the .ncb file in the project
> > directory usually solves the problem.
> >
> > Hope the helps,
> > Mark.
> >
> > "Brakeshoe" wrote:
> >
> > > I would like to find out how to turn on the Auto Complete variable
> > > names
> > > feature while editing source code in Visual Studio. It seems to
> > > appear on
> > > intermittantly, and when it does the variable list is incomplete or
> > > contains
> > > variables that do not even exist in the project being worked on.
> > > It seems
> > > like there should be a setting to turn this on and keep it up to
> > > date but I
> > > cannot find anything in MSDN. It is also a complete mystery why it
> > > only pops
> > > up on rare occassions and is missing the rest of the time.
> > >
> > > Thanks
> > > Dave

Nov 17 '05 #6

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

Similar topics

1
2238
by: porterboy | last post by:
Hi Folks, I have auto-completion set up in my python interpreter so that if I hit the tab key it will complete a variable or a python command*. eg. if I type >>> imp and if I then hit the tab key, the interpreter will complete it to... >>> import Now, I also use Matlab at the command line a lot and it has a nice
6
3807
by: Sebastien | last post by:
Hi, I am building a products database, linking sales and production. Each part has a unique sales Stock Code and Production Number. The sales stock code is a combination of letters and numbers taken from the part name (BrandA 300 4 Bladed : B3004B). The production number is a 4 or 5 digits number with first figure(s) indicating category...
4
3478
by: Benny | last post by:
Hi, We are planning to improve the present search (Product DB search). Is there any way on ASP script to make an auto complete text box, loaded with the product names (like in google suggest). I hear AJAX, can that be used with ASP scripts? Benny
0
2450
by: Smokey Grindle | last post by:
Is this even possible? Ive tried a few things but none of them worked... I have a massive address database, i want the "Address" textbox to be auto complete but dont want to load all the names on first load... but show only the ones that start with the first letter typed (that is load only those ones into the autocomplete source to...
13
4728
by: S.Dickson | last post by:
I had an access database that i use as an ordering system. I have a form for entering customer details. When i add a new customer on the form the customer number is an auto number that appears when i type in the details. I have just moved over to mysql server with access as the front end. I have setup the sql tables with the customer number...
11
7376
by: eureka | last post by:
Hi All, I'm training in Servlets, JSP and JavaScript, I have a web page in which there's a "StudentName" textbox and below it is a "Names" Dropdown list. Initially the Textbox is empty and the Dropdown doesnt have any items.. The requirement is that as soon as one goes on typing the letters in the StudentName-textbox the corresponding...
1
1459
by: glasssd | last post by:
Hi, I was hoping someone might have some ideas on how I can hack around a problem I'm having with the auto-complete feature of the ComboBox. I have a data entry application that uses a pair of ComboBoxes on the main entry screen. These are configured to use the Suggest Append auto-complete feature with the List Items as the data source. ...
3
4002
by: TS | last post by:
I am using IE 7. I have a website running on my local machine (localhost) and auto complete doesnt work for any of the textboxes, but going to web sites on the internet does support this so i know the browser has this config turned on. any ideas why it doesnt work on my local web application (.net 2)? thanks
0
163
by: Ivan Ven Osdel | last post by:
>----- Original Message ----- Thanks for the suggestion. I'll take a look at iPython today. Ivan
0
7811
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8159
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7922
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
8185
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6571
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5689
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3836
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1416
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1147
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.