G
Guus van Waardenburg
Hi,
I've made a form where collegues can select clauses for a certain document.
In this form I have a listbox where they can select a Clause and two
textboxes where in one apears the title of the clause and in the other
appears the text of the clause.
My Colleagues can modify the text.
Now sometimes there are changes in the text wich are permanent, it would be
nice for them when they can save te changes in the text to the code I
produced. Is this posible in any way? Here is some code wich I used:
Private Sub ListBox1_Change()
Dim sClause As String
sClause = ListBox1.Value
Select Case sClause
Case "Clause1"
TextBox1.Value = "Title Clause"
TextBox2.Value = "Text Clause"
I've made a form where collegues can select clauses for a certain document.
In this form I have a listbox where they can select a Clause and two
textboxes where in one apears the title of the clause and in the other
appears the text of the clause.
My Colleagues can modify the text.
Now sometimes there are changes in the text wich are permanent, it would be
nice for them when they can save te changes in the text to the code I
produced. Is this posible in any way? Here is some code wich I used:
Private Sub ListBox1_Change()
Dim sClause As String
sClause = ListBox1.Value
Select Case sClause
Case "Clause1"
TextBox1.Value = "Title Clause"
TextBox2.Value = "Text Clause"