Posts by Francisco • 7,472 points
260 posts
-
0
votes1
answer58
viewsQ: How do I stop an HTML function from working with Javascript?
I’d like it if the allowSubmit be false, he did not execute the action of form (action="logintest.php"). How can I do that? function check_if_capcha_is_filled (e) { if(allowSubmit) return true;…
-
0
votes1
answer181
viewsQ: How to get the current process that the user is using?
I made a program to pick up the user’s current process, but only what it takes is " Consoleapplication1.vshost" ( Consoleapplication1 is the name of the program), even in windows like Google Chrome,…
-
0
votes2
answers83
viewsA: Checkbox help in C#
I don’t quite understand your question, but from what I understand, you can do this: void Cb_CheckedChanged(object sender, EventArgs e) { if (Cb_Checked) { Verificar(); } }…
-
0
votes1
answer154
viewsA: How to simulate mouse clicks in a background program
Try using the Event mouse. Directive: [DllImport("user32.dll")] public static extern void mouse_event(uint dwFlags, int dx, int dy, uint dwData, int dwExtraInfo); Use:…
-
1
votes1
answer643
viewsQ: I can’t get functions from the System.Management class
I am unable to call some functions of the System.Management class; for my program. I’ve tried to put using System.Management; or System.Management.ManagementObject but it also doesn’t work. Code:…
-
0
votes3
answers517
viewsA: Take information from a Website and Label it?
What’s happening is that you’re not giving the site time to upload to the program. I believe if you put one Thread.Sleep(3) before, work.
-
1
votes1
answer145
viewsQ: How to create an integer variable in hexadecimal?
I am trying to create an integer variable in hexadecimal, but an error occurs saying it is not in the correct format. [DllImport("user32.dll")] public static extern short GetKeyState(int vKey);…
-
2
votes1
answer724
views -
3
votes1
answer342
viewsQ: How to make the keydown function work with the program in the background?
Code: if (e.KeyCode == Keys.F7) { A1 = !A1; } How to make this code work without the program being in the foreground?
-
2
votes1
answer102
views