It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to read the contents of a browser window from a console application in C#.
What is the best way to do it.
I'm trying to use Automation UI (by capturing process of the browser and creating a AutomationElement of that process) but since I'm very new to this concept. I don't know where to begin from.
I understand what you are trying to accomplish but please be also noting that AutomationElement works only with some browsers, not all, among which Opera is to be shot down first.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have create simple Web Browser using c# and it read html pages well,but it doesn't read any html5 pages.i want to know how to enable that.
I'll try to answer your question by assuming you're asking about the WebBrowser class.
If you're trying to say that you used a WebBrowser class to read HTML pages but it doesn't read HTML5 pages, it could be because your IE version doesn't support HTML5. Did you install IE9? WebBrowser simply wraps the IE installed in your computer.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a requirement to create an animated screen saver for windows.
Screen saver contains some images and some text.
I want to update the screensaver contents from a a webpage (upload images and edit texts) etc.
is possible to do this using c#?
"is possible to do this using c#?"
Yes.
C# is a full code language, and with it, you can do virtually everything a computer is able to do.
Now... I would expect you to expand your question a bit more.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am currently working on an app for Windows Phone. What I wish to do is simple - allow the user to set a time, and, at this time, the phone will send a text message to a specified number.
Is it possible to do this ? How can I do this ?
Thanks very much.
There is a way to launch the Messaging application with the "Body" and "To" field programmatically field in.
The SmsComposeTask Class is what you need to launch the messaging application.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need help here. I am trying to create a program that allows users to listen to the radio from a site I work on, without actually getting on the site. I have created the page I need it to display, but I am having trouble getting it to display in the Forms Application.
This is the page it needs to display:
If anyone could help me, that'd be great. Thanks in advance, even though I will probably say it again.
http://pastebin.com/0cSLMHht
Please use the Windows WebBrowser Control for it
see link here http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx
Examples are here http://msdn.microsoft.com/en-us/library/2te2y1x6
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have a form as Dashboards. I want to automatically refresh data without the data being read from the database and the user are shown.
What is the best late for this scenario? I did this using a timer, but the best for this scenario is late?
If you want to show data to user but you didn't want to crash your form you can Use background worker or use threads in advanced.