First of all Thank you for your support
I have developed simple windows form application with c# code in visual studio.
It has a Microsoft access database.
But I do not know how to determine minimum system requirements of new application.
First of all Thank you for your support
I have developed simple windows form application with c# code in visual studio.
It has a Microsoft access database.
But I do not know how to determine minimum system requirements of new application.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tuhin PaulPosted May 3, 2023, 6:37 PM
Determining the minimum system requirements for a C# Windows Forms application involves analyzing the resource usage of the application and the dependencies it has on the system.
Here are some general considerations to help you get started:
1. Processor: Consider the processing power required to run the application. This is typically determined by the complexity of the application and the amount of data it needs to process.
2. Memory (RAM): Determine the amount of memory required by the application. This is typically determined by the size of the data set used by the application and the memory usage of the application itself.
3. Disk Space: Determine the amount of disk space required by the application. This is typically determined by the size of the application, its dependencies and the amount of data it stores.
4. Operating System: Consider the minimum operating system version required to run the application. This is typically determined by the version of the .NET Framework or other dependencies used by the application.
5. Dependencies: Determine any additional software dependencies required by the application such as the .NET Framework, database drivers or third-party libraries.
6. Graphics Card: Consider the graphics requirements of the application, especially if it involves video processing or other high-end graphics operations.
Once you have a good idea of the system requirements, you can document them in the application documentation, and also include them in the installation or distribution package so that users are aware of the minimum system requirements before installing or using the application.