Страница: 1 |
|
Вопрос: Adodc1 и Recordset?
|
Добавлено: 16.11.05 07:21
|
|
Автор вопроса: Rafail
|
Привет!
Начал с АДО заниматься и у меня не получаеться поиск,допустим по имени
поля в Table1(mdb файл).Используеться Adodc1.Recordset...
В DAO работает
Data1.Recordset.FindFirst "Name = '" _
& Trim(InputBox("Введите имя:")) & "'"
If Data1.Recordset.NoMatch Then MsgBox "Имя не найдено"
А вот прописываю
Adodc1.Recordset.FindFirst "Name = '" _
& Trim(InputBox("Введите имя:")) & "'"
If Adodc1.Recordset.NoMatch Then MsgBox "Имя не найдено"
В общем он ищет и находит,но NoMatch-не понимает,кто нибудь может подскажет!?
Ответить
|
Номер ответа: 1 Автор ответа: Hunter2003
ICQ: 287314254
Вопросов: 14 Ответов: 72
|
Профиль | | #1
|
Добавлено: 17.11.05 09:51
|
Используй метод Find (Criteria, SkipRows, SearchDirection, Start), где:
Criteria
A String value that contains a statement specifying the column name, comparison operator, and value to use in the search.
SkipRows
Optional. A Long value, whose default value is zero, that specifies the row offset from the current row or Start bookmark to begin the search. By default, the search will start on the current row.
SearchDirection
Optional. A SearchDirectionEnum value that specifies whether the search should begin on the current row or the next available row in the direction of the search. An unsuccessful search stops at the end of the Recordset if the value is adSearchForward. An unsuccessful search stops at the start of the Recordset if the value is adSearchBackward.
Start
Optional. A Variant bookmark that functions as the starting position for the search.
А когда свойство Adodc1.Recordset.EOF=True, то поиск не дал результатов.
Ответить
|
Страница: 1 |
Поиск по форуму