lopolop Posted September 18, 2005 Posted September 18, 2005 is there a way to like send a .ini in any way? like to take the content of it and email it... or is there a way to use vb code to do this? ****also i have a setup.ini and i have like Socket = (needs to be a number 1-8) how could i check it is a number 1-8 and If 1 Click(1 Coord) If 2 Click(2 Coord) If 3 Click(3 Coord) If 4 Click etc....
FuryCell Posted September 18, 2005 Posted September 18, 2005 This Post might be of interest to you. http://www.autoitscript.com/forum/index.php?showtopic=4892 HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Valuater Posted September 18, 2005 Posted September 18, 2005 is there a way to like send a .ini in any way? like to take the content of it and email it... or is there a way to use vb code to do this?Sending a file on the internet would be the same as sending any file or picture or whatever. Normally you attach the item to your e-mail and just send it. this can be coded, however is a bit lengthy... 8)****alsoi have a setup.iniand i have likeSocket = (needs to be a number 1-8)how could i check it is a number 1-8 and If 1 Click(1 Coord)If 2 Click(2 Coord)If 3 Click(3 Coord)If 4 Click etc....for this use iniread... then test with the if statements like you used$var = IniRead("C:\Temp\myfile.ini", "section1", "Socket", "NotFound") If $var = "NotFound" then msgbox(0,"test", " the ini file/info was not found " ) If $var = 1 Then MouseClick($x,$y); (1 coord) If $var = 2 Then MouseClick($x2,$y2); (2 Coord) etc.. etc.. If 3 Click(3 Coord) If 4 Click etc....look up iniread in the help filehope that helps8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now