L
ldiaz
hello all
I have a Data Base where we Update Production Information when the Work
Order pass to every process,
If I scan the W.O. this is the information it brings
*-BFG10423221000210001-*
I want to extract the number 1042322, because this is the number that is on
the DB, these number are always 7 digits,
and is located 12 digits before of the end of the text
then I want to make this operation;
==============================================
Private Sub Combo18_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[IDVolatilDateID] = " & Str(Nz(Me![Combo18], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
===============================================
this [Combo18] find the record where we can update production information,
so making this operatio will be not necesary type the W.O number (1042322) in
that combo box, because the system will make automatically
please help
I have a Data Base where we Update Production Information when the Work
Order pass to every process,
If I scan the W.O. this is the information it brings
*-BFG10423221000210001-*
I want to extract the number 1042322, because this is the number that is on
the DB, these number are always 7 digits,
and is located 12 digits before of the end of the text
then I want to make this operation;
==============================================
Private Sub Combo18_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[IDVolatilDateID] = " & Str(Nz(Me![Combo18], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
===============================================
this [Combo18] find the record where we can update production information,
so making this operatio will be not necesary type the W.O number (1042322) in
that combo box, because the system will make automatically
please help