Hello!!
Love this forum. by the way, FishVal and
are geniuses.
I have a question regarding = comboxes to multiple listbox selection populates subform. My goal is NOT to use macros, very little VBA if possible, and check boxes would be ideal or multiple selecting! eg crtl+click
Fictional Scenario:
lets say I am a computer guy, I go to clients house and install software.
I went to johns house and installed the fallowing
Avg | firefox | foxit
I uninstalled
Norton | adobe pdf
I have already figured out or was rather taught on here to
cascade Combobox categories filter to last box..
What I would LOVE to do is, that last box ( lstSOFTWARE),
is select software in lstSOFTWARE and what is selected entered in new record below in subform which is linked to tblSOFTWAREDETA ILS.
and tblSOFTWAREDETA ILS is linked to TBLMACHINE so when i
look at clients machine, i can see which software is installed.
FORMS
==MACHINE==
(Embedded )====SOFTWAREDE TAILS
==SOFTWAREDETAI LS
(Embedded )====SOFTWAREIN STALLED
SOFTWAREDETAILS has listboxes at the top
=lstCategory=ls tSubCategory=ls tType=lstSoftwa re
When items in lstSoftware are selected or checked ,
subform SOFTWAREINSTALL ED with default view = DATASHEET
Adds what is checked in lstType!
Then linked to tblMACHINE
TABLE INFO
====tblSOFTWARE ====
====tblSOFTWARE DETAILS====
===tblMACHINE==
Thank you in advanced!
M@
Love this forum. by the way, FishVal and
Code:
NeoPa
I have a question regarding = comboxes to multiple listbox selection populates subform. My goal is NOT to use macros, very little VBA if possible, and check boxes would be ideal or multiple selecting! eg crtl+click
Fictional Scenario:
lets say I am a computer guy, I go to clients house and install software.
I went to johns house and installed the fallowing
Avg | firefox | foxit
I uninstalled
Norton | adobe pdf
I have already figured out or was rather taught on here to
cascade Combobox categories filter to last box..
What I would LOVE to do is, that last box ( lstSOFTWARE),
is select software in lstSOFTWARE and what is selected entered in new record below in subform which is linked to tblSOFTWAREDETA ILS.
and tblSOFTWAREDETA ILS is linked to TBLMACHINE so when i
look at clients machine, i can see which software is installed.
FORMS
==MACHINE==
(Embedded )====SOFTWAREDE TAILS
==SOFTWAREDETAI LS
(Embedded )====SOFTWAREIN STALLED
SOFTWAREDETAILS has listboxes at the top
=lstCategory=ls tSubCategory=ls tType=lstSoftwa re
When items in lstSoftware are selected or checked ,
subform SOFTWAREINSTALL ED with default view = DATASHEET
Adds what is checked in lstType!
Then linked to tblMACHINE
TABLE INFO
====tblSOFTWARE ====
Code:
tblsoftwareID softCat softSubCat softType title publisher url
Code:
softDetailsID machineFK softwareFK Installed softCat softSubCat softType title publisher Url
Code:
tblMachine clientFK softwareFK machineNotes
M@
Comment