intellisense

Autocompletion not working in Visual studio

五迷三道 提交于 2019-12-16 20:00:56
问题 I have a Little problem with scripts. When I'm writing C# scripts for Unity with Visual studio it seems like I`m working in notepad, there are no autocompletion (correct?) and I must write it very slowly. Please, watch the video. At start is the normal situation (from tutorial), second part shows my problem. Video with problem For example, the transform class does not show suggestion or autocomplete. Image with Problem: Unity version: 5.5.2f1 Visual studio 2015 Visual Studio Tools for Unity

no instance of constructor “AcademicStaff::AcademicStaff” matches the argument list

ぐ巨炮叔叔 提交于 2019-12-16 18:06:21
问题 I declared AcademicStaff(int, char *, char *, int , char *, char *,int, char *,char *) constructor for initiliazing. When I called the functiion in main I got an error " 2 IntelliSense: no instance of constructor "AcademicStaff::AcademicStaff" matches the argument list argument types are: (int, char, char, int, char, char, int, char, char)". Calling Function : AcademicStaff headOdDepartment(staffID, *firstName, *lastName, telNo, *address, *email, annualSalary, *title, *status); myDepartment

IntelliSense in Visual Studio 2010 RC freezing

主宰稳场 提交于 2019-12-14 04:17:26
问题 Every time I try to write something, IntelliSense freezes Visual Studio and I have to wait like 2 minutes for it to show code completion list. The only way I can work with is turning it completly off. **` I've already installed the last IntelliSense patch from Microsoft but the problem doesn't seem to have gotten any better. Anyone had the same issue or knows what might be the problem? I'm using C#. I have a freshly installed version of Visual Studio 2010 RC, with no ReSharper, on a clean

Can we specify where the *.VC.db files are saved?

寵の児 提交于 2019-12-14 03:46:44
问题 This question explained what the *.VC.db files are: What is the *.VC.db file in Visual Studio projects? Now I would like to know how to specify which folder that those files are put into, or make them hidden. I regularly make a backup of my source and project files, and I don't want to waste my time and disk space backing up temporary files. In one folder, I have a few projects that add up to 150 kB, and the two VC.db files are 84 MB. Isn't there some way to specify where the VC.db files are

WebStorm - TypeScript and allowSyntheticDefaultImports flag

允我心安 提交于 2019-12-13 19:22:54
问题 TypeScript 1.8 added allowSyntheticDefaultImports flag. I have a TypeScript project targeting es6, which afterwards gets transpiled with Babel to ES5. Currently, WebStorm's intellisense does not recognize this flag, and thus says that using default import from a module which does not export a default is disallowed. This means that I am not getting the definitions correctly.. Since I do not want to update all of the definition files manually, is there any other way to 'teach' WebStorm this

How to add intellisense to a search line in java swing

安稳与你 提交于 2019-12-13 17:16:08
问题 This is my first time with intellisense so please go easy on me :) I'm using Java swing for building a search engine for viewing XML files . At the moment the XML file is uploaded and searched successfully , however I still would like to add the intellisense element to the project . It's very hard to be specific since the code is pretty big , then I'll do my best to be as specific as I could . Here is a visual picture of the XML search engine : Now , after the user uploaded the XML file

Visual Studio Code - Can you have real-time linting for python?

喜你入骨 提交于 2019-12-13 16:28:11
问题 There is the same exact question here, but there hasn't been any replies. Real-time linting of Python with VSCode I'm using the Python extension right now that is on the VS code marketplace. After about an hour of research, I found the following option in the linter: python.linting.lintOnSave I set it to false, but that just pretty much just disables linting. There has to be a way if auto complete works in real-time. Is it possible to have linting done in real-time in VS code? As of right now

Why are all objects listing Rhino stub methods in intellisense?

假如想象 提交于 2019-12-13 16:24:56
问题 I noticed that slightly annoyingly, every object ( not just stub objects) is listing all the common Rhino methods like AssertNeverCalled in Visual Studio. It makes browsing the properties/methods much harder. Is this a bug with Visual Studio (corrupted Intellisense DB for instance) or a 'feature' of Rhino Mocks? 回答1: To answer your question I need to split my answer between the arrange and the asserts methods. The reason you face those extension methods on reference types instances is because

Visual Studio: Intellisense Problems and Linux Compatibility

独自空忆成欢 提交于 2019-12-13 16:09:14
问题 Two somewhat unrelated questions: Sometimes when I am working on a C++ project in Visual Studio 2008 Express, intellisense just does not want to "work" even though it really should. Auto completion box does not show and status bar says something along the lines of: "Intellisense: No further information is available". Sometimes it can be fixed by either rebuilding the solution or re-opening the solution, and sometimes even that doesn't work. Is this a known problem? If so: are there any known

Create javascript function that works with intellisense

十年热恋 提交于 2019-12-13 14:24:34
问题 I want to take advantage of visual studio intellisense therefore I have read: http://msdn.microsoft.com/en-us/library/bb514138.aspx Anyways why I do not get intellisense with: function Customer() { this.Id = 0; this.FirstName = ""; this.LastName = ""; } function Test() { /// <returns type="Customer"></returns> var c = new Object(); $.ajax({ async: false, dataType: "json", url: "Ajax/GetCustomer.aspx", success: function (foundCustomer) { // I know that found customer is of type Customer c =