Jump to content

zsleo

Members
  • Content Count

    16
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. zsleo

    TEdgeBrowser : "Unsafe attempt to load URL"

    Well detected :). I have simplified the path string. During installation the "test" subfolder is permissioned for read/write and the "x_01.xml" is created on the fly for each user with with the substituted reference text, images and tables for specific to the user's pharmaceutical product selection.
  2. zsleo

    TEdgeBrowser : "Unsafe attempt to load URL"

    This is very high end and complex clinical information and I can't take the risk of incorrect/mal conversion to html.
  3. zsleo

    TEdgeBrowser : "Unsafe attempt to load URL"

    I did consider this but my app is deployed in some very locked down healthcare institutions through to very non-tech savvy sites. Deployment and ongoing support costs are an issue.
  4. zsleo

    TEdgeBrowser : "Unsafe attempt to load URL"

    I will give this a try.
  5. zsleo

    TEdgeBrowser : "Unsafe attempt to load URL"

    Thank you. Also, the app that controls that data is unfortunately installed in that location.
  6. I have an app that uses TEdgeBrowser to display an XML file that points to a "very rich" XSL and DTD files that all reside in the same folder and sub-folder. When attempting to load the file file:///C:/program%20files/test/x_01.xml The errors are Does anyone have a workaround? Some research suggests that starting the Edge Browser with the parameter --allow-file-access-from-files should solve the problem. How to I force TEdgeBrowser to start with parameters? TIA P.S. Just edited to correctly reflect folder structure and to protect the innocent 🙂
  7. zsleo

    RDP and RD Web deployment of Delphi VCL apps

    No need to apologise. That is my problem. My thought was to give the user a feature whereby they could see and select from a list of opened windows.
  8. zsleo

    RDP and RD Web deployment of Delphi VCL apps

    Thank you! I will definitely try this
  9. zsleo

    RDP and RD Web deployment of Delphi VCL apps

    No. I want to know how to populate the window list as the RD Web environment. i.e in the same area as the red box
  10. I am using Delphi 11.1 Enterprise. I have an app that is now very commonly deployed and accessed though Windows RD Web. Often one of my forms “disappears” behind another for and the use thinks my application has hung because they cannot take control of the form that is displayed uppermost. There is a feature used by Microsoft to display the apps and sometime forms for each session as shown in the red box in Picture_1.png. The form types in my app are both modal and non-modal. Thanks in advance for your assistance
  11. zsleo

    Active Directory unlock a user

    Thank you. I looked and it seems to put me on the correct track to solve my problem.
  12. zsleo

    Debugger Exception Notification

    Thank you so much!
  13. Can someone please advise how to turn this popup off. TIA
  14. I have tried ADSI and a number of other APIs and I am successfully retrieving user credential but can find how to change the ADS user to unlock a user. Does anyone direct me how to or know where to find Delphi code to unlock an Active Directory user account. I could only retrieve status but not find a method to update the ADS record. I am using the ADSI API. Here is and extract of the code: procedure TForm1.btn3Click(Sender: TObject); var lv_User: TADSIUserInfo; lv_Err: string; lv_P: TPassword; begin lbl1.Caption := ''; if ads1.GetUser(gv_Domain, kbmtblUsersUserName.AsString, lv_User, lv_Err) then begin chk1.Checked := lv_User.LockedOut; (... other code to display AD User Details...) end else lbl1.Caption := 'User not found'; end; TIA
  15. Thank you all so much! I forgot all about the tracing functionality! I knew what the error log was telling me, I just could not find where it was falling over. I will report the issue to the developer of the library suite I am using. Thanks again! Problem solved...
Ă—