No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: Try MSFlexiGrid instead, its alot better. | |
Re: use ado instead for your table searches | |
Re: Simple answer, no you cannot change individually a row in a list box, but what you can do is create a subform that emulates a listbox in the same way. obviously the subform itself will be designed bound to a table or query on your db and the data needs … | |
Re: 88omar, have you ever heard of arrays? I'm looking briefly at what your doing and the code looks extremely long and unneccesary. Why not create an array of the name 'Parish' for example then store all your values into that, and have things reference it. | |
Re: Private Sub cmdAdd_click() Dim str As String Dim rs As New adodb.Recordset str = txtfname.Value rs.Open "SELECT * FROM [Customer]", CurrentProject.Connection, adOpenStatic, adLockOptimistic ' With rs .addnew .Fields("FieldName") = str .Update .Close End With End Sub |
The End.