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 TouchToneTommy 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: *

  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 all, When I try to 2 different PC... Excel was not crashed. hmmm. something fishy.
  3. mjassalina

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

    Thank you for your reply..I checked also what you said, And yes, you're right, if incomplete will result to excel crash... But there is certain field that can be blank during encoding. hmmmmmmmmmmm...... Anyways, Thank you.
  4. mjassalina

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

    >Or more accurately, yes if certain fields are completed in the details frame. >Several of them unfortunately cause type mismatch errors if left empty - What do you think is the culprit?
  5. mjassalina

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

    I understand, you hacked in my vba passowrd :D. What do you mean? Is saved button working to you?
  6. mjassalina

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

    I'm Sorry, stongm.. here's the new file without vba password. just by-pass the login form.https://files.engineering.com/getfile.aspx?folder=d09cbb5a-1910-4bf4-b921-7fa57de871c8&file=Database1.zip
  7. mjassalina

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

    Can you look at my file? Thank you.https://files.engineering.com/getfile.aspx?folder=cde42109-627d-4f73-b542-0b3f5223c0aa&file=DRR.zip
  8. mjassalina

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

    hI combo, I already done using breakpoint method. Unfortunately, Random line, excel was crashed then re-opened as Autosave.
  9. mjassalina

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

    For Main Code. ' PROGRESS BAR CODES Sub Main() Dim i, tot As Integer tot = 5000 For i = 1 To tot If i Mod 5 = 0 Then ProgressBar i / tot End If Next i lblDone.Width = 0 lblPct.Visible = False End Sub
  10. mjassalina

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

    I can't see "Update Successful", Excel was forced closed automatically. EDIT: Even though I removed "Call Main" and "Call List box Data", Excel was forced closed automatically. Sub List_box_Data() Dim sh As Worksheet Set sh = ThisWorkbook.Sheets("Support1") sh.Cells.ClearContents Dim cnn...
  11. mjassalina

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

    Hi, Post was edited. Sorry, When I clicked the save button, excel was forced to close without any errors.
  12. mjassalina

    Force closed when saving Userform Excel VBA

    I'm sorry, I'm new to this. Thank you for the enlightenment.
  13. 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...
  14. 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...
  15. mjassalina

    Add new record instead of Updating only

    Thanks for the reply, fortunately, I found out the culprit. My double click code in listbox does not match with my textbox/ combobox.
  16. 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...
  17. 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 & "')" &...
  18. mjassalina

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

    IM so sorry. I'm new to programming. I will closed this thread. Thank you for the guidance. I appreciated your replies.
  19. 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