System Requirements DLL
Posted: Tue Mar 08, 2011 2:42 pm
Hello,
Heres an idea for anyone stuck on what to make next. How about a system requirements dll that can be used to check that a system meets the minimum requirements for the software.
For example if I make a photo editor that needs a fast CPU and atleast 100mb of HDD space I could use the dll in my software like:
Anyone want to give it a go? cooll;
Heres an idea for anyone stuck on what to make next. How about a system requirements dll that can be used to check that a system meets the minimum requirements for the software.
For example if I make a photo editor that needs a fast CPU and atleast 100mb of HDD space I could use the dll in my software like:
Code: Select all
And stuff like that. It could be very useful in some situations.If SystemRequirements.CPUSpeed < "800mhz" Then
MsgBox("Your PC is not fast enough to run this software")
End If
Anyone want to give it a go? cooll;