Click here to Skip to main content
15,905,232 members
Home / Discussions / C#
   

C#

 
GeneralRe: disabling gridview Pin
DavidNohejl20-Dec-07 22:55
DavidNohejl20-Dec-07 22:55 
GeneralRe: disabling gridview Pin
eyeseetee20-Dec-07 22:57
eyeseetee20-Dec-07 22:57 
GeneralRe: disabling gridview Pin
eyeseetee20-Dec-07 23:03
eyeseetee20-Dec-07 23:03 
GeneralRe: disabling gridview Pin
Raheem MA20-Dec-07 23:39
Raheem MA20-Dec-07 23:39 
GeneralRe: disabling gridview Pin
eyeseetee20-Dec-07 23:52
eyeseetee20-Dec-07 23:52 
GeneralRe: disabling gridview Pin
eyeseetee20-Dec-07 23:52
eyeseetee20-Dec-07 23:52 
GeneralRe: disabling gridview Pin
J4amieC20-Dec-07 23:56
J4amieC20-Dec-07 23:56 
GeneralRe: disabling gridview Pin
eyeseetee21-Dec-07 0:05
eyeseetee21-Dec-07 0:05 
there must be a way of stopping some using ctrl c and a
how bout the below code i jus need to integrate it into asp.net
do you know how i could put on key down for asp.net?

function noCopyKey(e) {
var forbiddenKeys = new Array('c','x','v');
var keyCode = (e.keyCode) ? e.keyCode : e.which;
var isCtrl;

if(window.event)
isCtrl = e.ctrlKey
else
isCtrl = (window.Event) ? ((e.modifiers & Event.CTRL_MASK) == Event.CTRL_MASK) : false;

if(isCtrl) {
for(i = 0; i < forbiddenKeys.length; i++) {
if(forbiddenKeys[i] == String.fromCharCode(keyCode).toLowerCase()) {
alert('You are prompted to type this twice for a reason!');
return false;
}
}
}
return true;
}
GeneralMessageBox color Pin
D i x y20-Dec-07 21:01
D i x y20-Dec-07 21:01 
GeneralRe: MessageBox color Pin
CKnig20-Dec-07 21:11
CKnig20-Dec-07 21:11 
GeneralRe: MessageBox color Pin
Stevo Z20-Dec-07 21:50
Stevo Z20-Dec-07 21:50 
GeneralRe: MessageBox color Pin
Paul Conrad22-Dec-07 8:22
professionalPaul Conrad22-Dec-07 8:22 
QuestionVC# - Drawing an Image to a Control Pin
Shailesh Appukuttan20-Dec-07 20:40
Shailesh Appukuttan20-Dec-07 20:40 
GeneralRe: VC# - Drawing an Image to a Control Pin
CKnig20-Dec-07 21:15
CKnig20-Dec-07 21:15 
GeneralRe: VC# - Drawing an Image to a Control Pin
Shailesh Appukuttan20-Dec-07 21:22
Shailesh Appukuttan20-Dec-07 21:22 
GeneralRe: VC# - Drawing an Image to a Control Pin
CKnig20-Dec-07 22:25
CKnig20-Dec-07 22:25 
QuestionHow to implement a VMR9 filter to render images from camera to large DLPTV Pin
sheeja_a_l20-Dec-07 19:31
sheeja_a_l20-Dec-07 19:31 
AnswerRe: How to implement a VMR9 filter to render images from camera to large DLPTV Pin
Stevo Z20-Dec-07 21:58
Stevo Z20-Dec-07 21:58 
GeneralRe: How to implement a VMR9 filter to render images from camera to large DLPTV Pin
sheeja_a_l20-Dec-07 22:03
sheeja_a_l20-Dec-07 22:03 
GeneralRelated to button control Pin
amit_8320-Dec-07 19:25
amit_8320-Dec-07 19:25 
GeneralRe: Related to button control Pin
Christian Graus20-Dec-07 19:36
protectorChristian Graus20-Dec-07 19:36 
GeneralRe: Related to button control Pin
Paul Conrad23-Dec-07 7:19
professionalPaul Conrad23-Dec-07 7:19 
Questionthe problem with creating a duble buffer transparent control Pin
sunheart20-Dec-07 19:17
sunheart20-Dec-07 19:17 
GeneralRe: the problem with creating a duble buffer transparent control Pin
sunheart20-Dec-07 19:23
sunheart20-Dec-07 19:23 
GeneralTo get and set Security permissions of a file or Directory in C# Pin
Raheem MA20-Dec-07 18:58
Raheem MA20-Dec-07 18:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.