<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>How to define a program programatically</title>
		<link>http://tibasicdev.wikidot.com/forum/t-238424/how-to-define-a-program-programatically</link>
		<description>Posts in the discussion thread &quot;How to define a program programatically&quot; - Create another program from within a program</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 10 Jul 2026 10:50:41 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-238424#post-1522000</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-238424/how-to-define-a-program-programatically#post-1522000</link>
				<description></description>
				<pubDate>Sun, 29 Jul 2012 20:36:20 +0000</pubDate>
				<wikidot:authorName>George Litauszky</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>makepr()<br /> Prgm<br /> Define newprg()=Prgm<br /> Disp &quot; I am the new.&quot;<br /> EndPrgm<br /> EndPrgm</p> <p>You can see the new file with the VarLink. If the newprg is a local variable, the defined newprg is aviable only ultil makepr running:</p> <p>makepr()<br /> Prgm<br /> Local newprg<br /> Define newprg()=Prgm<br /> Disp &quot; I am the new.&quot;<br /> EndPrgm<br /> newprg()<br /> EndPrgm</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-238424#post-780584</guid>
				<title>Re: How to define a program programatically</title>
				<link>http://tibasicdev.wikidot.com/forum/t-238424/how-to-define-a-program-programatically#post-780584</link>
				<description></description>
				<pubDate>Tue, 11 May 2010 02:09:59 +0000</pubDate>
				<wikidot:authorName>Geoffish</wikidot:authorName>				<wikidot:authorUserId>476353</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I will give you an example in a made up language of what I want to do, then explain it afterwards.</p> <div class="code"> <pre><code>void MakeTheProgram() { TiBasicFunction fnc = new TiBasicFunction(); string SourceCode = &quot;5→thevarone&quot; + &quot;\n&quot; + &quot;6→thevartwo&quot;; fnc.source = SourceCode; fnc.name = &quot;My Programmatically Created Function&quot;; fnc.Create(); }</code></pre></div> <p>Explanation:</p> <p>What this does is it creates another program from scratch using the current program. Now all I want is to be able to do something like this with ti basic.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-238424#post-772706</guid>
				<title>Re: How to define a program programatically</title>
				<link>http://tibasicdev.wikidot.com/forum/t-238424/how-to-define-a-program-programatically#post-772706</link>
				<description></description>
				<pubDate>Sun, 02 May 2010 21:23:58 +0000</pubDate>
				<wikidot:authorName>theUnnamed</wikidot:authorName>				<wikidot:authorUserId>468372</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>just looking at what the word mean and nothing else I would say that you are defining what a program looks like such that a program can detect it. I imagine that's what virus definitions are although I have no proof it's just a guess. I'm more than likely totally off base with what I think your question means. could you explain what this type of thing is used for?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-238424#post-771354</guid>
				<title>How to define a program programatically</title>
				<link>http://tibasicdev.wikidot.com/forum/t-238424/how-to-define-a-program-programatically#post-771354</link>
				<description></description>
				<pubDate>Sat, 01 May 2010 01:35:15 +0000</pubDate>
				<wikidot:authorName>Geoffish</wikidot:authorName>				<wikidot:authorUserId>476353</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I heard that I could &quot;Define a program Programatically.&quot; Can somebody give me a code sample on how to do this?</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>