My question is this: I am using Visual Studio 2015 , and I am programming in C # for Windows Forms , the case that is I have a variable that is stored in a database of SQL Server 2008 , and the data that is there is of type int . What...
My question is how to know if a MessageBox is already open so that they do not open more of the same message ??
private void timer1_Tick(object sender, EventArgs e)
{
//panelimgop.Location = new Point(panelimgop.Location.X +...
I am trying to create a vector of two positions, where in each position I add a two-dimensional matrix of type string , which led me to create a list of two-dimensional arrays as follows:
List<String[,]> multi = new List<string[...
Good morning,
I'm doing a project in mvc4 razor, and in a view I need to show a table. So far so good, the problem comes when I have to put a checkbox in the header and one in each element of the table and the first checkbox mar...
Hi, I'm trying to make a datagridview where one of the columns has a combo box TcType {Fuera de Servicio, Normal) ( Canton Type) . The code to fill in the datagrid view is as follows:
dataGridViewTcCnf.DataSource = ConfData2.TcCnf.T...
I'm trying to assign a variable to a select using LINQ.
My function which makes it evaluate a data set to get the SourceID according to the caption that has been passed into the select.
What I try to do is from an application in Windows Fo...
What does% 2 mean?
string[] names = {"Geraldine", "Julieth", "Tatiana", "Maribel", "Susana", "Mónica"};
var Query = from x in names
where (x.Length) > 5 && (((x.Length)%2)!=0)
select x;
Query.Dump();
I was doing a system in c # , I had it connected to a database in access . But I realized that maybe I could not; Generate the installer of the program and pass it to another person.
Someone told me to try to put a database of Sql Server Comp...