我有一个blueprism进程,它附加到一个网页并执行各种操作.该过程已经运行了六个月,但我现在收到一个初始错误"错误:内部:在WaitStart阶段发生AMI错误'等待详细信息'页面'更新声明' - 外部AppMan读取器线程退出之前响应来自查询"
此Blueprism无法执行任何在线操作.我收到一条消息说"读线程不再活着"
它似乎是由App Modeller中的辅助功能和UI识别方法引起的.
我有一个大的Microsoft Excel文件,在我办公室的用户之间共享.该文件有一个宏和一组数据验证.该文件在每三个月的最后两周使用.该文件在圣诞节前完美运行,但是,我们在3月份遇到了错误.文件打开时出现以下错误.

单击是后,出现以下内容.

宏的代码是:
Sub Update()
'Declaring Variables.
Dim Number_Rows As Long
Dim Oppt As String
Dim Array_Oppt() As String
Dim Rows_Array As Integer
'Stops screen refreshing to save time.
Application.ScreenUpdating = False
'removing any data validation and conditional formatting
Sheet1.Activate
Cells.Select
Selection.Validation.Delete
Selection.FormatConditions.Delete
'Assigning value to array.
Rows_Array = 0
ReDim Preserve Array_Oppt(Rows_Array)
'Moving "Other" rows to the end of the data
Sheet1.Select
Selection.AutoFilter Field:=23, Criteria1:= _
"OTHER"
Range("A2", Cells(Rows.Count, "A").End(xlUp)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select
Selection.EntireRow.Select
Range(Selection, Selection.End(xlDown)).SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheet8.Select
Sheet8.Range("A1").Select
ActiveSheet.Paste …Run Code Online (Sandbox Code Playgroud)