I have a document docx already saved in bytes[] and I need to pass it to html to be able to display it on a page.
I'm using Visual Studio with .NET to develop it in C #.
Currently I already work from pdf that is easy to trans...
I'm doing validations in C # with ErrorProvider.
Validations are about TextBox .
//Llama al método valida para decidir si el TextBox está vacío.
private void textBox1_Validating(object sender, CancelEventArgs e)
{
valida(sende...
I'm doing a log in .Net which before and after each process will be filled string with the message:
"proceso x realizado \n"
"proceso y saltado \n" //porque o se realiza x o y
"proceso a fallo al sumar \n"
"proceso n [...] \n"...
Good, fiddling with C # and C ++ I've found that the following type of expressions is valid:
int A, B, C, D, E;
A = B = C = D = E = 1;
According to this action, I am assigning 1 in E , E in D and so on, until the end....
I need to translate the following query from SQL to LINQ in .NET with C #:
This is the SQL query to translate:
SELECT COUNT(id_documento)
FROM documento
I need the value to be stored in a variable or to capture the n...
I want to know if there is any way to insert data in a database that is in SQL Server without having any of the versions of this installed or have Visual Studio installed e my team.
These are the data I have:
server = tcp: "Link to...
The question I have is, how can I combine cells in a DataGridView?
In my VB.NET project I have a DataGridView that shows information from a table in my MySQL database in the following way:
And what I want is to combine the celas of t...
Greetings to all:
I have known for a long time the BackgroundWorker and although it was complicated to get to understand its operation, I use it satisfactorily despite the limitations it poses.
I am taking my first steps with Async/...
What I want is to be able to send an email with data that is digitized from my Windows CE project, the problem is that I create the website and put my two codes both the email and export data to excel but then two problems arise.
With the s...
I'm doing a practice in c # and I would like to know how I can get a substring of a string that meets some requirements.
For example, I would like to take out what corresponds to a IP that would be 192.168.1.1 . I had thought about re...