Questions tagged as 'c#'

1
answer

Selenium getattribute list c #

I have a problem creating a list with attributes follows HTML code: <div class="post clearfix" data-post-id="92842173">...</div> <div class="post clearfix" data-post-id="92841636">...</div> <div class="po...
asked by 08.11.2015 / 04:49
1
answer

Application does not run with Visual Studio 2013

I made two small applications in Visual Studio 2013, which do the following: The first one assembles the serial and saves this serial in the windows registry; The second reads the key in the windows registry. When I run the application...
asked by 12.12.2015 / 17:31
1
answer

How do I order a Complex List?

How do I sort a complex list? Home I have this list below and I need to sort by TypeName and TypeName : public class Tipo() { public int IdTipo {get; set;} public string NomeTipo {get; set;} public List<S...
asked by 03.10.2018 / 14:49
1
answer

Which IDE to use for C # / C ++? [closed]

Good people, I want to get into the programming world whose end users are Windows users. I already have Java and I have a programming notion, what I really wanted to know is an IDE that I can use to program C # / C ++. I seek your opinion on thi...
asked by 21.08.2017 / 05:41
1
answer

How to disable a window? [closed]

I'm looking for some code that disables a window, and after the user enters a login and password in my form the window re-operates. Being more specific and with a bit of detail, I've seen a program do such an action, it worked by the process...
asked by 28.07.2016 / 11:40
2
answers

UPDATE SQL in C # (Windows Forms)

I'm trying to format a default date because there are dates with different formats, as print below. MM/dd/yyyy|dd/MM/yyyy|dd/MM/yyyyhh:MM:ssIwanttochangethesedatestodefaultasdd/mm/yyyyhh:MM:ssIthoughtaboutpullingthedatesandthenclickingbutton...
asked by 21.05.2018 / 20:44
1
answer

Simple C # connection problem with MYSQL

I have a problem with the following error when attempting to do a simple insert of an activity in my mysql database: "System.ArgumentException: 'The format of the initialization string does not conform to the specification started in index 57."...
asked by 05.07.2018 / 14:38
1
answer

Converter 1.0 (string) to 1.0 (double) in C #

Good evening guys, I'm trying to solve a challenge in C # but when I try to convert two variant strings with dot (Ex. 1.0 7.0) to two double variables, it loses the point and gets 10 70. Can anyone tell me what I'm doing wrong? / p> double x...
asked by 22.07.2018 / 02:23
1
answer

Basic Authentication in Rest API (C #) [closed]

I have an application made in ASP.MVC where I implemented ASP.NET Identity for user registration / login. Now I have to create a Web API Rest with a simple authentication, only a single user and a unique password. Can anyone give some tips...
asked by 05.03.2017 / 22:56
2
answers

How to create a C # executable with .NET Core?

I'm developing an introduction to programming material using .NET Core. I have read the documentation on creating and running web projects, but I have found nothing that addresses how to create a project from a console application and generate a...
asked by 12.10.2016 / 17:28