Posts by Happy • 51 points
9 posts
-
-1
votes1
answer56
viewsQ: How to ignore the safety warning
Hello. I have been developing a program in Vb.net, and in it, there is a "Launcher" that downloads 2 other programs and then executes them. The problem is that it gives the following "error" when…
-
1
votes1
answer170
viewsA: Error opening a form inside another form [VB.NET]
You won’t be able to do this with a form. I think it would be better to just open the form and use NovoForm.Location = New System.Drawing.Point(0, 0) just replace the zeros with the location you…
-
1
votes1
answer40
viewsQ: How to compare memory used by 2 processes
Hello. I’m developing a Vb.net program that finds some processes, takes their PID, and then collects some information about them. The problem is when you have two equal processes. In that case, I…
-
0
votes1
answer62
viewsA: How to continue code after IF
Solved! The code was inside a timer, and it was being stopped by another. Without this, everything flowed as expected. Thanks for the help!
-
1
votes1
answer62
viewsQ: How to continue code after IF
Hello, in a certain part of my program, I need to search for some keywords in a text file. I’m using the IF and CONTAINS method for this, however, when it finds one of these keywords, it stops…
-
0
votes1
answer394
viewsQ: How to make an event run only when the mouse is pressed
Hello. I wonder if in VB.NET (Windows Forms) has how to make an event happen only during the time when the mouse button (LMB) is pressed. For example, while the user holds the mouse button, the "W"…
-
1
votes0
answers62
viewsQ: Import text file to listbox (drive)
Hello, I have tried to import a text file to a listbox by reading it row by row though, with the difference that this text file is not anywhere on the pc, but rather on my google drive. I’m using…
-
0
votes0
answers122
viewsQ: VB.NET How to simulate mouse clicks (Real)
Hello, I know there are many such questions, but what I want to know is not how to simulate, but how to REALLY make a program click for real. I already know how to simulate the clicks perfectly, but…
-
0
votes1
answer146
viewsQ: VB.NET - How to delete files being used by other process
Hello, I would like to know if there is any way inside VB.NET (Use Visual Studio 2017 [Winform] ) to delete a file being used by another process, in case, forcibly delete the file, even if it may…