Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
i need to press the ok button when this popup appear automatically
i tried with sendkeys but didn't work
this is the popup:
Doing this from a web browser is never going to happen, that is a serious security violation. The reason a popup is shown is so that a user can choose to not accept a certificate that they don't want.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I'm working on a project using C# but I can't print any things in the screen. when i click run enter image description here here's my code
I expected when I click run to print on the screen what I write in the main
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I need to create a click event that is trigged when the background of the page (Main page) is clicked/tapped.
I figured it out, you need to add a tap event to the layout (Stack layout in my case)
More info: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/gestures/tap
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
when there is an error in my program, it creates a log file and shows a pop-up message. The pop-up message has 2 options "Ok", which closes the message and "Show log" which, by clicking the button, should open up the log file that I created. But I do not know what to write in the method on the button click. Thanks
The most easy way to open a file with the default application is:
System.Diagnostics.Process.Start(#"c:\myLog.txt");
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
what I am asking is when writing WPF applications in C# how can I get it so on a press of the menu bar the window changes to a different layout with different feature.
I think you should use a TabControl, see https://msdn.microsoft.com/en-us/library/system.windows.controls.tabcontrol(v=vs.110).aspx
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have a Form with a button . I want to press the Button in form instead of "W" key on keyboard and the "W" key become active and write in notepad "W".
that's very simply .
What's the Class or Method for this action?
invoke "on screen keyboard" / avoid re-inventing the wheel where possible. the executable is osk.exe. In c#
Process.start("osk.exe")
this is equivalent to typing in osk.exe at commandprompt.
if you prefer not to use this for your application, on your form button click
System.Windows.Forms.SendKeys.Send("W");
should do the job