ide

Where can I find “microsoft.office.interop.excel” in the Assembly / COM browser window?

徘徊边缘 提交于 2019-12-12 23:35:44
问题 I wanted to add the reference microsoft.office.interop.excel to my project. I went to Project > Properties > References > and clicked the Add... button. In the Reference Manager dialog, I have the following options: Assemblies Frameworks Project folder COM Search There is a search window. I typed microsoft.office.interop.excel , but it is just not found. I had to browse for it to locate it manually on my drive. Why? 回答1: Project menu > Add Reference . On the COM tab, locate Microsoft Excel 15

Where do I set the Xcode IDE property to read a data file to avoid No such file or directory

我只是一个虾纸丫 提交于 2019-12-12 23:15:21
问题 This is not a code question but an Xcode IDE question. For those who pride themselves in code analysis, that's good, but in this case, please try to focus on the question in the Title above not the code. In the Xcode IDE I created a new project and selected a "Command Line Tool" creating ReadAFile. I then entered some simple code into main.c to read and display the contents of "Data.txt". I then selected File, New, File, and selected Empty (For an empty document) and named it Data.txt and

How do I check installed JARs, external libraries, etc. on three different Java IDEs?

♀尐吖头ヾ 提交于 2019-12-12 17:00:53
问题 I've written programs in several languages and have tutored students in computer science, but just starting to learn Java on my MacBook. Regarding this question, I'd be happy with any answer that points me to available information or tutorials that address my question; I'm capable of understanding advanced things. I've been searching for the right IDE for me as well as something I can use with my students, and I've tried IntelliJ, Eclipse, and VS Code. Along the way I've installed external

How to use a “custom jar” in IntelliJ IDEA?

懵懂的女人 提交于 2019-12-12 16:25:04
问题 I'm trying to set up IntelliJ IDEA -- tried 12 and 13 -- Mac to use a Java class included a jar file for my Java application. I've set the jar as a module dependency by the following procedure Start from the "project window"; Select my main Java module; Use menu File | Project Structure; In Project Settings, select Modules, and select my Java application as interested module in the middle window; On the window to the right, select "Dependencies" tab, and press "+" and select "Jars or

sass go to declaration

最后都变了- 提交于 2019-12-12 16:01:39
问题 Does anyone know any editor that supports "go to declaration" for mixins, functions, variables in sass? PHPStorm claims to, but it only works if the declarations are in the same file, not if they are imported from an external file. Cheers UPDATE: Turns out WebStorm does this out of the box! 回答1: This should be possible by using the ctags language configuration option to configure a sass language definition and then use any editor that supports ctags. On the Windows platform I use the Zeus

How to repair broken Delpi XE3 IDE after installation of custom package?

一个人想着一个人 提交于 2019-12-12 12:53:54
问题 I have created a new package with one component in it (descendant of TSpeedButton), compiled the package and installed it in the IDE (Delphi XE3 Pro). It worked as far as I have tested it (I could use my component in design- and runtime). BUT: I have closed the IDE and now I can't start it. It displays the splashscreen and shows progress: Documentation Insight Express CodeSite Express Jedi Code Library Jedi Visual Component Library Up to All designtime packages loaded (translated from German,

How can I prevent IntelliJ IDEA from reassigning file type associations at startup?

帅比萌擦擦* 提交于 2019-12-12 11:22:28
问题 I'm using IntelliJ IDEA Ultimate 18.1 and Jenkinsfile support is awful. Thankfully, treating the file as Groovy is a workaround I can live with. This involves Removing the Jenkinsfile association Adding Jenkinsfile under the Groovy group The problem is every time IDEA starts up fresh, it will remove Jenkinsfile association and, since (1) the original association has been removed, treat these files as plain text. File type recognized: File extension Jenkinsfile was reassigned to Jenkins file

How do I set the scala sdk using gradle in Idea module?

两盒软妹~` 提交于 2019-12-12 11:15:24
问题 My build.gradle file idea { project { vcs { vcs = 'Git' } jdkName = '1.8' languageLevel = '1.8' } } I would also like to set the scala SDK in the module using gradle. Right now, I end up having to manually set it from Project Structure in the Idea UI. Ideally, I would prefer to set it in my build.gradle file such that when I run gradle idea the scala SDK is automatically set for this module 回答1: To have a project with scala module in Intellij using gradle, Create a new IDEA based scala

Detect file changes outside the Visual Basic 6 IDE?

走远了吗. 提交于 2019-12-12 11:01:24
问题 Background I am working with VB6 legacy code and I am using an external editor because of the features that it has. Unfortunately, those changes aren't refreshed in the IDE because VB6 doesn't monitor loaded code for changes. I have done some extensive searching on the subject including looking for alternative editors, a fairly exhaustive internet search including following all of the links on this StackExchange link and haven't found a way to refresh the code window to reflect the external

How to Run a Java Project on Linux Without Using IDE

拜拜、爱过 提交于 2019-12-12 10:53:51
问题 I am new to Java. Basically, I developed a java projects which contains multiple Java packages inside Eclipse. The project runs OK on my desktop with a redhat Linux installed. However, I need to run it on a more powerful Linux server (redhat enterprise Linux) which does not have X11 installed. Therefore, it is impossible to run Eclipse on that server. Is it possible to do that? If so, how can I move the entire project to that server including the input and output folders? Thanks 回答1: In