11 Topics

Member Avatar for
Member Avatar for samsylvestertty

Hi Friends, I have created a small C# program to "SendKeys" to the active application. I use it to automate the cheat code typing for games. I have assigned cheats to some keys in the keyboard. Problem is the `SendKeys.Send()` works with notepad (i've tested) but not working with GTA …

Member Avatar for samsylvestertty
0
371
Member Avatar for bmfinn

I am trying to create a gui that will interact with an existing external console application, e.g. the user only changes information in text boxes or radio buttons and that will prompt the VB.net program to sumbit a certain set of commands. I will create a folder for the end …

Member Avatar for bmfinn
0
927
Member Avatar for radu_brasov

When the code below is executed if sometimes it performs a "TAB" sometimes does nothing and sometimes gets my PC hung so I have to do CTR-ALT-DEL & Cancel which moves the execution of the program to the next line ("End IF"). Any idea what is missing to make it …

Member Avatar for radu_brasov
0
582
Member Avatar for VB_CMI

anyone know how to do the backspace coding? example. textbox1.text with abc i click a button it remove "c" i click again it remove "b" i click again it remove "a" something like this?

Member Avatar for VB_CMI
0
553
Member Avatar for Gamer0077

First of all, sorry for my bad english, that doesn't make any sence at all. So, please correct me. I made a programm to use SendKeys, but I want a delay between the word. I was able to split the string in words, but I wasn't be able to send …

Member Avatar for Gamer0077
0
1K
Member Avatar for Brianbc

I have a personalised webbrowser in VB 2005. It fills values into a form and submits the form. The first page is "login.php", the next page is "home.php" [CODE] SendKeys.SendWait("{TAB}") SendKeys.SendWait("{TAB}") SendKeys.SendWait("username") SendKeys.SendWait("{TAB}") SendKeys.SendWait("password") SendKeys.SendWait("{Enter}")[/CODE] I want it to do something else based on the url after the form is …

Member Avatar for codeorder
0
387
Member Avatar for tincho87

Hi everybody. I'm developing an application that sends keystrokes to another background application. The problem is that i have so send a "Alt+F", but i can't get it to work. I'm using PostMessage: [CODE] [DllImport("User32.Dll", EntryPoint = "PostMessageA")] private static extern bool PostMessage(IntPtr hWnd, uint msg, int wParam, int lParam); …

Member Avatar for tincho87
0
3K
Member Avatar for codedog

Hi, This works every other time. I'm trying to send data to a web page. When I click on button2 nothing happens. click again and the data shows up on the web page. click nothing, click data. What am I doing wrong? The form is a pannel (dock=top) and webrowser …

0
115
Member Avatar for ooandioo

Hi, I'm implementing a hotkey tool that globally captures key press/release and sends out keyboard events when receiving a defined key combination. I started implementing a global system hook that generates keyboard press/release events. Some Code snippets: [CODE] // installs an application-defined hook procedure into a hook chain // [DllImport("user32.dll", …

Member Avatar for Ravenheart
0
1K
Member Avatar for noofin

Hello everyone! I want to create a programme with some number of functions inside it. The programme would run quietly in the background and wait. Each function in the porgramme would have it's own pre-defined HotKey, after pressing one of those on the keyboard the corresponding function would run. All …

Member Avatar for mitrmkar
0
123
Member Avatar for Deepak.G

Hi everyone... Im starting c sharp scripting today and i wanted to write a script using which i can open the notepad application and write a string into it... This is my code... [CODE] using System; using System.IO; using System.Diagnostics; using System.ComponentModel; namespace Process_StandardInput_Sample { class StandardInputTest { static void …

Member Avatar for sknake
0
632

The End.