How distant objects should communicate with each other? [closed] - c#

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I have simple program to install packages on computer.
User select package in GUI by pressing button and then "Installer" run installing thread. When installation is finished "View" show succes or error text.
How can I send information directly between "View" and "Installer?
Or I always have to use all intermediary objects like:
View>Controller>ThisComputer>Instaler
Instaler>ThisComputer>Controller>View

Related

Connect and access git repository files using C# [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 days ago.
Improve this question
How can we connect the git repository using c# code.I have to perform the read write operation. Coping files from one repository to another or from local machine to another repository using c# code.

how to open Tor browser tab using .net 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 2 years ago.
Improve this question
I have installed the Tor browser on my PC(Window 10).
Now I want to open a link in Tor browser with C#, how can I do this?
Should be simple like opening any other browser
Process.Start("[Full Path Here] tor.exe", "http://www.YourUrl.com");

How to get list of installed input languages (keyboard layouts)? [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
The questions I saw here is mostly about getting current input layout, but I need list of all installed input layouts.
It's like when we install Windows we choose additional input method for our native language and we usually has 2 of them. And I need to know it.
foreach (InputLanguage c in System.Windows.Forms.InputLanguage.InstalledInputLanguages)
{
Console.WriteLine(c.Culture.EnglishName);
}

Can I run Imagemagick on windows shared hosting [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 shard hosting like GoDaddy with Windows. I am writing in ASP.NET c#. Can I use it from c# on the shared hosting?
If you can get them to install Imagemagick, then yes.

How to create an msi from a Windows Forms project? [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 5 years ago.
Improve this question
I am trying to create an installer for a project which I recently completed. I also used a database(SQL Server Compact), but I don't know much about how to do it. I've read some articles on MSDN, but they weren't clear to me.

Categories