Search results

  1. onur_can

    Incorrect number of records showing in a datasheet form

    The filter you added affects your Query Result. To be sure, remove the filter or try replacing the filter.
  2. onur_can

    Refresh issues in cbo of Forms

    The line marked with yellow tape will have an exclamation mark after the form name, not a period.
  3. onur_can

    Refresh issues in cbo of Forms

    When you enter data into cbo, you should use the code cboName.Requery to query it. Likewise, when you open another form on an open form, you can update the cbo in the open form when the form you opened later is closed. You must use the command Forms!FormName!CboName.Requery
  4. onur_can

    Send Email From Access Code

    This topic is discussed in detail in the link below. Sending Mail Via Ms Access Form
  5. onur_can

    History column for date field

    You can follow a path like this; Create a new field in the query and name it Date and History, then as an expression; Set Date & "-" & History. Hide other Date and History columns, uncheck Show. Now Date and History will be shown in the same column.
  6. onur_can

    Hello!

    Welcome aboard, zeber! :)
  7. onur_can

    How to step through a table one record at a time

    I understood the situation as follows: There is a problem with the record selection, not the label printing, what can be done in this case: Add 1 Yes / No field to the table in the record source and display it in the form, then mark which records you will print. You give the value Yes to the...
  8. onur_can

    Union

    The purpose of a union query is to combine 2 or more tables with the same exact table structure into a single structure. I agree with all of the friends. Therefore, logically, the number of columns and data types should also be the same. Finally, data duplicated in the union query is not shown...
  9. onur_can

    Randomly Passed Parameters

    You should be careful when using query parameters in VBA. Because the syntax is written differently for each variable type you specify in the parameter. It shows this in the error you received. I think there is an error in field names, variable names and table names. Or the domain name you used...
  10. onur_can

    Solved Lost possibility to add hyperlink

    Här är det!
  11. onur_can

    Solved Lost possibility to add hyperlink

    DBguy'u nerede tıkladığınızı göstermiyo r
  12. onur_can

    Solved Lost possibility to add hyperlink

    Jag uppdaterade meddelandet 5 I updated message 5
  13. onur_can

    Solved Lost possibility to add hyperlink

    Du kan inte lägga till den eftersom genvägsmenyn för din underform är i stängd position, du måste öppna den. Genvägsmenyn för subformegenskaper blir ja
  14. onur_can

    Display results of an SQL query in a MsgBox

    What do you mean when you say SQL result? If the result contains only one data, you can assign the result of this query to a text box on the form. You can also show the value of this Textbox with MsgBox message. However, if you will show results in a list, you can design a separate form instead...
  15. onur_can

    Can this be done with a query?

    I'm not sure if this event can be done in the query, but I think it will be done with VBA code.
  16. onur_can

    32bit or 64bit

    You should keep in mind that some new version programs may not support older operating systems. For example, Access 2019 is not supported on Windows XP.
  17. onur_can

    No Such Interface Supported

    Have you tried the command line? regsvr32 c: \ windows \ system32 \ actxprxy.dll
  18. onur_can

    32bit or 64bit

    Friends, As you know, the program writers know. After writing the first version of a program and delivering it to the customer, the customer starts to use it. But over time, some suggestions and e-mails are received from the customer about meeting the needs. Sometimes there are unnecessary...
  19. onur_can

    Dcount week, starting Monday instead of Sunday

    You can find detailed explanation on the link. DatePart Detail
  20. onur_can

    32bit or 64bit

    I always favor innovation, the top versions are the best. That's why I try to keep my system update, whether it's windows or an office. and this is of great benefit to me. 64 bit is better for you if you are working with very large data sets.
Back
Top Bottom