I have made an app that auto fills out a web form. There is one option I want to let the user choose before the app continues automatically
Would you just parse through the code from the site to fill in the combo box, or is there another way to get this info into the combo box?
Another option would be for a msgbox to popup with instructions for the user to directly interact with the site and then continue when ok in the msgbox is clicked. I don't know how to implement this option.
here is a sample of the webpage code:
Would you just parse through the code from the site to fill in the combo box, or is there another way to get this info into the combo box?
Another option would be for a msgbox to popup with instructions for the user to directly interact with the site and then continue when ok in the msgbox is clicked. I don't know how to implement this option.
here is a sample of the webpage code:
Code:
<INPUT TYPE=TEXT NAME="Name" VALUE=" " left:150; top:131; width:800; z-index:1<P><BR>
<SELECT NAME="Template" SIZE="1" style="left:150; top:300; width:200px;">
<OPTION VALUE=>Select Batch Template
<OPTION VALUE=" AD_PEG "> Ad Peg Sign </option>
<OPTION VALUE=" AD_SHELF "> Ad Shelf Sign </option>
<OPTION VALUE=" BIN "> Bulk Bin Sign </option>
<OPTION VALUE=" BULKTES2 "> Test Bulk Stack Sign 2 </option>
<OPTION VALUE=" BULKTEST "> Test Bulk Stack Sign </option>
<OPTION VALUE=" BYOPCBIN "> BYOPC Bin Sign </option>
<OPTION VALUE=" CH_BULK "> Chicago Bulk Stack Sign </option>
<OPTION VALUE=" CH_SHELF "> Chicago Shelf Sign </option>
<OPTION VALUE=" DISPLAY "> Display Sign </option>
<OPTION VALUE=" ENDCAP "> Endcap Sign </option>
<OPTION VALUE=" FAD_PEG "> Future Ad Peg Sign </option>
<OPTION VALUE=" FAD_SHLF "> Future Ad Shelf Sign </option>
<OPTION VALUE=" L_PROD "> Letter Product Sign </option>
<OPTION VALUE=" MONTHLY "> Monthly Template </option>
<OPTION VALUE=" PEG_NOPR "> No Price Peg Sign </option>
<OPTION VALUE=" PEG_SIGN "> Peg Hook Sign </option>
<OPTION VALUE=" S_PROD "> Small Product Sign </option>
<OPTION VALUE=" SHELF "> Shelf Sign </option>
</SELECT>