I have the following algorithm in C #:
public static int Encriptar(string cad) {
int[,] mul = { {0,1,2,3,4,5,6,7,8,9},
{1,2,3,4,0,6,7,8,9,5},
{2,3,4,0,1,7,8,9,5,6},...
I need to hide the controls of a form that I intend to use to create credit requests.
the procedure to be performed is: If the page is displayed for the first time, the controls to add client and co-debtor information are displayed, stored wh...
Good evening I have a query, I am creating a sales management system in c # for 3 branches with multiple users and all will be connected at the same time and to the same server, is my query that the data flow is too much saturated? or that depen...
I have my next query in c # I'm using the ADO.NET Entity Framework 4, my query I just want to get the data of two specific columns.
public List<clsSalidas> Listar()
{
try
{
var lista = contexto.Execut...
I have this code to save records,
when it is new, enter the record,
when the record is repeated it enters foreach and displays the message (the record already exists) but it enters the record anyway .
Is there any way that,...
Is there a method to find a pattern with specific characteristics within a string?
I need to look at a string and if any of the parts contains a (xxxxxxx) delete it, the problem is that what is inside the parentheses can be variable but w...
I have this method, which opens an excel file, what I try is that when the route is not correct I can not continue the program until the connection is correct.
private void Conectar()
{
try
{...
Visual Studio Community 2015 + SQLite + Entity Framework
The database has 2 fields: ID and ShipType
Class for mapping the database:
namespace ImperialFleet
{
public class ShipTypeClass
{
private string id;
private string type;...
I have the number of the week, I want to get the date that includes that week:
Example:
The week starts on Monday (first day), and ends on Sunday
Week 1 of 2018 = 01/01/2018 - 07/01/2018
Week 52 of 2018 = 12/24/2018 - 12/30/2018
Week...
Hi, I have a problem and esque always shows me the same message that a guy should return, what I do is the following:
Error method must return a type:
var a = AssemblyHome(data);
The code of my function is:
internal static AssemblyHome(by...