Hello,
When using Visual Studio to debug FlexSim by attaching process, is it possible to refresh FlexSim views while code stops at breakpoint in Visual Studio?
For example function below, output console won't update until code in Visual Studio exits break mode. So the effect of each line of codes won't be visible in FlexSim.
void dllfunction1(FLEXSIMINTERFACE) { print("A"); // breakpoint here print("B"); }