MajP
You've got your good things, and you've got mine.
- Local time
- Today, 10:57
- Joined
- May 21, 2018
- Messages
- 9,988
example
probably need something like
.Recordsource = "Select * from tblTransactionMain where transTypePK <=2"
Code:
Case "Receipt"
With Me
.lblReceipt.Visible = True
.lblTransfer.Visible = False
.lblAdjustment.Visible = False
.EntityFK.Visible = False
.EntityFK_Label.Visible = False
.VendorsFK.Visible = True
.VendorsFK_Label.Visible = True
.TranTypeFK.RowSource = "SELECT TranTypePK, TranType from tblTranTypes WHERE TranTypePK<=2"
.TranTypeFK.ColumnCount = 2
.TranTypeFK.ColumnWidths = "0;1cm"
.TranTypeFK.DefaultValue = 1
End With
probably need something like
.Recordsource = "Select * from tblTransactionMain where transTypePK <=2"