Questions tagged as 'c#'

1
answer

What strategy to use to create Offline application [closed]

I made an ASP.NET web application (c #) for a mining company where: they enter daily work data and the application generates online reports. It has a login, account creation, etc. This application is used in an office with an internet connect...
asked by 12.06.2017 / 13:39
1
answer

Can AssetDatabase be created from the client or only from the editor? [closed]

I was unsure if the Unity3D client could create AssetDatabase in runtime or always leave them created in the editor before compiling.     
asked by 20.02.2017 / 00:05
2
answers

Does not save data in database C #

I have this code, but it does not insert the data in the database, but it does not mark any error. foreach (DataRow r in datasetexcelcont.Tables[0].Rows) { DataRow dr = cobranzaDataSet3.Cartera.NewRow(); dr[0]...
asked by 20.02.2017 / 00:58
1
answer

Error with SQLite with C # - MonoDevelop (Ubuntu) [closed]

I'm starting to program in C # and using SQLite. The problem I have is that when trying to access a table an error occurs: The connection to the database is made, but the table is not found (it really exists)     
asked by 17.02.2017 / 18:30
2
answers

How to send a parameter to a C # method through an ajax call?

What I would like to achieve is to be able to pass a parameter from my javascript function through ajax but that said variable will reach my c # method that I am calling. Ajax code: $.ajax({ url: "../../../pagina/configuracion/empre...
asked by 08.02.2017 / 15:19
2
answers

How to wait for the validation of the while loop to complete before the next code execution

I have a program in which when you validate a condition in the while loop, if it is true it must send emails. This works fine, but what I want is that once the validation of the while is finished, I can just execute the code for sending email...
asked by 08.02.2017 / 19:12
1
answer

EF6 CodeFirst Dsde Database Update Model C #

I have a solution of n-layers, inside which I have separate the DAL of the entities. For this, I am using the model called Code First from Database , which although it works quite well, because it allows me to separate the entities in a diff...
asked by 14.03.2017 / 16:01
1
answer

Convert date from xml to json to save in mongodb

Good afternoon. I currently have an XML where I have several data, one of them is a date. With the help of C # I get that date and then I need to insert it in mongodb with date format. The date reaches me like this: <FechaVenc...
asked by 14.03.2017 / 23:20
1
answer

How do I add buttons dynamically in tables? (C #)

I want to add 3 buttons in a single column of a DataGridView and I do not know how to do it correctly, I can dynamically generate the column that I want Code To generate a blank column. DataGridViewColumn acciones = new DataGridViewCol...
asked by 17.01.2017 / 21:45
1
answer

Validate previous data with the new data [closed]

I pose the situation, I have a series of records that I can edit and I have a percentage field, so what I want is that at the time of editing I validate that I can not enter a lower percentage than the previous one, I edit and in the the text bo...
asked by 18.01.2017 / 21:07