P Puthut Wibowo Member Licensed User Nov 13, 2019 #1 Hello All, Why everytime I activate XUIViews libraries, the following log notification appears: B4X: Compiling code. Error Error compiling program. Error description: Current declaration does not match previous one. Previous: {Type=Change,Rank=0, RemoteObject=False} Current: {Type=Float,Rank=0, RemoteObject=True} Error occurred on line: 76 Dim change As Float = (DateTime.Now - LastTime) / 1000 * ValueChangePerSecond but if XUIViews is disabled my code can run Attachments Error_XUI.jpg 54.3 KB · Views: 276 libaries.jpg 57.2 KB · Views: 243
Hello All, Why everytime I activate XUIViews libraries, the following log notification appears: B4X: Compiling code. Error Error compiling program. Error description: Current declaration does not match previous one. Previous: {Type=Change,Rank=0, RemoteObject=False} Current: {Type=Float,Rank=0, RemoteObject=True} Error occurred on line: 76 Dim change As Float = (DateTime.Now - LastTime) / 1000 * ValueChangePerSecond but if XUIViews is disabled my code can run
DonManfred Expert Licensed User Longtime User Nov 13, 2019 #2 Puthut Wibowo said: Error description: Current declaration does not match previous one. Previous: {Type=Change,Rank=0, RemoteObject=False} Current: {Type=Float,Rank=0, RemoteObject=True} Click to expand... you have a variable change of type "Change". Now you use a variable change of type "Float". Upvote 0
Puthut Wibowo said: Error description: Current declaration does not match previous one. Previous: {Type=Change,Rank=0, RemoteObject=False} Current: {Type=Float,Rank=0, RemoteObject=True} Click to expand... you have a variable change of type "Change". Now you use a variable change of type "Float".
P Puthut Wibowo Member Licensed User Nov 13, 2019 #3 Finally, i change module name from "change" to "xxx" and it works Thanks DonManfred said: you have a variable change of type "Change". Now you use a variable change of type "Float". Click to expand... Upvote 0
Finally, i change module name from "change" to "xxx" and it works Thanks DonManfred said: you have a variable change of type "Change". Now you use a variable change of type "Float". Click to expand...