I am building two applications one in C# and one in Java, which will use RSA as part of the encryption and decryption that should be handled.
When I encrypt with java and decrypt in c# works perfect, the problem is when I...
I wanted to know how to do NOT IN in the next query
select * from WFRules
where (Class = 'DoDesign' or ParentId = 0)
and ParentType not in (5,8,9,10,11)
and Type not in (5,8,9,11,15,33,34,35,37,38,3...
I need to show the USB connected to my computer and how to disconnect the USB as well as put it, remove or put the letter of USB corresponding in a ComboBox . I want to do it in C # , I have this code but it is in Visual Basic .
Prote...
I am currently programming a digital signer in C# with the iTextSharp library. Initially the signer did the task correctly, since he signed the document, requested the pin, etc. Everything was fine, until I was asked to sign and...
The problem is as follows.
I have a thread that connects to a Telnet, the problem is that sometimes the telnet is stuck, or the connection is lost momentarily and the program that connects with the telnet is pointing to nothing.
The proble...
I'm creating a .exe to run a .jar, it works, the only problem is that it shows a pop-up window ( CMD ) for a few milliseconds, is there any way to make this not happen?
Here is my code to run the .bat :
using System;
nam...
I have a UWP application that uses several TextBox to collect user information:
<Grid>
<TextBox Text="{Binding Codigo}"></TextBox>
<TextBox Text="{Binding Producto}"></TextBox>
<TextBox Text=...
The method is like this:
public List<CivarTransporteService.Model.Cliente> getClientes()
{
using (CivarTransporteService.Model.CivarTransporteModelContainer context =
new Model.CivarTransporteModelContainer())
{...
I work in a Windows Forms application, C #, IoC ninject. As the question says, obtain data from a grandchild form to the father (from the father a child form is called and this calls another form) and from the latter the data is taken and passed...