Search results

  1. onur_can

    MACROS CAN ONLY BE CALLED 19 TIMES

    I think use macros for simple operations. VBA codes are much stronger and faster. If you want to be good, you should always use the foremost technique.
  2. onur_can

    What do you mean by the msg file?

    What do you mean by the msg file?
  3. onur_can

    Macro Maximize Form On Open

    If you want to hide the access window and you have a form opened at the beginning, the path I suggest is ideal. Window hiding and maximum sizing can be done in Autoexec macro.
  4. onur_can

    Which is the best approach to identify the current user in MS Access?

    You have 3 alternatives for this situation. The first is the code you have applied, The second is to write a DLookup command directly to the control source of the Text boxes, and the third is to open a set of records and check the records. Whichever of these is fast, VBA code you have applied.
  5. onur_can

    Macro Maximize Form On Open

    You can create a simple autoexec macro for this. If you command Open Form, then maximize and set the name of the macro to autoexec, you can automatically maximize the screen when you open the application.
  6. onur_can

    Hi, I'm Theo

    Hello Theo, welcome to us. :)
  7. onur_can

    Structure DB tables

    Use at least 3 tables for the image, using the best way to configure DB tables. 1-Staff Information 2-Symptoms 3-days Your staff master table will be associated with your main table in rechargeable tables.
  8. onur_can

    Compile Error In Query Expression

    I can suggest you a way like this. First, create an empty database, then transfer all the objects in your old database to your new database using table, form, report etc. import method. then run the Repair database command, it needs to be fixed.
  9. onur_can

    Type mismatch error

    (y) You're perfect! cheekybuddha
  10. onur_can

    CDO Mail sending attachment via location field

    Did the code in the 6th message fail again!
  11. onur_can

    CDO Mail sending attachment via location field

    I assume that the table field you assigned to the filename variable is not empty.
  12. onur_can

    CDO Mail sending attachment via location field

    Attachments.Add filename
  13. onur_can

    CDO Mail sending attachment via location field

    You already assigned FormLocation to a variable in the upper line, change the line that gives the error to .AddAttachment = filename
  14. onur_can

    I am here to solve your Access problems.

    I am here to solve your Access problems.
  15. onur_can

    Solved Gracefully quit Access

    After disabling the Close button in your form's design mode, add a button to your form and type the following line in the Click event. This is the most safe and gentle method of exit from MS Access. Application.Quit
  16. onur_can

    Highlight currently logged users in access / Mark user as active at the moment

    You can check your users' login and logout with two sub-procedures. You can then see which users log in and out with the help of a query. You can know that they are active by listing the users who are logged in and not logged out. I give the sub procedure codes below. You can place the LogInUser...
  17. onur_can

    help with DSUM

    plog is a correct naming that causes 2020 domain name mess. instead you should use a name that clearly describes your domain. Example: =DSum("ProductYear", "resources", "[Role ID]=" & [text124] & " AND [ref no]<>9999")
  18. onur_can

    Fill in the blanks

    Hello Why didn't you define the Account Number field as a mandatory field from the beginning?
  19. onur_can

    Solved Control subform record selection from parent form button.

    Hello You should first focus on the subform, then go to the New record with the help of DoCmd. Me.SubFormName.SetFocus DoCmd.GotoRecord ,"SubFormName",acNewRecord
  20. onur_can

    Suggest a movie to watch

    Red It's a very nice movie. A man's quest for justice Watch you will be impressed.
Back
Top Bottom