C
C#''er
OK. Im kind of getting this access thing, but Im having a little trouble with
this. I have a table with fields "County" & "LCO", each county belongs to an
LCO and I wish to auto fill a field in an Access form. For example, there is
an LCO named "MIAMI-EAST" and Monroe County belongs to the MIAMI-EAST LCO. I
want it so when you type "Monroe" in the county field, the "LCO" field auto
fills with "MIAMI-EAST". If I were building a windows form in Visual Studio
using C#, It would go something like:
if(countyTextBox.text == "Monroe")
{
lcoTextBox.text == "Miami East"
}
How would I do this in an Access form?
this. I have a table with fields "County" & "LCO", each county belongs to an
LCO and I wish to auto fill a field in an Access form. For example, there is
an LCO named "MIAMI-EAST" and Monroe County belongs to the MIAMI-EAST LCO. I
want it so when you type "Monroe" in the county field, the "LCO" field auto
fills with "MIAMI-EAST". If I were building a windows form in Visual Studio
using C#, It would go something like:
if(countyTextBox.text == "Monroe")
{
lcoTextBox.text == "Miami East"
}
How would I do this in an Access form?