Question : Application does not launch

Hi I have an application installed on a users computer which is win XP pro. The application works well when I give him admin rights but when I put him back to standard user or power user that application does not launch.

Any idea why is this happening.

Thanks,

Answer : Application does not launch

Check this :

(you do just an alert at then end, uncomment the last lines if the alert look fine of course)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
function openRadWindow() {
		var id = "";
		var c_content = document.getElementsByClassName("c_content");
		var table = c_content[0].getElementsByTagName("table")[0];
		var rows = table.getElementsByTagName("tr");
		for(var i=0;i<rows.length;i++) {
			var checkbox = rows[i].cells(0).childNodes[0];
			var BookingID = rows[i].cells(1).childNodes[1].childNodes[0].textContent;
			if(checkbox.checked) {
				if(id.length>0) {
					id += "," + BookingID; 
				}
				else {
					id += BookingID; 
				}
			}
		}
		alert('window.radopen("/Default.aspx?tabid=" + tab + "&ctl=multiEdit&mid=" + mid + "&BIDs="' + id + ', "RadWindow3");');
		//if(id.length>0) {
			//window.radopen("/Default.aspx?tabid=" + tab + "&ctl=multiEdit&mid=" + mid + "&BIDs=" + id, "RadWindow3");
		//}
	}
Random Solutions  
 
programming4us programming4us