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 4 years ago.
Improve this question
I'm developing a C# application that needs to be able to tell iTunes to open a .m4v file on Windows. Is this possible? I've tried on Command Prompt to do this but it just opened iTunes without opening the movie. Is there any iTunes command line arguments or am I out of luck?
Edit: Also, once the movie is launched, is it possible to control it, such as playing, pausing, or closing it?
Your best bet might be iTunes COM object (How to control iTunes through winForms)
but I'm not sure if it's going to support action such as loading file into an iTunes, but if you are about to control it like play/pause, fast forward, rewind etc. then this is what you should looking at.
Related
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 2 years ago.
Improve this question
I was wondering what type of side menu Microsoft used in their Hyper-V Manager (or mmc as well) and wanted to ask you If there is such control in C# (Winform / wpf) and what is the name of it?
I was trying to play with TreeView but it sucked in many ways, e.g. I was not able to "unfocus" selected node and so on.
Hope you are all doing well during this time.
Thank you!
hyper-v manager side menu screenshot
You can either use a 3rd party library having Accordion Control
Ex: https://docs.devexpress.com/WindowsForms/114553/controls-and-libraries/navigation-controls/accordion-control
Or make one for yourselves using WPF/WinForms Custom Control.
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 4 years ago.
Improve this question
after one hour searching I'm writing this question.
how to read,write and modify a text in text editor while the text editor is open, the text editor might be anything such as notepad or vs or word.
the type of c# application isn't matter whatever it be.
Writing to another memory's process is more complex and less stable. Better idea is to send a message/event to another process. This link demonstrates it for notepad, but idea is similar for other editors.
You need to connect to the process, it involves a lot of Windows API and it is different for different applications. My advise, don't do it, I cannot imagine an architecture which includes this kind of actions, it is asking for bugs.
But, if you still want to do it, Google: "connect to a process notepad and change text c#"
You will find many links which explain. For example this one:
https://www.codeproject.com/Articles/670373/Csharp-Read-Write-Another-Process-Memory
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 6 years ago.
Improve this question
I have been having some problems with my mic when I boot my pc I have to either disable and re-enable my mic in recording devices or unplug the usb and put it in again to reset it...
I'm a pretty novice programmer but do know my way around bat and C# (sort of).
Is there a way I can do this either through a program or through making a script and chucking it in the startup folder.
Thanks...
One easy solution is to use devcon in a .bat file.
Here are some additional details:
https://msdn.microsoft.com/en-us/windows/hardware/drivers/devtest/devcon-disable
You can try the devcon command, available here: https://msdn.microsoft.com/windows/hardware/drivers/devtest/devcon?f=255&MSPPError=-2147217396
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 8 years ago.
Improve this question
I want to make a C# WindowsFormApplication project to collect and store answers.
I then want to use these answers to generate input for selenium web driver which is a console application.
Is it possible to join the two projects together so I first collect my answers on the form, and when I click run on the windows application form, for the console application to start running? If so, how would this be done?
In case you don't want to use database as suggested by kat0r you can use sockets to make them communicate together.
The obvious answer would be to store the questions in a file/database, and simply access it from both applications. You can start other programs with something like Process
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 8 years ago.
Improve this question
I've been wanting to write my own version of DVD override software for some time now. I really want it to behave like AnyDVD, except much less overhead and not near as many options.
Basically I want to be able to insert a DVD on my Media Center and have the option of "Start Main Movie" or "Go to Main Menu".
I don't need to decrypt CSS (at least I don't think I have to). I just want to override the PUOPS (prohibited user operations) so that I can navigate anywhere on the disc.
I'm decent with c#, but I've never worked with a DVD drive or playback before. I've scoured the web but found nothing.
Has anyone out there done this before? What resources can I look to for this task?
Thanks for a nudge in the right direction.