Inside the file frmPruebas.cs I have created a property:
public partial class frmPruebas : Form
{
private String mURL;
public string MURL
{
set
{
mURL = value;
}
}
...
}
And when I try t...
I have the next json.
{Estudiante:
{nombre:'paco',
edad: 20,
sexo: 'm'},
Recibos:
[{folio:'A1213',
fecha:'10-02-2017',
total: 56},
{folio:'A1213',
fecha:'10-02-2017',
tot...
I need to create a User Control for a .NET 3.5 application in winforms under Visual Studio 2015 as a separate project, I have seen that it is easy to add one from a project, however as a project I can not find the way.
When I'm going to creat...
I want to open the same form, without having to open several more by clicking on my toolStripMenuItem2 or any other button I have my following code: '
private void notasDeEntradaToolStripMenuItem_Click(object sender, EventArgs e)
{...
After searching several days through the network, I have not been able to resolve it:
struct TART
{
public DateTime time;
public int color;
public double altura;
public string probado;
}
List<TART> LART = new List<TAR...
Good afternoon,
I try to fill a list with the following structure:
MAIN LIST- >
[DataContract]
public class Movimientos
{
public string _id, _IdMovimiento, _Hechopor, _Nombre, _Nodoc;
[DataMember]
public List<MovimientoDet>...
I hope you can help me.
What I want to do is detect a form that is inside my project, once the form has been detected, close that form, to detect the form I want to close I use the following code
foreach (Form frm in Application.OpenForms)...
I have managed to capture the message that is sent from TCP / IP, with the class Listener , however I have been asked to listen especially to the LPT1 port, since the printers of the company are connected via Ethernet, and send them to the...
I have an ASP.NET MVC application in which, through a controller, I receive a model from a view (the MVC standard) as shown.
[HttpPost]
public ActionResult EnviarEALG(Modelo datos)
{ }
But now by necessity I must pr...
Hi, you could advise me or give me ideas on how to work with this, what I need is to insert a numeric value in the textbox and that this value is inserted inside the DataGridView and inserted into the value column and where it says password go a...