ReturnUrl Text 250 Pos Integer proc DotNet 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.System.Diagnostics.Process
//Default DMS url containing a %1 ReturnUrl := "DMS Document Url"; //Replace %1 with searchterm in hyperlink Pos := STRPOS(ReturnUrl,'%1'); ReturnUrl := DELSTR(ReturnUrl,Pos,STRLEN('%1')); ReturnUrl := INSSTR(ReturnUrl,VarText,Pos); proc := proc.Process; proc.StartInfo.FileName := ReturnUrl; proc.Start;
Comments
The chart part also gives an error that "not all dependancies for control are found".
I have activated the dotnet 3.5 (including 2.0 and 3.0) in the windows configuration.
But this doesn't have any effect.
Anyone else who has run into these issues?