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
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 4 days ago.
Improve this question
i need to get a signature to access data in POSTMAN API, need to add the signature to the HEADER SECTION.
Client only provided the PRIVATE KEY and
TEXT({"fromDate":"dd-MM-yyyy","toDate":"dd-MM-yyyy"})
i have tested the Private Key with the Text in
https://8gwifi.org/RSAFunctionality?rsasignverifyfunctions=rsasignverifyfunctions&keysize=1024
this website and it worked, is it possible in C# that we can do this,
I am totally new to Coding , Kindly help me with it
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
so i'm working on a chat application with signalR. And i want to know if there is a way to send attachement and files ?
I know we can't do that using SignalR but is there another way ?
One way would be to use normal Http transfer, and manage the download/upload linking using SignalR,
check out this link:
https://github.com/garethrbrown/aspnet-signalr-upload-progress-bar
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#?
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
Ok I know it sounds nuts, but I have a project where I need to show the relationships between different tables in a web app for internal use. I know I can generate an edmx file on the fly, but how do I show it to the user in the browser? Thoughts?
edmx is just an xml. You can apply an xslt stylesheet to transform the edmx to html.
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 have build up a application in c# for my client.During the testing of the application the client inserts data for testing and whenever i reinstall the updated software the data inserted by the client is replaced by new database.so how can i not replace that database.
everytime you install the application,you can backup the data into file,and then restore it.