T
Ticotion
Hi
I have a form where the user choose shift, Sektor, Cell, Date from 4
different comboboxes.
The cell combobox is based on a query that gives you the cells that
corisponds to a sektor when the sektor is choosed.
The query looks like this
SELECT TblCelle.CelleNr, TblCelle.CelleTxt, TblCelle.Sektor
FROM TblCelle
WHERE (((TblCelle.Sektor)=[Forms]![FrmReg]![Sektor]))
ORDER BY TblCelle.CelleNr;
TblCelle has the following fields
CellNo, CellTxt, CellVar, CellCat, Sektor
The CellVar can have two input either L or H
I have a text box and a label that should not be visible if the CellVar = L.
If the CellVar = H, it should be visible and ready for input
How can this be done?
Br.
Ticotion
I have a form where the user choose shift, Sektor, Cell, Date from 4
different comboboxes.
The cell combobox is based on a query that gives you the cells that
corisponds to a sektor when the sektor is choosed.
The query looks like this
SELECT TblCelle.CelleNr, TblCelle.CelleTxt, TblCelle.Sektor
FROM TblCelle
WHERE (((TblCelle.Sektor)=[Forms]![FrmReg]![Sektor]))
ORDER BY TblCelle.CelleNr;
TblCelle has the following fields
CellNo, CellTxt, CellVar, CellCat, Sektor
The CellVar can have two input either L or H
I have a text box and a label that should not be visible if the CellVar = L.
If the CellVar = H, it should be visible and ready for input
How can this be done?
Br.
Ticotion