Recent content by bladu

  1. B

    Insert an image in a form

    Hi, mithani The image in the properties is always displayed, but in the Design View it doesn´t appear. Regards
  2. B

    The expression you entered has a function name that Microsoft Office Access cant find

    Hi, I have a form, which has the following two field camps: - Number of plane - Sheet of plane The aim of the form is to show how much revisions are with these two information fields. For this reason , when you click a button to show the results, it executes a query which gives the results...
  3. B

    Ruled out the last row of this query

    Thank you very much for your explanation. Regards
  4. B

    Insert an image in a form

    Hi, How can I insert an small image in a form? I have tried to use the control image at the top of the form, but the image doesn`t appear, the Visible property is enable. In the top of the form also, there is color background Regards
  5. B

    Close button of the form not appears, but is enabled

    Hi, When I execute the access database, the primary form appears without maximize, minimize, and close buttons. In spite of these buttons are enabled in the properties of the form. But When I open the form clicking in View, these buttons appear. I want to see these buttons al the time, but I...
  6. B

    Ruled out the last row of this query

    Hi John your example works wonderfully!!!!, you are very good There is only thing that I don`t understand, Why you use "Fecha_ult_revision" field, I think It would be enough using Numero, Hoja, Revision fields. I have tried to delete "Fecha_ult_revision" field, but with this manner it doesn`t...
  7. B

    Ruled out the last row of this query

    Hi jjturner, First of all, thanks for the answer. Trying to do the same in Mysql I have tried the following query: SELECT DISTINCT C1.Revision, C1.Fecha_ult_revision FROM Control AS C1 INNER JOIN Control AS C2 ON C1.Revision<C2.Revision WHERE (((C1.Numero)=[Num]) AND ((C1.Hoja)=[hoj])) ORDER...
  8. B

    Ruled out the last row of this query

    Hi, I have the following query, SELECT Control.Revision, Control.Fecha_ult_revision FROM Control WHERE (((Control.Numero)=[Num]) AND ((Control.Hoja)=[hoj])) ORDER BY Control.Revision; The aim of this query is try to obtain filtered the list of revisions, and its revision date...
Back
Top Bottom