Visual IDE with WinForms for C? [closed] - c

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Background:
I worked a lot with C#.Net in the last years (Visual Studio).
At the moment I am on a project for iPhones, I use the iTunes MobileDevice.dll and have a lot of reference code in C.
I try to give my best to do it in C#.Net but I give up now and like to change to C.
So I will now rebuild my C#.Net Code, its a WinForm Project with a lots of events and so on.
Now I search the best IDE, I tried Eclipse but as far as I see there is no WinForm Visual-thing I can use, or? Ideas?

There is no such thing as WinForms for C, nothing even close as far as I know.
However, C++/CLI might be what you are looking for. Because it is c++ it can easily interoperate with C libraries, and because it is also .Net is can interoperate with .Net libraries (like those that comprise WinForms).
Some other Stackoverflow questions have addressed this and their answers are informative:
How to use C++/CLI to program Winforms applications
Can I use C++/CLI (.NET Winforms/WPF ) to provide GUI for app written in native C & C++
If you go the C++/CLI route, Visual Studio will likely be the best visual IDE.

Related

How to create a WPF project without using Visual Studio? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
The community reviewed whether to reopen this question 1 year ago and left it closed:
Original close reason(s) were not resolved
Improve this question
How can I create (and run) a new WPF (Windows Presentation Foundation) project without having Visual Studio installed? My primary editor is VS code but it does not have the feature for creating new projects from templates?
VS Code is designed more to host Console based apps such as .Net Core, .Net Framework Console, and Node.js. If you would like to develop WPF apps look for a different solution. I highly recommend using Visual Studio by Microsoft.
write in terminal "dotnet new" and check the list. Class library is at "dotnet new classlib", but I'm interested in how to create WPF applications too, because there isn't that comand in the list.

F# TextEditor control for web [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm looking for a control I could integrate to my angular web application to let my users edit some F# code.
For now they just modify it through a regular text area. The F# code is then saved in a database field and is compiled and executed by another external process.
But I'm looking for something providing keywords formatting and maybe intellisense.
There is no need to run the F# code, just a nice editor.
Thanks
Dan
As far as I know, there are two open source projects you can use:
FSharpWebIntellisense provides an integration for the Ace editor and for CodeMirror. It is an older project that has been the core for the F# support for IPython Notebook and I also used it in a couple of project including fun3d.net. For Fun3D, I modified it a bit (made it simpler with Suave backend), so you might want to use this version instead. I tried turning this into a stand-alone repo which can be referenced via Paket as shown in a demo.
Ionide Web is a new work-in-progress project that brings Ionide (F# support for VS Code) to the web. This is based on the Monaco editor (by Microsoft) which is powering VS Code. I expect there will be more activity here in the near future.

Code completion for C code in TensorFlow [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am developing a custom Op for TensorFlow, using Ubuntu on virtual machine and either rmate to edit the code in local Atom installation on my Mac, or Emacs to edit it right on the virtual machine.
Is there a way to enable code completion suggestions for C code in TensorFlow?
There's no special support in TensorFlow for code completion, but there may be a specific solution for your editor. For example, this answer on SuperUser covers different approaches to C/C++ code completion in Emacs.
One way I've managed to get C++ auto-completion is to use the (experimental) TensorFlow CMake build to generate Visual Studio project files for the project, and then use Visual Studio to edit the code.

what is the best free/open source WinForms "progress bar" control? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
what is the best free/open source WinForms "progress bar" control?
(i.e. want a better looking control than the default one in VS2008, and one that has a nice continuous bar)
PS I'm pretty new to .net so I'm not sure at all if there are any popular control libraries (open source) that are widely used or not...
One of the nice things about Windows Forms is that you'll usually get the new look of the common controls on a new version of Windows. That certainly applies to ProgressBar, on Vista and Win7 you get the green continuous bar with the traveling highlight note. No code is required.
If you now see a blocky blue bar then you've either got a really old version of Windows or you've got visual styles turned off. Looking for a replacement for PB is, frankly, a waste of time, look for a replacement of Windows. I recommend Win7.
You can use Krypton controls's progressbar or Progress-O-Doom

vb.net/C# code editor with color coding [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any winforms source code editor controls available with color coding ? pref. open source
I seem to recall having come across something like that previously but can't seem to recall it ?
I believe that Scintilla is an open source syntax-highlighting editor component. There is an open source .Net wrapper utility on CodePlex.
SharpDevelop is an open source application that has an editor with color coding. You can check out how they implemented the color coding.
http://www.icsharpcode.net/OpenSource/SD/
Visual Studio Express?
Here is a simple winForms control that will do syntax highlight, with an opensource license as you requested.
https://github.com/jmonasterio/AceWinforms/blob/master/README.md

Resources