angel_ Well-Known Member Licensed User Longtime User Jul 6, 2023 #1 After the BANano.Build(DirBuild) line in AppStart, I want to call a Sub to add some files to the Build folder so that Sub is not transpiled, is it possible to exclude this sub or a whole module?
After the BANano.Build(DirBuild) line in AppStart, I want to call a Sub to add some files to the Build folder so that Sub is not transpiled, is it possible to exclude this sub or a whole module?
Solution alwaysbusy Jul 6, 2023 put it between #If B4J - #End If B4X: #if B4J Sub test Dim xui As XUI xui.MsgboxAsync("Hallo", "Test") End Sub #End If
put it between #If B4J - #End If B4X: #if B4J Sub test Dim xui As XUI xui.MsgboxAsync("Hallo", "Test") End Sub #End If
alwaysbusy Expert Licensed User Longtime User Jul 6, 2023 #2 put it between #If B4J - #End If B4X: #if B4J Sub test Dim xui As XUI xui.MsgboxAsync("Hallo", "Test") End Sub #End If Upvote 0 Solution
put it between #If B4J - #End If B4X: #if B4J Sub test Dim xui As XUI xui.MsgboxAsync("Hallo", "Test") End Sub #End If
angel_ Well-Known Member Licensed User Longtime User Jul 6, 2023 #3 After transpiling the code, this error appears, everything seems to work correctly, should I ignore the error? Upvote 0
After transpiling the code, this error appears, everything seems to work correctly, should I ignore the error?
alwaysbusy Expert Licensed User Longtime User Jul 6, 2023 #4 If you mean that last line then this is a normal B4J error as BANano reports to be finished. Hard to say without seeing what it does. Upvote 0
If you mean that last line then this is a normal B4J error as BANano reports to be finished. Hard to say without seeing what it does.
angel_ Well-Known Member Licensed User Longtime User Jul 8, 2023 #5 You are right, thank you Upvote 0