Skip Headers

Oracle® Objects for OLE Developer's Guide
10g Release 1 (10.1)

Part Number B10118-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Find_Click() Event Procedure

Our Find click event procedure looks like:

Private Sub cmdFind_Click()

Dim FindClause As String

Dim SingleQuote As String

ErrMsg = ""

SingleQuote = "'"

On Error GoTo err_find

'build the find clause:

'make our query case insensitive by converting the names to upper case

FindClause = "UPPER(ename) = " & SingleQuote & UCase(txtEname) & SingleQuote

EmpDynaset.FindFirst FindClause

If EmpDynaset.NoMatch Then

MsgBox "Could not find record matching Employee Name " & txtEname

EmpDynaset.MoveFirst

End If

Call EmpRefresh

Exit Sub

err_find:

If ErrMsg <> "" Then

MsgBox ErrMsg

Else

MsgBox Error$

End If

End Sub