Click here to Skip to main content
15,907,001 members

Comments by praveen iThesisArt (Top 50 by date)

praveen iThesisArt 24-Apr-16 9:47am View    
Then who will allocate de-allocate memory in stack (value type as in case of struct) ? 'coz gc doesnt work over stack . So is it clr or compiler or processor of a system will take call on this?
praveen iThesisArt 24-Apr-16 6:52am View    
So if emp is a class, memory will be allocated by GC?
praveen iThesisArt 24-Apr-16 6:37am View    
So , when i write code :
Emp obj= new Emp();
Memory for obj will be allocated by gc?
praveen iThesisArt 8-Aug-14 5:40am View    
cause i want to bind clientside function to it .

code to be binded :

function RadDock1_ResizeEnd(sender, args) {
var a = sender.get_width();
var b = sender.get_height();

// ??? -> should be replaced with the dynamically created textbox clientId

document.getElementById('???').style.height = b + 'px';
document.getElementById('???').style.width = a + 'px';
}
</script>
praveen iThesisArt 8-Aug-14 5:36am View    
pls refer to my previous question : http://www.codeproject.com/Questions/805430/How-can-I-restrict-dynamically-created-raddock-wit

I've cloned raddock as they are dynamically generated at client side , how can i find the clientID associated with it particular to the textbox?