Override DVD system in c# [closed] - c#

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.

Related

read,write,modify while texteditor is open [closed]

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

C# Typo Generator Algorithm [closed]

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 have a requirement where i need to get all possible typos(if not all most) that can occur for a possible word. For example (word : user). User can type "usre" or "yser" something like that.
Currently i don't have anything in mind as to where i start. If anybody has already faced the similar situation and came with the solution, it would be helpful if you can help get kick start
Thanks in Advance.
Here is a wild idea.
Create a graph using the layout of a QWERTY keyboard (assuming that is the layout the user will be using), where every key will be a node and every node will be connected to the adjacent keys/nodes. For instance, the the node s will be connected with q,w,e,a,d,z,x and c.
Now, for a given word, substitute one or more letter with all neighboring nodes from the graph. So, the word user can produce uwer, uaer, uder and so on.
I hope this will help you.

Is there a way to programmatically disable then re-enable a mic [closed]

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

Remote Screen Viewing application [closed]

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 am looking for a way to remotely share my screen with another computer, the main problem is that I need to integrate it into my current C# application. I have been doing research and was looking for someone who has already done this.
I am thinking from my research that I will need a piece of client software installed on the target machine to view the screen.
In theory I would like to view six separate screens from one computer and if possible have the ability to control the remote screen, just to verify I do not want to have a Remote Desktop like connection but a live view of the target computer.
Hoping someone can help.
Cheers,
Ben
You may need to implement piece of remote desktop in your code. There are plenty of resources addressed this problem some of them below.
http://bobcravens.com/2009/04/create-a-remote-desktop-viewer-using-c-and-wcf/
http://www.codeproject.com/Articles/43705/Remote-Desktop-using-C-NET
http://stackoverflow.com/questions/10311770/
http://www.codeproject.com/Articles/33979/Multi-RDP-Client-NET

how to make an GUI OS with C# [closed]

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 9 years ago.
Improve this question
I would like to know how to make an GUI OS using C# (becuose it`s the language I know the best).
I would like to make it as most as my own.
I know that a good start is to to help to improve completed OS (like a Cosmos) but I would like to do that part of the job by myself. What have the done? How did they made that(boot and some more things)???That is a thing I don`t know.
An operating system usually takes years of work by a team of people. Moreover, you cannot do this with C#, as it's too high level to realistically facilitate the type of development you're talking about.

Categories

Resources