How do I make a GUI that when opened, will have dropboxes, textboxes, etc, apply button at the bottom, that will allow me to change certain parameters/lines of a PIC16 program file once I click apply, rather than having to manually open the program and type in the changes each time.
Kinda like a program configuration GUI.
Like for example there is a line
I would like to have a textbox in the GUI where I can just type in the number I want to change d'6' to and when I click apply it will automatically edit the .asm file.
Kinda like a program configuration GUI.
Like for example there is a line
Code:
movlw d'6'
movwf byte
I would like to have a textbox in the GUI where I can just type in the number I want to change d'6' to and when I click apply it will automatically edit the .asm file.