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.
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 10 years ago.
I'm developing an app that supports two languages, user can change the language tapping a textblock in top/right of the screen, the language is saved into a global variable.
what's the best way to load that text for the correct language?
Thanks
I have found these links useful in the past when I used to develop for windows phone
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh965328.aspx
and this
http://blogs.msdn.com/b/global_developer/archive/2011/01/18/start-building-an-international-application-for-wp-7-part-i.aspx
Hope it helps!
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.
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.
When I run my application on another PC the positions of components on the form is incorrect, for example my labels go off the edge of the Panel and TextBoxes overlap buttons.
My application is a Windows Forms application.
What could be the cause of this?
Following could be the reasons for this
1. Screen Resolution
2. System Font Size
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.
Using c#, How can I identify infra red light (that my webcam would see). Will the necessary code differ depending on the make and model of my webcam?
A webcam can see a little IR and you can make it see more by removing the IR filter but it can only report it as... Red.
The whole chain of definition(s) of colour is aimed at the visual spectrum, only containing RGB values. You will see the IR as a 'false colour'.
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 would like towrite files into a flash drive without changing the disk usage bar displayed in win 7 (using programming c#/other methods)
Is it possible?
If so, may you give me an example code to do this!
Thank you!
Technically files are just references to blocks of written flash memory. If you copy the file to the flashdrive and delete it its still there until it gets overwritten. If you somehow save the reference you can access it if the flash drive hasn't changed. I don't have a code sample, just wanted to give you a direction.