Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Insert value in third party app
Name: nnssoo Date: April 16, 2009 at 08:34:19 Pacific OS: Windows XP Subcategory: C/C++
Comment:
Hello,
Is here any way to insert value to third party application's edit box? I have application without source code, and I need to fill it's edit boxes with values..
Name: StuartS Date: April 16, 2009 at 11:29:42 Pacific
Reply:
Unless the application was designed by the author to accept external data, no you can't
Stuart
0
Response Number 2
Name: reno Date: April 16, 2009 at 22:40:01 Pacific
Reply:
yes, you can
with createobject("wscript.shell")
.run "notepad.exe",1,false:wsh.sleep 1000
if not .appactivate("Untitled - Notepad") then
wsh.echo "Failed to activate notepad"
wsh.quit 1
end if
.sendkeys "Hello World"
.sendkeys "^sHello.txt"
end with
Summary: If you dont know the number of calculations, store the results in an array. You can easily increase the number of elements with redim. Code should look somehow like this: Dim answers(1) ' first calcul...
Summary: Years ago, when I was last programming, Borland had a program called the Resource Editor that would take compiled exe files and allow you to modify the embedded resources, such as menu items and contr...
Summary: rs2.Open "insert into online(username, online, index) values ('" + user + "', '" + yes + "', '" + index + "')", conn This statement gives me a type mismatch all the '" + values + "' have a value in t...