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

C#

 
AnswerRe: Disable the windows key using C# Pin
Rajesh R Subramanian18-Oct-08 3:37
professionalRajesh R Subramanian18-Oct-08 3:37 
QuestionBackSpace button Pin
srinivaskonijeti17-Oct-08 22:37
srinivaskonijeti17-Oct-08 22:37 
AnswerRe: BackSpace button Pin
Vimalsoft(Pty) Ltd17-Oct-08 23:03
professionalVimalsoft(Pty) Ltd17-Oct-08 23:03 
GeneralRe: BackSpace button Pin
srinivaskonijeti17-Oct-08 23:10
srinivaskonijeti17-Oct-08 23:10 
AnswerRe: BackSpace button Pin
Mycroft Holmes17-Oct-08 23:27
professionalMycroft Holmes17-Oct-08 23:27 
AnswerRe: BackSpace button Pin
sumit703417-Oct-08 23:36
sumit703417-Oct-08 23:36 
AnswerRe: BackSpace button Pin
srinivaskonijeti17-Oct-08 23:55
srinivaskonijeti17-Oct-08 23:55 
GeneralRe: BackSpace button Pin
Pedram Behroozi18-Oct-08 1:08
Pedram Behroozi18-Oct-08 1:08 
You can write your custom Backspace function in Button_Click event, something like this:
Button_Click()
{
    //[Edit]
    if (TextBox != "")
    //[/Edit]
        TextBox.Remove(LastCharacter);
}// This is not an executable code, it just gives you the main idea


Regards

While (true) { Human.isLearnable = true; }

GeneralRe: BackSpace button Pin
Mycroft Holmes18-Oct-08 3:20
professionalMycroft Holmes18-Oct-08 3:20 
GeneralRe: BackSpace button Pin
Rajesh R Subramanian18-Oct-08 4:59
professionalRajesh R Subramanian18-Oct-08 4:59 
GeneralRe: BackSpace button Pin
Mycroft Holmes18-Oct-08 13:02
professionalMycroft Holmes18-Oct-08 13:02 
AnswerRe: BackSpace button Pin
Hesham Yassin20-Oct-08 13:37
Hesham Yassin20-Oct-08 13:37 
QuestionExporting Large images into PDF through iTextSharp Pin
K V Sekhar17-Oct-08 20:56
K V Sekhar17-Oct-08 20:56 
QuestionOverflow Exception Pin
pabloraul17-Oct-08 18:17
pabloraul17-Oct-08 18:17 
AnswerRe: Overflow Exception Pin
Guffa18-Oct-08 0:50
Guffa18-Oct-08 0:50 
GeneralRe: Overflow Exception Pin
pabloraul18-Oct-08 11:36
pabloraul18-Oct-08 11:36 
AnswerRe: Overflow Exception Pin
GLLNS19-Oct-08 14:16
GLLNS19-Oct-08 14:16 
QuestionCreating a C++ library for use in C# project Pin
SRogers8817-Oct-08 10:36
SRogers8817-Oct-08 10:36 
AnswerRe: Creating a C++ library for use in C# project Pin
Richard Andrew x6417-Oct-08 12:37
professionalRichard Andrew x6417-Oct-08 12:37 
AnswerRe: Creating a C++ library for use in C# project Pin
Anthony Mushrow17-Oct-08 15:13
professionalAnthony Mushrow17-Oct-08 15:13 
AnswerRe: Creating a C++ library for use in C# project Pin
N a v a n e e t h17-Oct-08 17:42
N a v a n e e t h17-Oct-08 17:42 
QuestionOutOfRangeException Pin
kankeyan17-Oct-08 9:59
kankeyan17-Oct-08 9:59 
AnswerRe: OutOfRangeException Pin
Caio Kinzel Filho17-Oct-08 10:12
Caio Kinzel Filho17-Oct-08 10:12 
AnswerRe: OutOfRangeException Pin
Ashfield17-Oct-08 10:13
Ashfield17-Oct-08 10:13 
GeneralRe: OutOfRangeException PinPopular
Guffa17-Oct-08 11:10
Guffa17-Oct-08 11:10 

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.