{"searchBar":{"inputPlaceholder":"Search by keyword or ask a question","searchBtn":"Search","error":"Please enter a keyword to search"}}
{}
{"support":{"yesButton":"Yes","noButton":"No","feedback":{"title":"What can we do to improve?"},"submitButton":"Submit","successMessage":"Thank you for your feedback","title":"Was this helpful?","feedbackPercentLabel":"of people found this helpful","captcha":{"error":"Please tick the box"}}}
Goals and Symptoms
If you minimize the window of the UnitySFCViewDemo.exe the program crashes.
Facts and Changes
Unity SFCVIEW V2.0
UnitySFCViewDemo.exe
Causes and Fixes
If you have Visual Basic you can solve the problem by changing the source "frmDemoMain.frm" of the UnitySFCViewDemo.exe.
faulty part:
Private Sub Form_Resize()
SFCView1.Height = Me.Height - 1100
If SFCView1.ViewMode <> sfcDetailsSimple Then SFCView1.Width = Me.ScaleWidth
End Sub
correction:
Private Sub Form_Resize()
If Me.Height - 1100 > 0 Then SFCView1.Height = Me.Height - 1100
If SFCView1.ViewMode <> sfcDetailsSimple Then SFCView1.Width = Me.ScaleWidth
End Sub