Hello, I have a problem with my code. I'm doing a function that lasts about 3/4 hours in length, and so I decided to do that function on a thread so it does not block the overall system operation. after some research I found some solutions and t...
I want to change the color of the DataGridView line and up to you.
Code:
private void btnativo_Click(object sender, EventArgs e)
{
MudarCor();
}
public void MudarCor()
{
dgvIngrediente.SelectionMode = DataGridViewSelectionMo...
Good afternoon,
I read some blogs on the Appium configuration, but I'm still kind of lost. I need to configure Appium using the Selenium Web Driver in VS (C #) .
I currently work with Eclipse and Selenium Web Driver, but now I need to...
I have timer that I'm testing and it returns me an error:
An exception of type 'System.Web.HttpException' occurred in System.Web.dll but was not handled in user code
Additional information: Response is not available in this c...
How do I display the ID of another table in my DataGridView ?
I can display all fields except ID.
var novaListaPessoaFisica = listaPessoaFisica.Select(
pessoaFisica => new
{
PessoaFisicaID = pessoaFisica...
I have the following query in SQl Sevrer
SELECT PT.id,
P.nome AS Codigo,
PT.topologiaid,
TE.id AS TipoEntidadeId
FROM [dbo].[propriedade] P
INNER JOIN [dbo].[propriedadetopologia] PT
ON P.id...
I'm trying to download a file in headless mode.
I instantiated the driver like this:
public static IWebDriver CriarWebDriver()
{
var options = new ChromeOptions();
if(HelperConfig.GetInstance().Headless)
{
options.AddAr...
I am trying to load a saved image into MySQL, however still unsuccessful. With the code below I can display all the other fields. Every time I try to add some method to display the image, an error occurs that does not display any search informat...
My goal is to create three applications: WCF, ASP.NEW Web API and WPF.
My question is:
Is it normal, the data that we initialize on the client side ie (WPF) and that we move to the service (WCF) come to null?
Example of my code - WPF...