"Setup Error - Failed to load resources from resource file. Please Check Setup" Error

umnexx

New member
Joined
Nov 12, 2007
Messages
1
Programming Experience
1-3
"Setup Error - Failed to load resources from resource file. Please Check Setup" Error

hi:



I have developed a windows based application using .net framework 1.1 which uses several system.threading.timer based timers. I stop and restart these timers at various places in my code (I stop the timer by calling Timer.Dispose and Restart it by calling its constructor). the application works fine on development machine but on the client machine it generates a wierd error: "Setup Error - Failed to load resources from resource file. Please Check Setup". Does anyone know why this error arises and whats the solution to the problem?



Your urgent help in this regard is greatly appreciated.





Regards,





Umer
 
hi:



I have developed a windows based application using .net framework 1.1 which uses several system.threading.timer based timers. I stop and restart these timers at various places in my code (I stop the timer by calling Timer.Dispose and Restart it by calling its constructor).
Something wrong with setting its Enabled property to false/true?

Really, you should be able to code with just one timer, operating on the minimum interval common to all.. Other classes that want a note every 10 seconds only, would only respond to every 10th tick of a timer that ticks every second


the application works fine on development machine but on the client machine it generates a wierd error: "Setup Error - Failed to load resources from resource file. Please Check Setup". Does anyone know why this error arises and whats the solution to the problem?
Doesnt sound related to the timer. More like your dev machine has resources (pictures, icons, sounds) that you havent built into the deployment
 
Back
Top