Hello. :)
I am new here at the forums of DANIWEB and I hope to enjoy and learn more about programming software.
I have a problem with a little application I am making. The idea is simple. It is an application that execute file (like double clicking the actual files) through command buttons. It has 6 commands button. Each command button will run an .nsu file extension. These type of files loads Nvidia Overclocking profiles via nTuneCMD.
The directory is C:\NVProfiles\
Here is the code:
Private Sub BCFix_Click()
Shell "C:\NVProfiles\BCFix.nsu", vbNormalFocus
End Sub
Private Sub HIGHOC_Click()
Shell "C:\NVProfiles\HIGH OC X.nsu", vbNormalFocus
End Sub
Private Sub LOWOC_Click()
Shell "C:\NVProfiles\LOW OC.nsu", vbNormalFocus
End Sub
Private Sub MAXOC_Click()
Shell "C:\NVProfiles\OC MAX.nsu", vbNormalFocus
End Sub
Private Sub MEDOC_Click()
Shell "C:\NVProfiles\MED OC.nsu", vbNormalFocus
End Sub
Private Sub SYSDFLT_Click()
Shell "C:\NVProfiles\SYSDFLT.nsu", vbNormalFocus
End Sub
What could be the problem. I haven't programmed in VB for years, so I could have missed something obvious..
Thanks a lot :)