Search results

  1. arnelgp

    VBA code crashes after installing KB5064081 update

    hurry up you only have a month to inform: "Support for Microsoft Office 2016 ends on October 14, 2025. After this date, Microsoft will no longer provide security updates, bug fixes, or technical support for Office 2016. Continuing to use Office 2016 after this date will leave your devices...
  2. arnelgp

    Row Height of subform reverts back

    using the table and code i gave on post#8
  3. arnelgp

    Row Height of subform reverts back

    sorry, i tested on single datasheet subform and it does save the height. tested on two subform and it does Reset it's size back when opened the Main form again. what you can do is add another table to your db (tblRowHeight) with following fields: FormName (short text) RowHeight (long integer)...
  4. arnelgp

    Row Height of subform reverts back

    maybe you can save the Form when you close it: Docmd.Close acForm,me.name,acSaveYes or maybe your form got corrupted. try rebuilding the two subforms.
  5. arnelgp

    VBA code crashes after installing KB5064081 update

    i did not get any error using DDL SQL that i posted. but i did get error using your code: .columns("Id").Properties("Default") = 0
  6. arnelgp

    VBA code crashes after installing KB5064081 update

    Microsoft ADO Ext x.x for DDL and Security
  7. arnelgp

    VBA code crashes after installing KB5064081 update

    you can defer the Default part and add that Property using DDL SQL: Public Sub CreateTable(strPath As String) Dim cat As ADOX.Catalog Dim tbl As ADOX.Table Dim idx As ADOX.Index Dim flag As Boolean Set cat = New ADOX.Catalog cat.Create "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath...
  8. arnelgp

    Our programmer set up this form many years ago and I would like to find out where the code is

    Access2010/Frida, i added the conditional format to the textbox $_Percentage. the field source is a short text, but i did not change it to number. because i don't know if other forms are saving the value to this field. please see the Conditional Format of this textbox in design view.
  9. arnelgp

    Solved Use Windows Authentication for several Access FE's to connect to SQL Server backend

    google the code, it is available everywhere on the net: Function AttachDSNLessTable( _ stLocalTableName As String, _ stRemoteTableName As String, _ stServer As String, _ stDatabase As String, _ Optional stUsername As String = "", _ Optional stPassword As String = "")...
  10. arnelgp

    Solved Error about assigning Null value when clicking away from deleted form field

    the Save and Cancel buttons are of no use if you are not using Transation. when you press any button, the form will try to be saved before any of your button code will be called.
  11. arnelgp

    Our programmer set up this form many years ago and I would like to find out where the code is

    yes it is on the Conditional Format of Percentage (PC) textbox. to view, goto design view of your form, click on the Percentage (PC) textbox. on the Menu->Format->Conditional Formatting.. but unfortunately it is being format for it's value only and not "comparing" to the "cost price".
  12. arnelgp

    Batch file for updating local frontend Access database copy

    the suggestion is being offered to the OP and not to anyone.
  13. arnelgp

    Batch file for updating local frontend Access database copy

    whether Full version or runtime it will work. so with the .bat/.cmd file.
  14. arnelgp

    Batch file for updating local frontend Access database copy

    as suggested in post #13, you can use an MS Access Loader (or startup db) that wll check if there is new version of your FE somewhere and copy it (if it is the latest), then close the loader and start your normal Access app. there is such db on post #4 on this thread...
  15. arnelgp

    Solved (.Value) doesn't show textbox Value on Change() event

    just noticed this although i don't use salesforce.
  16. arnelgp

    scanning documents

    i think what you are trying to ask is a barcode scanner. because if it was a document, you can manually scan it using scanner/printer and save the pdf. in case of barcode, you need to buy a barcode reader. it has same functionality as a keyboard, so whatever you click to scan will be recognized...
  17. arnelgp

    Access instance remains in memory once closed

    use the complete code on the earlier post, not a simple open/close of access app. open the app, open a db ,Run a public sub/form/sub. close the db, and quit the app.
  18. arnelgp

    Solved MS Access Outlook VBA fixing

    change the definition of rs from: Dim rs As Recordset To Dim rs As DAO.Recordset
Back
Top Bottom