Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# coding Pin
Kristian Sixhøj24-Nov-08 23:12
Kristian Sixhøj24-Nov-08 23:12 
AnswerRe: C# coding Pin
Mbah Dhaim24-Nov-08 23:18
Mbah Dhaim24-Nov-08 23:18 
AnswerRe: C# coding Pin
Programm3r25-Nov-08 0:27
Programm3r25-Nov-08 0:27 
Questionc# Pin
kalpanaeaswaran24-Nov-08 23:04
kalpanaeaswaran24-Nov-08 23:04 
AnswerRe: c# Pin
Christian Graus24-Nov-08 23:06
protectorChristian Graus24-Nov-08 23:06 
Questionc# Pin
kalpanaeaswaran24-Nov-08 23:00
kalpanaeaswaran24-Nov-08 23:00 
AnswerRe: c# Pin
Christian Graus24-Nov-08 23:05
protectorChristian Graus24-Nov-08 23:05 
QuestionMulti Line TextBox Problem Pin
MallikarjunaGupta24-Nov-08 20:55
MallikarjunaGupta24-Nov-08 20:55 
hi
i have multiline textbox in that i want to enter 300 characters and that will be complete in 5 lines. how to handle that one in javascript i wrote that one but i am facing when 5 lines are entered deleted last line i cant entered again that line how to solve this problem i am mentioning that javascript code also please help me......


var iCount;
CheckLimit.iCount=0;
function CheckLimit()
{
var obj;
obj = document.getElementById('<%= txtmessage.ClientID %>');
if(obj.value == '')
{
CheckLimit.iCount = 0;
return true;
}
else
{
if (event.keyCode == 13)
{
CheckLimit.iCount = ++CheckLimit.iCount;
if(CheckLimit.iCount >=6)
{
return false;
}
}
}
if (event.keyCode != 8 && event.keyCode != 9 &&
event.keyCode !=37 && event.keyCode !=38 && event.keyCode !=39 && event.keyCode !=40 &&
event.keyCode !=46)
{

if(obj.value.length >300)
{
return false;
}
}
return true;
}


AnswerRe: Multi Line TextBox Problem Pin
Christian Graus24-Nov-08 21:22
protectorChristian Graus24-Nov-08 21:22 
QuestionIdentifier Pin
ellllllllie24-Nov-08 20:52
ellllllllie24-Nov-08 20:52 
AnswerRe: Identifier Pin
N a v a n e e t h24-Nov-08 21:01
N a v a n e e t h24-Nov-08 21:01 
AnswerRe: Identifier Pin
Ashfield24-Nov-08 21:04
Ashfield24-Nov-08 21:04 
AnswerRe: Identifier Pin
Dave Kreskowiak25-Nov-08 3:32
mveDave Kreskowiak25-Nov-08 3:32 
QuestionString Key properties in treeview Pin
zeeShan anSari24-Nov-08 20:24
zeeShan anSari24-Nov-08 20:24 
AnswerRe: String Key properties in treeview Pin
N a v a n e e t h24-Nov-08 20:51
N a v a n e e t h24-Nov-08 20:51 
QuestionOpened tif image and going through pages Pin
Matjaz-xyz24-Nov-08 19:48
Matjaz-xyz24-Nov-08 19:48 
AnswerRe: Opened tif image and going through pages Pin
Christian Graus24-Nov-08 20:34
protectorChristian Graus24-Nov-08 20:34 
GeneralRe: Opened tif image and going through pages Pin
Matjaz-xyz24-Nov-08 22:30
Matjaz-xyz24-Nov-08 22:30 
GeneralRe: Opened tif image and going through pages Pin
leppie24-Nov-08 23:14
leppie24-Nov-08 23:14 
GeneralRe: Opened tif image and going through pages Pin
Matjaz-xyz24-Nov-08 23:33
Matjaz-xyz24-Nov-08 23:33 
GeneralRe: Opened tif image and going through pages Pin
Giorgi Dalakishvili24-Nov-08 23:43
mentorGiorgi Dalakishvili24-Nov-08 23:43 
GeneralRe: Opened tif image and going through pages Pin
Matjaz-xyz26-Nov-08 3:12
Matjaz-xyz26-Nov-08 3:12 
GeneralRe: Opened tif image and going through pages Pin
Dave Kreskowiak25-Nov-08 3:27
mveDave Kreskowiak25-Nov-08 3:27 
GeneralRe: Opened tif image and going through pages [modified] Pin
Matjaz-xyz25-Nov-08 4:24
Matjaz-xyz25-Nov-08 4:24 
QuestionHow i can connect my PDA to the Server Pin
wasimsharp24-Nov-08 19:32
wasimsharp24-Nov-08 19:32 

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.