Recent content by arnelgp

  1. arnelgp

    Export Report to PDF with Index to Records

    you need third party tool to be able to do that. or maybe use Adobe automation or Debenu (Foxit toolkit).
  2. arnelgp

    Solved Key Events - Ctrl-Delete UnDetected

    Ctrl-Delete is a normal event of the Textbox to delete Text. so the "Normal" event will take place before your own (made event). here i remove the keyup event on both Main and subform. I add a Class on the subform (see Load event of the subform). i use Timer event on the subform...
  3. arnelgp

    Solved Key Events - Ctrl-Delete UnDetected

    i tried it with your sample db. even in edit mode (pencil), it detect the ctrl-del key. open the db in post 2 and edit edit a record and press ctrl-del.
  4. arnelgp

    Seeking a Moderator for the Moderators

    it says on her self-title: "Super Moderator · From .. ..super like superman. who can go against her except Lex.. she doesn't like birds, specially when asleep:
  5. arnelgp

    Solved Key Events - Ctrl-Delete UnDetected

    you also add Keypreview to the datasheet subform.
  6. arnelgp

    Seeking a Moderator for the Moderators

    I nominate Patricia.
  7. arnelgp

    Best approach for temporary A2003 installation

    install A2003 on "virtual machine" using VMWare or VirtualBox or Proxmox. the later 2 are free.
  8. arnelgp

    deleting a non empty directory

    copy all the Modules on the sample db to your db. you can call: ForceDeleteFolder "D:\YourFolderName" it will "force close" any open files then proceed deleting the folder.
  9. arnelgp

    deleting a non empty directory

    delete folder Sub DeleteFolderFSO(ByVal FolderPath$) Dim fso As Object Set fso = CreateObject("Scripting.FileSystemObject") If fso.FolderExists(FolderPath) Then fso.DeleteFolder FolderPath, True ' True = force delete non-empty folder MsgBox "Folder deleted...
  10. arnelgp

    Solved Disable Multiple Record Selection On Subform

    add Timer Event to your datasheet form: TimerInterval: 100 Private Sub Form_Timer() If Me.SelHeight > 1 Then Me.SelHeight = 1 End If End Sub
  11. arnelgp

    Setting up Sql Search to Sql Server backend using Connections

    try replacing * with percent (%) symbol. or if the query is within MS Access: strSql = "SELECT dbo.UserLog.ID, dbo.UserLog.UserProjectNo, dbo.UserLog.UserEmail, dbo.UserReg.EmpName, dbo.UserReg.EmpLevelA, " _ & "dbo.UserLog.UserIn, dbo.UserLog.UserOut " _ & "FROM dbo.UserReg INNER JOIN...
  12. arnelgp

    field variables in sql string

    i don;'t have Findfirst on my code. It just add a "filtered" records. anyway, your choice.
  13. arnelgp

    field variables in sql string

    you can also Add records using Recordsets: Public Sub inToDisc(dFamily As String, sFamily As String, nAccno As Double, sStr As String) Dim rstMain As DAO.Recordset Dim rstDisc As DAO.Recordset Set rstMain = oDB.OpenRecordset("Select * From Discrepancies Where (1=0);")...
  14. arnelgp

    How to ignore a mod?

    she is always on my post.. just give here a Flying Kiss.. (picture deleted).
  15. arnelgp

    ODBC-MS Access Connection Call Failed Error 3146

    Here is what ChatGPT has to say" Private Sub Form_Load() Const conChunkSize = 4 Dim lngOffset As Long Dim lngTotalSize As Long Dim chunk() As Byte Dim i As Long Dim rawData As Variant Dim data As Variant Dim rslt As String, j As Long ReDim...
Back
Top Bottom