2018年9月14日 星期五

多執行緒中的多執行緒錯誤


早先遇到一個問題,最近又被問到同樣問題,先做個記錄.

主程式 Load 一個 DLL 檔進來,而 DLL 內有個 Form ,
Form 裡面又用到另一個 COM 元件或另一執行緒,這時會出現以下錯誤 :
[ 目前的執行緒必須先設為單一執行緒 Apartment (STA) 模式,才能進行 OLE 呼叫。請確認您的 Main 函式上已經標記有 STAThreadAttribute ]

解決方式為

1. 在 Class 中先宣告一個全域變數
  1. ''宣告一個全域變數
  2. Dim _threadForm As Threading.Thread
  3.  

2. 加入 Delegate 委派呼叫
  1. ''--- 寫法一 直接帶參數的委派呼叫
  2. Private Delegate Sub OpenFormCallback(frm As Windows.Forms.Form)
  3. Private Sub OpenForm(frm As Windows.Forms.Form)
  4. If frm.InvokeRequired Then
  5. frm.Invoke(New OpenFormCallback(AddressOf Me.OpenForm), New Object() {frm})
  6. Else
  7. frm.ShowDialog()
  8. End If
  9. End Sub
  10. ''--- 寫法二 不帶參數的委派呼叫
  11. 'Private Delegate Sub OpenFormCallback()
  12. 'Private Sub OpenForm()
  13. ' If FormObject.InvokeRequired Then
  14. ' FormObject.Invoke(New OpenFormCallback(AddressOf Me.OpenForm), New Object() {})
  15. ' Else
  16. ' FormObject.ShowDialog()
  17. ' End If
  18. 'End Sub
  19.  
  20.  

3. 在要呼叫的 Function 中寫
  1. ''--- 寫法一 直接帶參數的委派呼叫
  2. _threadForm = New Threading.Thread(Sub() Me.OpenForm(Me.FormObject))
  3. ''--- 寫法二 不帶參數的委派呼叫
  4. '_threadForm = New Threading.Thread(AddressOf OpenForm)
  5.  
  6. _threadForm.SetApartmentState(Threading.ApartmentState.STA) '將執行緒指定為單一執行緒
  7. _threadForm.Start()
  8.  

以上,打完,收工,做記錄!

熱門文章