Search results

  1. F

    Construci '....LIKE.....' Error !!!!

    visualizzadati() is a function that write into varius textboxes values of the current record pointed by rstclienti..... Any error occour, simply the recordset rstclienti is empty.... If I write the same query into ACCESS QUERY she work (substituing % with *). i think that the problem is using...
  2. F

    Construci '....LIKE.....' Error !!!!

    the source code is this: Private Sub cmdcerca_Click() Dim rstclienti As ADODB.Recordset Set rstclienti = New ADODB.Recordset rstclienti.Open "SELECT * FROM clienti WHERE ragsociale LIKE 'A%'", CurrentProject.Connection, adOpenKeyset, adLockReadOnly If rstclienti.RecordCount > 0 Then...
  3. F

    Construci '....LIKE.....' Error !!!!

    Don't work also with % !!!!! Why????
  4. F

    Construci '....LIKE.....' Error !!!!

    I have a button with this code : Private Sub button_Click() .................. recordeset.open "SELECT * FROM tableuser WHERE username LIKE 'a*'" ............... end Sub Why the construct LIKE don'work ??? If I write the same string into a Query she work!!!!!!! Why the correct query don't...
  5. F

    List box with colors

    The function of colors is only that the video reading is simplest and intuitive. How can i use ConditionalFormatting ????? I am italian, i'm sorry for my terrible english!!!!!!! Thank you Pat Hartman.
  6. F

    List box with colors

    Which control can I use if i can't use list box ??????
  7. F

    List box with colors

    How I can do a form whit a list box whit different colors for each record ? Thank you
Back
Top Bottom