B4J Question When do code changes take effect?

Mikelgiles

Active Member
Licensed User
Longtime User
If I make code changes while in the run mode and stepping through code, any changes I make seem to get skipped while stepping through the code. Am I doing something wrong or do I need to stop and run again to test changes?
 

Cableguy

Expert
Licensed User
Longtime User
While running in debug mode, you can easily make code changes and the hit F11, which will restart the compiling/run process but faster than a full compile
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
After a code modification you see this

upload_2017-3-23_18-47-5.png


You can press Ctrl + S to update.
If you are in a subroutine the program will run the whole subroutine again.
 

Attachments

  • upload_2017-3-23_18-46-49.png
    upload_2017-3-23_18-46-49.png
    1.6 KB · Views: 165
Upvote 0
Top