Jump to content

Recommended Posts

Posted

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....

Posted

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)

****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....

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 file

hope that helps

8)

NEWHeader1.png

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...