Reply to One question
If you don't have an account, just leave the password field blank.
Is there a 'and' command in DinkC?
If(&a > 10 and &a < 20)
{
}
or would I have to write it like this:
If(&a >10)
{
If(&a < 20)
{
}
}
If(&a > 10 and &a < 20)
{
}
or would I have to write it like this:
If(&a >10)
{
If(&a < 20)
{
}
}