|
I never have a problem with it because I would type "Move" and then hit Esc to get Intellisense to go away. I'm not one for disabling Intellisense because it makes typing code so much faster.
But, a simple Google would have told you exactly what you wanted to know. "Visual Studio disable intellisense[^]"
|
|
|
|
|
it's not what i want. what i want is like VS 2015; as far as i remember, it does suggest things as you type, but it didn't force you to use it
in this case, when i type:
public void Move <and then="" i="" hit="" the="" <b="">( button or space button>
it will gives this as the result:
public void OnAnimatorMove()
in fact, i just wanna type:
public void Move() { //blablabla
the point is, the intellisense can suggest me, but if i don't wanna use its suggestions, don't replace what i typed with something i didn't choose
|
|
|
|
|
It's STILL not forcing you to use it. Type "Move" hit Esc, hit "(". Done.
YOU are going to have to play with the Intellisense options under Tools/Options/Text Editor to find a setup that works for YOU.
|
|
|
|
|
you don't get it. as far as i remember, in VS 2008 / 2015 when i type, for example, "Move" and the suggestion will pop up (like Moveblablabla, etc) BUT if i continuing type "(" (WITHOUT have to press Esc) it will become:
Move(
and not
Moveblablabla() //this is when i say, it force you use its suggestion
do you get it now?
|
|
|
|
|
Oh I get it. I've understood for a while now. Every version of VS with Intellisense has behaved the way you're describing, though, each language editor has it's options set differently from the others by default.
I already told you what you're going to have to do. Tools/Options/Text Editor/... and start exploring the options.
|
|
|
|
|
Quote: I already told you what you're going to have to do. Tools/Options/Text Editor/... and start exploring the options.
i did that on the first place. but looks like there's no option for that.
[screenshot]
the option is either turn off the intellisense or using it (with the conditions i'vementioned), afaik.
i really have to get rid of this intellisense b*llsh*t!! it really p*sses me off!!
|
|
|
|
|
In your screenshot, what does it say under "statement completion"?
There's also a heading called "advanced", for those who dare venture there, and a heading that says "code style" - the latter would let you specify how you want it to behave in detail.
If it still bothers you, then use the "txt" file extension for your source-code; it will still compile perfectly, you'll just miss al modern support of having an intelligent IDE.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Took me seven mouse clicks to find it.
|
|
|
|
|
and...? where's the option to turn it off?
|
|
|
|
|
I told you where to look three days ago.
|
|
|
|
|
richard, do you even read my conv with dave?
i said:
the option is either turn off the intellisense or using it (with the conditions i'vementioned)
what you told me like 3 days ago is just to go to Options, which has been discussed in the above conv with dave
|
|
|
|
|
So go and look at the options and see if there is one, or some combination, that does what you want.
|
|
|
|
|
at least, could you please mentioned its category? it's "projects and solutions", "text editor", or what?
|
|
|
|
|
WTF? I've already told you what to look under multiple times.
|
|
|
|
|
and do you even noticed that i told you multiple times too that i did that and there's no result?? i told you that i've searched through "Text Editor" or whatsoever and it still didn't work!!
do you even read before you reply??
if there's something i missed, just point it out. coz i've search like almost all the possible options in Options and i just like completely clueless on this intellisense bullsh*t
|
|
|
|
|
chipp_zanuff wrote: do you even read before you reply??
Yes. Do you explore, experiment, and research before begging someone to give you the answer, even an answer that doesn't exist?
|
|
|
|
|
i completely tired with you.
|
|
|
|
|
Are you completely tired of doing your own research? Experimenting? Exploring? Because that's what I've been trying to get you to do. Because, without these qualities, you're going to find it very difficult to grow in the field of writing code.
Have a nice life.
|
|
|
|
|
|
Hi,
I am trying to run my Console Applications using a batch file, I went into the Folder right clicked on the executables that I want to run, selected "Run as Administrator" option. Then copied their paths into a Batch file. Selected right clicked the Batch file and selected the option Run as Administrator and ran the batch file. Why do the executables still run as not as an Administrator?
I want to run my applications as Administrator only, is there any better approach, I am googling as well, if there is any better option please help me, thanks a lot.
Thanks,
Abdul Aleem
"There is already enough hatred in the world lets spread love, compassion and affection."
|
|
|
|
|
Any program you launch from an elevated batch file should also be elevated. You can use Task Manager or Process Explorer[^] to check.
If it's not elevated, then there must be something else going on.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hi Rick,
For some reason my application is behaving differently when I right click and say "Run as Administrator" and when I add that application either in the Batch File or even in the Windows Scheduler, in both cases I have set the application exe as always run as Administrator.
Means in first case I am running the Application by right click and Run as Administrator - in this case App works fine accesses all Files Folder and Database Objects.
But when I set the Application exe as always Run as Administrator and call that exe from the Batch File or Windows Scheduler, my app is not able to access all the objects, throwing error like File not found, even though file is there.
I am setting the Windows Scheduler properties as run with highest privileges so that it should run as administrator
and in case of batch file I am running the batch file by right clicking and saying as "Run as Administrator" - still my application is not running like that but in common way.
I too don't know why is it? Any help would be greatly helpful, thanks in advance.
Thanks,
Abdul Aleem
"There is already enough hatred in the world lets spread love, compassion and affection."
|
|
|
|
|
I have tried your method of converting a windows form to web form but now I have a bulky project which is to be converted into a web application. What should I do? Can I convert it directly or I am supposed to migrate its content one by one to the web application?
Please help.
|
|
|
|
|
Member 13087010 wrote: I have tried your method Who is this message supposed to be directed to?
|
|
|
|
|