use torque gui maker only its $99
lol..google c++ gui maker or sumtin...
/facepalm
Ok, this is how you want to do it.
Position the 4 text boxes in the appropriate positions your want. Name the 1st Input1, 2nd Input2, etc. Now make a button (This is what they press to check if all the 4 inputs are what you want them to be)
You'd use something like this to check the values of the text boxes.
function YourModNameCheckInputs()
{
%inputone = Input1.getValue();
%inputtwo = Input2.getValue();
%inputthree = Input3.getValue();
%inputfour = Input4.getValue();
if(%input1 $= "Whatyouwantittoequal" && %input2 $= "etc" && %input3 $= "etc" && %input4$= "etc")
{
YourModNameDoOutcomeFunction();
}
else
{
//message the client saying "That is incorrect" or something
}
}
Now you just set the buttons command to yourmodnameCheckInput(); and viola. Hopefully you get the general idea. Also if you want to wipe or set the textboxes into something use .setText('test") obviously.
Note that you could reduce the function size by just making if(%input1 $= "etc" into if(Input1.getValue() $= "etc" but I find it more convienient to make arguments for easier editing.