When you want to make a F# winform application and you don’t want to open an extra console when you start the application.
How can you do this (F# version 1.9.6.2)?
1. Create a F# application:
[Edit- thanks Brian ]
2. Open the project properties
3. In the application tab change the output type
4. Add reference to the System.Windows.Forms
5. Add your code.
6. Run your app
7. Close.
8. Add your own details.
1 comment:
Or: right-click project, "Properties", "Application" tab, "Output type", select "Windows Application".
Post a Comment