Unfortunatly I am not a programmer, I just kinda muddle my way through this. I'm having a little trouble w/ this. What I'm trying to get is when a name is chosen in the drop down box of $ProjectFieldList$ can it just show the company name, and then automaticly fill in the number for that company in the PONumber field?
I'm providing a bit of the code I'm working with here
I realize that a resolution to this problem is ALOT to ask for. But if anyone has any ideas, or can say atleast that it can't be done.
note: $ProejectFieldList$ refers to a .txt file filled with a list of client names located on the server. (the text file can be modified if required to make this work) This program has a .dat file that has the references for all the $$ The bigest problem is that the text file with client names and numbers needs to be updated constantly by someone who has no idea how to add info into a html document. And dealing with over 3000 names+#'s coded into the html would be a pain.
<!-- Row12 //-->
<tr ID = "VRow12">
<td valign="top" bgcolor="#$$formBGColor" align="right" width=150><div ID = "Row12"><nobr><b>Project</b></nobr></div></td>
<td width=5> </td>
<td width=150 valign="top">
<select size="1" name="Project" ID="Project">
<option value="--" selected></option>
$ProjectFieldList$
</select>
</td>
</tr>
<!-- Row12 End //-->
<!-- Row13 //-->
<tr ID = "VRow13">
<td valign="top" bgcolor="#$$formBGColor" align="right"><div ID = "Row13"><nobr><b>P.O.
Number</b></nobr></div></td>
<td> </td>
<td valign="top"><input type="text" name="PONumber" ID="PONumber" size="30" value = "$$PONumberDefault"
maxlength="79"></td>
</tr>
<!-- Row13 End //-->
Here is a sample of the text file
big shot somebody,01235284563547
client someone,12345678901234
client someone else,00123456789012
das client,23456789012361
das other client,45678901237123
the lemmings,25484756241544
I thought I might have seen somthing out there that would have made this doable if in the text file, the "," was replaced with " -- " or somthing, but that was awhile ago, before this challange came up.
If your confused by this, welcome to my world, just sit back and laugh with me.
THANK YOU FOR YOUR HELP
I'm providing a bit of the code I'm working with here
I realize that a resolution to this problem is ALOT to ask for. But if anyone has any ideas, or can say atleast that it can't be done.
note: $ProejectFieldList$ refers to a .txt file filled with a list of client names located on the server. (the text file can be modified if required to make this work) This program has a .dat file that has the references for all the $$ The bigest problem is that the text file with client names and numbers needs to be updated constantly by someone who has no idea how to add info into a html document. And dealing with over 3000 names+#'s coded into the html would be a pain.
<!-- Row12 //-->
<tr ID = "VRow12">
<td valign="top" bgcolor="#$$formBGColor" align="right" width=150><div ID = "Row12"><nobr><b>Project</b></nobr></div></td>
<td width=5> </td>
<td width=150 valign="top">
<select size="1" name="Project" ID="Project">
<option value="--" selected></option>
$ProjectFieldList$
</select>
</td>
</tr>
<!-- Row12 End //-->
<!-- Row13 //-->
<tr ID = "VRow13">
<td valign="top" bgcolor="#$$formBGColor" align="right"><div ID = "Row13"><nobr><b>P.O.
Number</b></nobr></div></td>
<td> </td>
<td valign="top"><input type="text" name="PONumber" ID="PONumber" size="30" value = "$$PONumberDefault"
maxlength="79"></td>
</tr>
<!-- Row13 End //-->
Here is a sample of the text file
big shot somebody,01235284563547
client someone,12345678901234
client someone else,00123456789012
das client,23456789012361
das other client,45678901237123
the lemmings,25484756241544
I thought I might have seen somthing out there that would have made this doable if in the text file, the "," was replaced with " -- " or somthing, but that was awhile ago, before this challange came up.
If your confused by this, welcome to my world, just sit back and laugh with me.
THANK YOU FOR YOUR HELP