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 7 years ago.
Improve this question
I have a excel files that contain textboxes and I need to import the data from those boxes. Any ideas on how to accomplish that?
This has actually been addressed on this site before, and rather well. Check it out here: How to read data of an Excel file using C#?
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 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.
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 5 years ago.
Improve this question
I have a C# Service generating a PDF document. After that I need to create a new record in CRM 2016 by using the Web-API and insert the generated PDF
Is this possible with the CRM Web-API? Any hint?
Sure you can.
Base64-encode the content and put it inside the documentbody field of an annotation. The correct MIME-type is application/pdf
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 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 3 years ago.
Improve this question
I need to call Python Script inside .NET (C#) tests and get numpy array values from that script. What is the best way to do this? Would the IronPython be appropriate way to do this or this is a better way?
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'm trying to write a code in C# which lists all the Database in a specific IP Address but I don't know where to start. Please help!!!
I think I got the answer. I just need to open the postgres database which is created by default when you create a database instance and do this query.
SELECT datname FROM pg_database
WHERE datistemplate = false;