Posts by Wesley Silva • 366 points
17 posts
-
0
votes1
answer22
viewsQ: VB.NET Manipulating a "Birthday Drop Down"
Hey there, guys! I’m having trouble setting a date on a Dropdown from Yahoo’s website... The website link is: https://na.edit.yahoo.com/registration?.pd=&intl=br Here’s what I’m trying to do,…
-
1
votes1
answer1315
viewsQ: Webbrowser problem to click on elements of the site
Hey there, guys! I need to access this link: https://br.answers.yahoo.com/question/index?qid=20140809134831AAoevh8 Using IE, Chrome, Firefox... any browser I can normally with no errors, but when…
-
2
votes3
answers1130
viewsQ: Webbrowser - Click on elements of a website
Hello, everybody! Here’s the thing, I need to make my program click on an element. Here’s a photo to make it easier to understand: http://i.imgur.com/Uitnkvt.png I’ve tried a lot of things, but…
-
0
votes2
answers676
viewsA: How to Save Datagridview Items within a Column?
Hello, Gypsy Morrison Mendez! I started making a system for 1 user too. At first I was accessing Access even, but now that you advised I am looking for other options... Can you tell me why Access is…
-
1
votes1
answer236
viewsA: Slide effect on a panel without that lag
Hello, Cyberpotato! I tested your code and did not present any lag... Is your Panel inside some other component? Make sure that the Panel is not in some image... this generates a lot of lag. Do not…
-
1
votes1
answer217
viewsQ: Receiving Information from a Website
Hello, everybody! I have a problem and I don’t know what else to do about it. The situation is as follows: My program accesses a website selling airline tickets... He needs to get the first ticket…
-
1
votes2
answers1983
viewsA: Based on a date, know what is the week of the year
It would be something + or - like... But it’s just the same logic, because I didn’t write in an IDE... n I can say that the code is right ^^ //Aqui temos uma função que retornará uma variável do…
javaanswered Wesley Silva 366 -
2
votes1
answer444
viewsQ: Disable Scrollbar from a Form MDI Container
Does anyone know how to stop Child Forms from moving beyond the screen and displaying a scrollbar? I wish there was a limit to moving the Child Forms... that they only move up to the screen size and…
-
1
votes1
answer77
viewsQ: Software with cost. Help?
Hello, everybody! Well, my situation is this: I have a program and I want to charge for the use, but I realized that if I left free there would be more customers. So I thought I’d limit the system…
-
2
votes1
answer153
viewsQ: GUI Applications - Speeding up! How?
Hello, everybody! My mission is to give agility and fluidity to a software... leave it without those constant locks in each For... For this I created a problem and would like to know if someone can…
-
0
votes5
answers2964
viewsA: How to display a confirmation message when clicking delete from the grid option?
Why not use msgbox? It would look something like this: Dim decisao As Integer = MsgBox("Deseja realmente excluir esse item?", MsgBoxStyle.Question + MsgBoxStyle.OkCancel) If decisao = 1 Then 'Código…
vb.netanswered Wesley Silva 366 -
2
votes2
answers1060
viewsA: Send email Login & Password C# windows Form
Would something like this: try { MailMessage mensagem = new MailMessage(); SmtpClient smtp = new SmtpClient(); mensagem.From = new MailAddress("[EMAIL AQUI]", "[NOME AQUI]"); mensagem.To.Add("[EMAIL…
-
2
votes1
answer478
viewsQ: Automation of registries (Mysql)
Hello, everybody! I have a problem, and I need your help to come up with a solution. My situation is as follows: There is a page . php that will be accessed daily by several people, this page will…
-
1
votes2
answers88
viewsQ: Ensure that a set of functions function correctly
Hey there, guys! I’ve got a problem eating at me and I don’t think I can handle it on my own... Here’s the thing: I have a form with a button; that button is responsible for selling a product. The…
-
2
votes2
answers65
viewsA: Get two snippets of a confusing string
There is also a very fine function called Split Would something like this: Dim meuCodigo As String = "if Argumento1 = Argumento2 (--statements;);" 'Esse texto representa o seu código' meuCodigo =…
-
2
votes2
answers314
viewsQ: Simultaneous tasks (Best way?)
Hello, my dear friends! I’m looking for the best way to work with simultaneous tasks in a graphical environment. I have tried using: (Thread), (Task) and (Backgroundworker). But in all of them I had…
-
3
votes1
answer81
viewsQ: Netframework dependencies in the project folder?
I would like to know whether it is possible to incorporate .dll that my project uses Netframework in its own folder. In this way it would not be necessary to install the Netframework on the client’s…