I use the following command to print adb output on textbox.text
Private Sub BackgroundWorker1_DoWork(sender As Object, e As DoWorkEventArgs) Handles BackgroundWorker1.DoWork
TextBoxSamLog.AppendText(Environment.NewLine & Adb.ExecuteAdbCommand(Adb.FormAdbCommand("sideload", TextBoxsideload.Text)))
End Sub
does the job, but does not print the output and gets an error
How can we print the result on the textbox in the backgroundworker?