B4J Question Pass parameter arguments to UI app from external application

kokoroayo

Member
Licensed User
Longtime User
Hi all,
I need to include Mobile Authentication to an Old VB6 application which I still maintain. I have succeeded in creating a UI B4J application to generate QRCode based on Erel's tutorial.
Now I want to be able to pass parameters to the UI app from the VB6 application so the app generates the QRCode and write the image as JPEG file where the VB6 application can pick it up immediately.
Any possible solution on that please?
 

DonManfred

Expert
Licensed User
Longtime User
The given parameters are in Args

B4X:
Sub AppStart (Form1 As Form, Args() As String)
...
End sub
 
Upvote 2
Solution
Top