Recent content by mehdi.ar

  1. M

    Microsoft Access: Edge Browser Control is finally here :)

    HI Is it possible to create a dynamic URL link for edge browser? I want o to change the view every time i update the combo box Private Sub Combo4_AfterUpdate() Dim pdfPath As String pdfPath = Me.Combo4.Value Me.EdgeBrowser0.Navigate pdfPath Me.EdgeBrowser0.requery...
  2. M

    Renaming a Form object in VBA...

    it's working :love::love::love: Tnx first you need Public frm, objOldName, objNewName ''remember you cant use me.form.name'' Public Sub test1(frm As String, objOldName As String, objNewName As String) DoCmd.OpenForm frm, acDesign Forms(frm).Controls(objOldName).Name = objNewName...
Back
Top Bottom