Click here to Skip to main content
15,906,569 members
Home / Discussions / C#
   

C#

 
Questionhow do i make each combo box to show a dropdown of the value of the Quantity it has fetched. Pin
Member 1050484913-Aug-14 9:02
Member 1050484913-Aug-14 9:02 
SuggestionRe: how do i make each combo box to show a dropdown of the value of the Quantity it has fetched. Pin
ZurdoDev13-Aug-14 9:24
professionalZurdoDev13-Aug-14 9:24 
QuestionHow to increment div count in path Pin
Member 1098388513-Aug-14 6:09
Member 1098388513-Aug-14 6:09 
Questionc# Play Video Fullscreen Pin
Member 416962813-Aug-14 5:20
Member 416962813-Aug-14 5:20 
AnswerRe: c# Play Video Fullscreen Pin
Simon_Whale13-Aug-14 5:41
Simon_Whale13-Aug-14 5:41 
GeneralRe: c# Play Video Fullscreen Pin
Member 416962813-Aug-14 5:53
Member 416962813-Aug-14 5:53 
GeneralRe: c# Play Video Fullscreen Pin
Dave Kreskowiak13-Aug-14 6:05
mveDave Kreskowiak13-Aug-14 6:05 
GeneralRe: c# Play Video Fullscreen Pin
Member 416962813-Aug-14 8:42
Member 416962813-Aug-14 8:42 
GeneralRe: c# Play Video Fullscreen Pin
Dave Kreskowiak13-Aug-14 12:27
mveDave Kreskowiak13-Aug-14 12:27 
GeneralRe: c# Play Video Fullscreen Pin
Bernhard Hiller13-Aug-14 21:48
Bernhard Hiller13-Aug-14 21:48 
Question[CheckBox ComboBox] Strange problem with ComboBox.CheckBoxItems[].Checked = true Pin
Member 1062093513-Aug-14 4:17
Member 1062093513-Aug-14 4:17 
SuggestionRe: [CheckBox ComboBox] Strange problem with ComboBox.CheckBoxItems[].Checked = true Pin
Richard Deeming13-Aug-14 4:57
mveRichard Deeming13-Aug-14 4:57 
GeneralRe: [CheckBox ComboBox] Strange problem with ComboBox.CheckBoxItems[].Checked = true Pin
Member 1062093513-Aug-14 20:02
Member 1062093513-Aug-14 20:02 
QuestionRegarding the usage of generic in real life Pin
Tridip Bhattacharjee12-Aug-14 21:20
professionalTridip Bhattacharjee12-Aug-14 21:20 
AnswerRe: Regarding the usage of generic in real life Pin
Manfred Rudolf Bihy12-Aug-14 21:51
professionalManfred Rudolf Bihy12-Aug-14 21:51 
GeneralRe: Regarding the usage of generic in real life Pin
Tridip Bhattacharjee12-Aug-14 23:18
professionalTridip Bhattacharjee12-Aug-14 23:18 
GeneralRe: Regarding the usage of generic in real life Pin
Debabrata TPX12-Aug-14 23:49
Debabrata TPX12-Aug-14 23:49 
GeneralRe: Regarding the usage of generic in real life Pin
Tridip Bhattacharjee13-Aug-14 21:25
professionalTridip Bhattacharjee13-Aug-14 21:25 
GeneralRe: Regarding the usage of generic in real life Pin
Pete O'Hanlon13-Aug-14 21:46
mvePete O'Hanlon13-Aug-14 21:46 
GeneralRe: Regarding the usage of generic in real life Pin
Pete O'Hanlon12-Aug-14 23:50
mvePete O'Hanlon12-Aug-14 23:50 
QuestionHow to remove escape sequece from string while telnet to HP procurve devices Pin
superselector12-Aug-14 19:17
superselector12-Aug-14 19:17 
AnswerRe: How to remove escape sequece from string while telnet to HP procurve devices Pin
OriginalGriff12-Aug-14 20:57
mveOriginalGriff12-Aug-14 20:57 
Ok, those are VT100 / VT220 terminal control sequences and then consist of ASCII characters:
ESC [ n ; n x
Where:
ESC is Hex 1B
[   is [
n   is a number, in ASCII digits: '0' (hex 30) to '9' (hex 39) repeated
;   is ;
x   is a command code which tells the terminal what to do
Some parts are optional, and question marks can be included as well!
The command code is an ASCII character which (IIRC) will be upper or lower case 'a' to 'z'.
The command code tells the system what to do with the whole command: r is a "Set scrolling region" command, H is cursor positioning, and so forth.
(You can find out what they do here: http://epsfiles.intermec.com/eps_files/eps_man/977047037c.pdf[^] - section 8)

To remove them, you will have to parse the string yourself, and find the start and end of the sequence: it may be possible to do it with a regex, but I've never tried (And am not about to! Laugh | :laugh: )
You looking for sympathy?
You'll find it in the dictionary, between sympathomimetic and sympatric
(Page 1788, if it helps)

AnswerRe: How to remove escape sequece from string while telnet to HP procurve devices Pin
OriginalGriff13-Aug-14 1:25
mveOriginalGriff13-Aug-14 1:25 
GeneralRe: How to remove escape sequece from string while telnet to HP procurve devices Pin
superselector13-Aug-14 22:52
superselector13-Aug-14 22:52 
GeneralRe: How to remove escape sequece from string while telnet to HP procurve devices Pin
OriginalGriff13-Aug-14 23:01
mveOriginalGriff13-Aug-14 23:01 

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.