S
Sonicman
Ok here's what I am trying to do. I am sure it's already been posted many
times but i have been searching for an hour now and nothing seems to be quite
like I want.
I have a ComboBox here filled with this SQL command:
SELECT [TableMiroir].[Name_mir], [TableMiroir].[NoCie_mir], [TableMiroir].
[Address_mir], [TableMiroir].[City_mir] FROM [TableMiroir] ORDER BY [Name_mir]
;
On the ComboBox Change() event: I have this code:
Texte4.Value = ComboBox2.Column(1) '(where Texte4 is an unbound textbox)
This way I can mofify the content of the textbox after it's been updated. I
couldn't use the rowsource = Combobox2.Column(1) property of the TextBox
because it won't allow be to modify the value in the textbox.
My question is, If I use more textboxes like this (for name, address, city
etc) all populated from a column on the combobox, and then modify some text
(ex: make a correction to the address..), Is there a way to update the
selected record in the combobox using a save button ?
Unless someone have a better idea of achieving this ?
Thanks in advance for the help
Sonicman
times but i have been searching for an hour now and nothing seems to be quite
like I want.
I have a ComboBox here filled with this SQL command:
SELECT [TableMiroir].[Name_mir], [TableMiroir].[NoCie_mir], [TableMiroir].
[Address_mir], [TableMiroir].[City_mir] FROM [TableMiroir] ORDER BY [Name_mir]
;
On the ComboBox Change() event: I have this code:
Texte4.Value = ComboBox2.Column(1) '(where Texte4 is an unbound textbox)
This way I can mofify the content of the textbox after it's been updated. I
couldn't use the rowsource = Combobox2.Column(1) property of the TextBox
because it won't allow be to modify the value in the textbox.
My question is, If I use more textboxes like this (for name, address, city
etc) all populated from a column on the combobox, and then modify some text
(ex: make a correction to the address..), Is there a way to update the
selected record in the combobox using a save button ?
Unless someone have a better idea of achieving this ?
Thanks in advance for the help
Sonicman