Click here to Skip to main content
15,891,529 members

Comments by gaga blues (Top 26 by date)

gaga blues 7-Oct-14 10:29am View    
Ok i'll go check this one out. I'll let you know how it turned out. Thank you so much!
gaga blues 7-Oct-14 10:28am View    
Thanks for the help! Well, there is a situation that the application that I am trying to check in the registry can run even when the key of that application is deleted so I want regenerate that key in the registry.
gaga blues 3-Oct-14 4:26am View    
Yes right now, the request priveldge is "requireAdminitrator" so I am running the code with admin rights.
gaga blues 12-Sep-13 14:22pm View    
Glad to help ;)
gaga blues 13-Aug-13 13:09pm View    
Try this instead sir. Put this inside function searchCheckAll()

var chkAll = document.getElementById('<%=chkAll.ClientID %>');
if (chkAll.checked == true) {
document.getElementById('<%=chkActivity.ClientID %>').checked = true;
document.getElementById('<%=chkItem.ClientID %>').checked = true;
document.getElementById('<%=chkService.ClientID %>').checked = true;

} else {

document.getElementById('<%=chkActivity.ClientID %>').checked = false;
document.getElementById('<%=chkItem.ClientID %>').checked = false;
document.getElementById('<%=chkService.ClientID %>').checked = false;

}

}