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 9 days ago.
Improve this question
I'm making an application with c#, but I'm not very knowledgeable, it needs to download something via the button
I'm making a folder download program with c#, thanks to the program, I can download folders.
Related
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 6 years ago.
Improve this question
I am looking to make a small windows utility that will let the user browse to a file directory. Is there a good C# method (Windows) to execute this?
If you are using WinForms, you want FolderBrowserDialog.
See here: https://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog(v=vs.110).aspx
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 2 years ago.
Improve this question
On the Details tab of the file properties in Windows, the last item under Owner is 'Computer'. Does anyone know how to retrieve this information in C#? I have a requirement to get the server name where a file was created.
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 9 years ago.
Improve this question
I have an programme that in his load test to show up an Notification
if (DateTime.Today.ToString() == AlreadyDate)
{
formNotification.show();
}
its succed to show but i want it to show like an antivirus notification
Thanks <3
Maybe this WPF library can help you http://www.hardcodet.net/wpf-notifyicon
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 9 years ago.
Improve this question
Is it possible to open the windows network diagnostic from C# code (a button-click handler)? How can I do this?
See MSDN. Here's an example:
System.Diagnostics.Process.Start(
"Rundll32.exe","ndfapi,NdfRunDllDiagnoseIncident");
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
Is there a way to show the native Windows messages, like "your pc needs to be restarted" or "Windows has recovered from an error", using C#?
You can use the MessageBox class: http://msdn.microsoft.com/en-us/library/system.windows.forms.messagebox.aspx