InputRequester in spider

Share your advanced knowledge/code with the community.
User avatar
Ar-S
Posts: 7
Joined: Tue Feb 25, 2014 5:27 pm

InputRequester in spider

Post by Ar-S »

Here is a small procedure to use an inputrequester() like in Pure.

Code: Select all

Procedure.s InputRequester(qu.s)
  !v_reponse = prompt(v_qu) 
  ProcedureReturn reponse.s
EndProcedure

Name.s = InputRequester("What's your name  ?")

Debug "Hello "+Name
~ Ar-S ~ - PB User - SB User
My Website : Dépannage Informatique dans l'Aude (11)
UnOfficial PB ressources : http://forumpb.ldvmultimedia.com/index.php
tj1010
Posts: 201
Joined: Wed May 27, 2015 1:36 pm
Contact:

Re: InputRequester in spider

Post by tj1010 »

Nice tip!

This reminds me I want to demo how to use dialog library to save a lot of time on big projects.
Post Reply