Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
backspace
- Page 1
BACKSPACE key doesn't do anything in IE EXPLORER BAR )TOOLBAR) vc++
Programming
Software Development
13 Years Ago
by anuj.juthani
… a combo box control in a INTERNET EXPLORER TOOLBAR. the
backspace
key of keyboard works fine if this combobox is made… disable the drop down feature of this combo box then
backspace
doesn't work . Moreover if i add a EDIT CONTROL… control then too the same thing persist i.e. the
BACKSPACE
doesn't work ! i have search the web a lot…
Re: backspace reading as a character
Programming
Software Development
16 Years Ago
by way29
… as 'help'. >>what better protection than allowing a
backspace
as part of your password. you may have just come… a user, and I knew that I could not use
backspace
to erase the last mis-typed character I entered, I… password and forget part of them and hit
backspace
, I kid around as
backspace
being part of the password. Also we all…
Backspace key stuck
Hardware and Software
Information Security
16 Years Ago
by darkfly
… with a virus/rootkit of somekind :( It just stucks the
backspace
key when i hit some letters. I can write something… other it just starts cleaning all the text behind, the
backspace
key locks :( I think that it has been installed in…
backspace and delete key
Programming
Software Development
16 Years Ago
by yuleball
I want to exchange the functioning of
backspace
and delete key e-g if i press
backspace
it should delete the character on the right side of cursor and vicee versa for delete key. How can i implement this in rtb?
Backspace for textbox in C#(Windows)
Programming
Software Development
14 Years Ago
by rajkumar0428
… ONLY ONE char. When I'm pressing
backspace
button but when I'm holding
backspace
button it will not delete the complete…
Re: backspace reading as a character
Programming
Software Development
16 Years Ago
by way29
actually that is pretty cool that your program is seeing a
backspace
as a character. what better protection than allowing a
backspace
as part of your password. you may have just come up with a stronger security system.
Re: backspace reading as a character
Programming
Software Development
16 Years Ago
by siddhant3s
… as 'help'. >>what better protection than allowing a
backspace
as part of your password. you may have just come… a user, and I knew that I could not use
backspace
to erase the last mis-typed character I entered, I…
Re: Backspace is Counted as A Character (Scanner Class)
Programming
Software Development
13 Years Ago
by rubberman
Since the previous character (the one erased) and the
backspace
are both counted, then the input stream must be in &…, you need to change the input attributes so that the
backspace
really removes the previous character from the string/stream. If…
Re: BACKSPACE PRob
Programming
Software Development
11 Years Ago
by neyoibarra
… with your recoorection of the code, whenever i press the
backspace
it doesnt delete the past characters it just stop whenever…
Re: BACKSPACE PRob
Programming
Software Development
11 Years Ago
by neyoibarra
**i believe that 8 was the scan code for
backspace
, **, what im trying to do is that when the program detects the
backspace
being pressed then it would initiate the part of code that would delete the Characters
Re: BACKSPACE PRob
Programming
Software Development
11 Years Ago
by neyoibarra
I tried it :) but the only prob now is that when i press
backspace
it doesnt delete the characters, whenever i press
backspace
the cursor just pauses as if nothings happening, but i can still continue to type more characters
backspace reading as a character
Programming
Software Development
16 Years Ago
by badboizEnt
… star(***) due to encryption. trying to delete a character but
backspace
is being read as a character. please can someone show…
Re: backspace reading as a character
Programming
Software Development
16 Years Ago
by Narue
…; while ( ( ch = getch() ) != '\r' ) { if ( ch == '\b' ) { // Process a destructive
backspace
if ( password.size() > 0 ) { password.erase( password.size() - 1…
Re: backspace reading as a character
Programming
Software Development
16 Years Ago
by way29
… what is really behind all those *'s ? maybe even a
backspace
;-)
backspace should be disable on next page.
Programming
Web Development
14 Years Ago
by jesus123
Hi, Once I fill contact form details and click submit button,It will redirect to next page on that page menubar the
backspace
button should be disable. I need javascript for this process....................
Backspace and delete turn into Shutdown key
Hardware and Software
Microsoft Windows
14 Years Ago
by jovypinoy
Hi everyone, I have a big problem about my
backspace
and delete key. When I pressing the two keys my computer suddenly shutdown. Also my Enter key got affected and changes it to character "/". I was wondering if this was effect of virus or malware. Thank you, Jovy
Re: Backspace and delete turn into Shutdown key
Hardware and Software
Microsoft Windows
14 Years Ago
by jovypinoy
Hello I reply to my own threads because I solved my own problem. First, I tried to scan my Hard drive and it detects nothing. So there's no virus on my computer system. I found out that my keyboard got short. I think my
backspace
and delete keys accidentally connect to the Power key.
Backspace is Counted as A Character (Scanner Class)
Programming
Software Development
13 Years Ago
by ARaza110
… and want to count characters entered in the textfield. Unfortunately,
backspace
and any key (Ctr,Alt,Capslock) for that matter is…
BACKSPACE PRob
Programming
Software Development
11 Years Ago
by neyoibarra
… EXCEPT FOR THE FACT THAT THE PROGRQAM IS CONSIDERING THE
BACKSPACE
KEHY AS PART OF THE CHARACTERS. int verification2() { system("…
Re: BACKSPACE PRob
Programming
Software Development
11 Years Ago
by Ancient Dragon
line 30: should be `--i;` as previously mentioned, but -- be careful that the value of i does not go negative, such as pressing
backspace
too many times. So you might need something like this: `if( i > 1) { passChar[i] = '\0'; --i;}`
Re: BACKSPACE PRob
Programming
Software Development
11 Years Ago
by Ancient Dragon
yes, 8 is the scancode for
backspace
, but it's in input, not in passChar[i].
Problem with backspace button
Programming
Software Development
16 Years Ago
by UGndLord
… i dont know how to enable delete (
backspace
button) ? I solve and this problem but
backspace
works (arrow go back) but text… can i solve this problem? Here code example: [code] char
backspace
=8; while(1) { x=getch(); if (x=='\r') { s[i…]='\0'; break; } if(isdigit(x) || x==
backspace
) { s[i]=x; i++; putch(x); } } [/code]
telnet server, implement a backspace
Programming
Software Development
16 Years Ago
by mastermosley
…. The problem I'm having is implementing a
backspace
. When you use
backspace
in command prompt it simply just moves the cursor… a visual basic 6 telnet application and its for a
backspace
key. My vb is poor now having swapped over to… [/code] I no the Dataval = 8 is refering to the
backspace
key but thats it. Can someone please help me ouT!
handle Backspace while taking input
Programming
Software Development
13 Years Ago
by D33wakar
…if yes then goto GNloop2 cmp al,08h ;check if
BACKSPACE
was pressed jne _continue_ ;if not, then continue xor ax…sub ax,cx ;remove what was entered just before the
backspace
push ax ;save it in stack,it'll be restored… ax ret[/CODE] It gives 'division overflow' error when
BACKSPACE
is pressed. I'm finding very hard to eliminate this…
Re: Function that reads "<-" as a backspace in a array stack!
Programming
Software Development
13 Years Ago
by mrnutty
…src.empty()){ char top = src.top(); //if no sign of
backspace
just add it if(top != '-' && top !=…2 sequenced character created a
backspace
? if(prev == '<' && top == '-'){ //
backspace
detected, so pop top …requires no counter for
backspace
. It just checks if the sequence produced a
backspace
and if so, then…
Re: handle Backspace while taking input
Programming
Software Development
13 Years Ago
by D33wakar
… ;if yes then goto GNloop2 cmp al,08h ;check if
BACKSPACE
was pressed jne _continue_ ;if not, then continue xor ax…- sub ax,cx ;remove what was entered just before the
backspace
push ax ;save it in stack,it'll be restored… mov cl,al ;save al in cl(used when implementing
BACKSPACE
) add ax,dx ;add (ax*10=)dx and ax,in…
Sony Vaio backspace key problem
Hardware and Software
Hardware
18 Years Ago
by mowzac
…Sony Vaio VGN-FE670G three weeks ago and today the
backspace
key keeps repeating like it is stuck. The problem …shut it down. After restarting and going into word the
backspace
key keeps repeating. Making it difficult to type anything. …If I hit the
backspace
key it stops momentarily and doesn't respond. But if…
Bug? Problem with Delete/Backspace and Scrollbar
Community Center
Meta DaniWeb
12 Years Ago
by diafol
…reply just now (PHP forum) and noticed that the delete,
backspace
buttons were disabled. Not so on this forum. ALso the…at all. Using Google Chrome, Win 7 Hang fire - the
backspace
/delete problem just reared its head on this post as…typing. Anybody else reproduce? The only way to get delete/
backspace
to work is to make a selection and delete that.
Detect backspace keyascii in Maskedtextbox
Programming
Software Development
12 Years Ago
by zaeemabbas20
… in a maskedtext box so that when i press
backspace
the focus moves to the other text box or maskedtextbox, …but when i press
backspace
and maskedtextbox is empty with length "5" the…
Simple self-chat program, backspace adds letters in TextArea
Programming
Software Development
11 Years Ago
by minimee120
… up in the text field just fine, but when I
backspace
whatever is in the text area, it adds letters to…: I type hello in the line provided; now if i
backspace
i'll get this in the text field hellolleh. this… delete the characters, and not add them when I press
backspace
. Something with Keycode I'm assuming, just unaware of how…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC