Click here to Skip to main content
15,913,199 members
Home / Discussions / C#
   

C#

 
GeneralDisplay limited items in listbox using C# from xml Pin
new2pgrmg14-Dec-07 3:51
new2pgrmg14-Dec-07 3:51 
GeneralRe: Display limited items in listbox using C# from xml Pin
Kristian Sixhøj14-Dec-07 4:22
Kristian Sixhøj14-Dec-07 4:22 
GeneralRegex.....Problem........... Pin
Siddharth Rastogi14-Dec-07 3:50
Siddharth Rastogi14-Dec-07 3:50 
AnswerRe: Regex.....Problem........... Pin
Matthew Butler14-Dec-07 6:04
Matthew Butler14-Dec-07 6:04 
QuestionHow to trigger Paste in terminal server window? Pin
mav.northwind14-Dec-07 2:58
mav.northwind14-Dec-07 2:58 
AnswerRe: How to trigger Paste in terminal server window? Pin
Kristian Sixhøj14-Dec-07 3:52
Kristian Sixhøj14-Dec-07 3:52 
GeneralRe: How to trigger Paste in terminal server window? Pin
mav.northwind14-Dec-07 4:15
mav.northwind14-Dec-07 4:15 
AnswerRe: How to trigger Paste in terminal server window? Pin
Skippums14-Dec-07 6:57
Skippums14-Dec-07 6:57 
Why not do the following, where you know how to write a single char to the console (as indicated in your question where you said you can send a 'v' character):
if (Clipboard.ContainsText()) {
    string ct = Clipboard.GetText();
    foreach (char c in ct)
        WriteCharToConsole(c);
}
I know it is a hack, but it will work. Sorry for not getting back to you on your original post, but I got kind of sidetracked. I still plan to look into how to do this the "right" way, but this will suffice until then.
Sounds like somebody's got a case of the Mondays

-Jeff

GeneralRe: How to trigger Paste in terminal server window? Pin
mav.northwind14-Dec-07 10:57
mav.northwind14-Dec-07 10:57 
GeneralRe: How to trigger Paste in terminal server window? Pin
Skippums14-Dec-07 11:53
Skippums14-Dec-07 11:53 
GeneralRe: How to trigger Paste in terminal server window? Pin
mav.northwind14-Dec-07 20:25
mav.northwind14-Dec-07 20:25 
GeneralRe: How to trigger Paste in terminal server window? Pin
mav.northwind15-Dec-07 6:40
mav.northwind15-Dec-07 6:40 
QuestionWindows Forms DataGrid View Clearing Problem Pin
deepaks314-Dec-07 1:25
deepaks314-Dec-07 1:25 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
ChandraRam14-Dec-07 1:32
ChandraRam14-Dec-07 1:32 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
deepaks314-Dec-07 1:35
deepaks314-Dec-07 1:35 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
ChandraRam14-Dec-07 1:49
ChandraRam14-Dec-07 1:49 
AnswerRe: Windows Forms DataGrid View Clearing Problem Pin
dipak.dipak14-Dec-07 2:03
dipak.dipak14-Dec-07 2:03 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
Brady Kelly14-Dec-07 2:05
Brady Kelly14-Dec-07 2:05 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
deepaks314-Dec-07 3:17
deepaks314-Dec-07 3:17 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
Justin Perez14-Dec-07 3:39
Justin Perez14-Dec-07 3:39 
GeneralRe: Windows Forms DataGrid View Clearing Problem Pin
deepaks314-Dec-07 17:44
deepaks314-Dec-07 17:44 
GeneralAn Array problem Pin
zeeShan anSari14-Dec-07 1:19
zeeShan anSari14-Dec-07 1:19 
GeneralRe: An Array problem Pin
zeeShan anSari14-Dec-07 1:24
zeeShan anSari14-Dec-07 1:24 
GeneralRe: An Array problem Pin
ChandraRam14-Dec-07 1:30
ChandraRam14-Dec-07 1:30 
GeneralRe: An Array problem Pin
ctoma200514-Dec-07 5:10
ctoma200514-Dec-07 5: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.