In sam monitor - Found a bug:
Code:
if(FileExists(samse05gro) == 0 && FileExists(tempstr) == -1 )
{
MessageBox(0,"Path is OK","Sam Monitor", MB_OK | MB_ICONINFORMATION );
}
else
{
(0, "Invalid Path" ,"Sam Monitor", MB_OK | MB_ICONERROR);
It must be so:
Code:
if(FileExists(samse05gro) == 0 && FileExists(tempstr) == -1 )
{
MessageBox(0,"Path is OK","Sam Monitor", MB_OK | MB_ICONINFORMATION );
}
else
{
MessageBox(0, "Invalid Path" ,"Sam Monitor", MB_OK | MB_ICONERROR);
bug fixed.
Program update - see the next posts