TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
naga jyothi
NA
62
110.7k
I am using interaction.AppActivate() method used to run my application?
Sep 13 2012 7:03 AM
I am using interaction.AppActivate() method used to run my application.In my application menustrip control is used to run the companyInformation form that is one proceess and another process is keyboard control is used in menustrip form but my probl
string TitleName = "";
private void companyInformationToolStripMenuItem_Click(object sender, EventArgs e)
{
frmOrganizationDetails obj = new frmOrganizationDetails();
TitleName = obj.Text;
obj.ShowDialog();
}
public void keyboardcontrol1_UserKeyPressed(object sender, KeyboardClassLibrary.KeyboardEventArgs e)
{
if (TitleName != string.Empty)
{
Interaction.AppActivate(TitleName);
SendKeys.Send(e.KeyboardKeyPressed);
}
}
Reply
Answers (
0
)
what is difference between IList and IEnumerable
how to write the code to convert integer value to string (for example 45 is convert to fourty five and four five