Posts by Vinix Gonzalez • 81 points
11 posts
-
0
votes2
answers227
viewsA: Fixed size DIV with CSS (generate PDF with MPDF)
CSS works in the form of cascades, that is, by hierarchies. try to use the code !important in their properties which must not be overwritten. example: .container-ficha { background-color:#ffffff;…
-
0
votes1
answer141
viewsQ: Save time of registration in the database
I have a form and whenever someone register, I need to save the time of registration in my table Historico2 inside the property DateTime? Quando. public partial class Historico2 { public int ID {…
-
1
votes2
answers42
viewsQ: How to Update in 3 lines in a query
How can I update to change the value of 3 lines? I have a similar structure: Id | Nome | Ordinal 13 | Juizado Especial Cível | ª 14 | Juizado Especial Criminal | ª 15 | Juizado Especial Cível e…
sql-serverasked Vinix Gonzalez 81 -
0
votes0
answers482
viewsQ: Microsoft SQL Server Management Studio 17 Error
Every time I try to start Management Studio this error: Cannot find one or more Components. Please reinstall the application. I have already uninstalled SQL Server and Management Studio and…
-
-1
votes1
answer81
viewsA: How to return the value of the element using Xpath?
It might be useful for someone, too. I managed to return the headlines as follows: But it only returns 10 news.…
-
-1
votes1
answer81
viewsQ: How to return the value of the element using Xpath?
I’m doing a job for the college where I need to return the titles of the news site G1 - World. I am using Htmlagilitypack. As an example, the first news of the site appears in this code snippet…
-
0
votes2
answers414
viewsQ: How to reference an html button in C#
I have the following snippet of HTML code : This code belongs to a page of an Air OS radio (internet radio). I need to reference this button inside a program made in Windows Forms and do a function…
-
1
votes2
answers355
viewsQ: How to reference HTML elements without ID in C# Windows Forms
Good night! I have the following code: <H3>Dados Cadastrais</H3> <table class='dados'> <tr> <th>Avalista:</th> <td>VINICIUS ALVES GONZALEZ</td>…
-
4
votes2
answers282
viewsQ: Filter string REGEX C#
I have a string that returns all the content of an html page. On this page, you have the following line: <input style="width: 2.3em;" id="nacional" value="3,48" type="text"> I need only the…
-
1
votes0
answers47
viewsQ: Referencing parts of an external program C#
I need to reference the input (textBox) login from a program running on my PC. You would know how to tell me how to do this? I need to capture the login typed in the external program by my program…
-
1
votes1
answer686
viewsQ: Program that opens Notepad in the background
I need to make a program that, when the user presses a button, the program opens the notebook and insert a message previously programmed by me in the code. How could I make the program part insert…