Space Key problem
-
SendKeys.Send(Keys.Space);
I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")
-
SendKeys.Send(Keys.Space);
I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")
-
In that case, how about
SendKeys.Send(" ");
?Deja View - the feeling that you've seen this post before.
-
My bad. Tack a
ToString()
to the end of thatI get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")
-
My bad. Tack a
ToString()
to the end of thatI get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")
-
Doesn't work. If I put SendKey.Send(" ") it put me more than one space and the application freeze for few moments. If I put SendKey.Send(Keys.Space.ToString()) it put me many SpaceSpaceSapce and the program will not stop
try
SendKeys.Send("{SPACE}");
I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")
-
Doesn't work. If I put SendKey.Send(" ") it put me more than one space and the application freeze for few moments. If I put SendKey.Send(Keys.Space.ToString()) it put me many SpaceSpaceSapce and the program will not stop
mihksoft wrote:
If I put SendKey.Send(Keys.Space.ToString()) it put me many SpaceSpaceSapce and the program will not stop
It's pretty clear you doing it 3 times then! So use
SendKey.Send(" ")
and make sure it happens only once (which it is not doing).**
xacc.ide-0.2.0.77 - now with C# 3.5 support and Navigation Bar!^
New xacc.ide release RSS feed^**