Questions tagged as 'c#'

2
answers

IIS Server 8.5 Adds characters to the URL

I recently installed an IIS 8.5 in W 8.1, and as I was progressing I found the details of bad configuration on my part. Now I have an inconvenience at the time of wanting to access some of the web pages hosted on this server. Either you want...
asked by 07.04.2017 / 14:42
0
answers

I can not log on to Facebook on a UWP App

I'm running a Windows Phone 8.1 App to UWP . The app 8.1 published, log in to Facebook with windowsazure.mobileservices . In UWP I'm trying to use FacebookService ( link ), but using the ID that I used before, I do not get...
asked by 22.10.2016 / 17:40
2
answers

how to close the keyboard after the focus of a textBox is lost?

also if you can indicate in which position of the screen where it appears static string dirTeclado = "C:\Program Files\Common Files\Microsoft Shared\ink\TabTip.exe"; public static void ShowTeclado() { Process.Start(dirTecl...
asked by 30.01.2018 / 21:13
4
answers

Convert Left Join SQL to Linq C #

How can I convert the following SQL query to Linq? SELECT Facturas.IDFactura, SUM(MovimientosDineros.Valor) AS Totalaportado FROM Facturas JOIN MovimientosDineros ON Facturas.IDFactura = MovimientosDineros.IdFactura GROUP BY Facturas.IDFactura...
asked by 06.06.2017 / 06:14
2
answers

How to perform gridview header row in ASP.NET

Good Night Family: I would like you to help me I am doing a gridview that I am doing in the asp.net c # language but I would like to put a header like the image: for this in my gridview I am placing a property called: OnRowCreated...
asked by 18.07.2017 / 04:41
3
answers

Count the number of elements of an array in C #

I will have an array like the following: string[] arr1 = { "one", "two", "three" }; How could I do to count the total number of elements in my array. Try adding Count but it returns me: El nombre 'arr1.Count' no existe en el contex...
asked by 22.03.2017 / 15:50
1
answer

How to login user in WebForms remotely C #, asp.net

Hi, I have a question about logging into web forms, my login works perfectly this way: Login.aspx: And when clicking, it calls a class that validates and returns true or false, according to the credentials sent and consulted in the "Use...
asked by 05.05.2016 / 20:29
3
answers

Destroying objects from one array to another array UNITY3D

I'm doing a Spce Invaders, where I have different types of enemies with their respective colors (green, yellow and blue) Every 15 seconds an Enemy Ship is instantiated that can bring any of the colors of the enemies mentioned above. If I destroy...
asked by 22.01.2016 / 00:58
3
answers

Change Source to several Labels at the same Time, C #

I want to change the font to labels (Label1 to Label10) at the same time, I explain: I have a Form WindowsForms in which I have a panel within that panel I have added 2 user controls UserControls , within both UserContr...
asked by 19.01.2018 / 21:07
3
answers

Compare two arrays and save value that is repeated in another array

I am trying to compare 2 arrays ( a and b respectively) and the value of a that is repeated in b that forms another vector. I have put it this way: when I want to compare the values entered in b with a...
asked by 20.06.2018 / 06:00