Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mjassalina
  • Content: Threads
  • Order by date
  1. mjassalina

    Search DataGridView by using ComboBox and TextBox

    Hi, Can anyone give me a source code where I can filter/Search based on combobox (As table column) and textbox (As specific keyword)? Thank you.
  2. mjassalina

    Force closed or Crashed when Clicking Update/Save Button Userform Excel VBA

    Hi, I encountered force closed when saving. Error was not displayed, Can anyone help me? Thank you. Here's my code. Private Sub cmdSave_Click() Dim cnn As New ADODB.Connection Dim rst As New ADODB.Recordset Dim qry As String cnn.Open...
  3. mjassalina

    Force closed when saving Userform Excel VBA

    Hi, I encountered force closed when saving. Error was not displayed, Can anyone help me? Thank you. Here's my code. Private Sub cmdSave_Click() Dim cnn As New ADODB.Connection Dim rst As New ADODB.Recordset Dim qry As String cnn.Open...
  4. mjassalina

    Add new record instead of Updating only

    Hi.. Good evening, Here I am again, Private Sub cmdSave_Click() ''''''''Add Validation here ''''''''''''' If Me.cmbShift.Value = "" Then MsgBox "Please enter the Shift Encountered", vbCritical Exit Sub End If If Me.txtItem.Value = "" Then MsgBox...
  5. mjassalina

    Cannot perform 'like' operation on system.double and system.string

    Cannot perform 'like' operation on system.double and system.string Hi, Im experiencing this error, Can anyone help me regarding this? Here's the code: LstTableBindingSource.Filter = "(Convert([Defect ID], 'System.String') LIKE '" & txtSearch.Text & "')" &...
  6. mjassalina

    Cannot perform 'like' operation on system.double and system.string

    Hi, Im experiencing this error, Can anyone help me regarding this? Here's the code: LstTableBindingSource.Filter = "(Convert([Defect ID], 'System.String') LIKE '" & txtSearch.Text & "')" & "OR (Sen LIKE '" & txtSearch.Text & "')"...

Part and Inventory Search

Back
Top