Passing Parameters from one application to another - Printable Version +- BP Forums (https://bpforums.info) +-- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=55) +--- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=56) +---- Forum: VB.NET (Visual Basic 2010/2008) (https://bpforums.info/forumdisplay.php?fid=8) +---- Thread: Passing Parameters from one application to another (/showthread.php?tid=361) |
Passing Parameters from one application to another - vbcodegeek - 07-04-2011 Brandonio21, I recently saw your video on youtube (http://www.youtube.com/watch?v=r7V2vLK9rHc ) Passing Parameters from one application to another. I was wondering if it is possible to not just pass text but change a boolean from true to false. Am i making any sense? Re: Passing Parameters from one application to another - brandonio21 - 07-04-2011 Yes, you are making sense. I'm not sure if you can pass a boolean along as a parameter. You can always pass "true" and "false", and say Code: if str = "true" then bln = true Re: Passing Parameters from one application to another - vbcodegeek - 07-05-2011 Thanks! <!-- s --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="" title="Very Happy" /><!-- s --> This should really help me out Re: Passing Parameters from one application to another - brandonio21 - 07-05-2011 No problem! Good luck with your applications!! |