<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="it">
		<id>https://it.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=Creazione_di_un_Timestamp</id>
		<title>Creazione di un Timestamp - Cronologia</title>
		<link rel="self" type="application/atom+xml" href="https://it.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=Creazione_di_un_Timestamp"/>
		<link rel="alternate" type="text/html" href="https://it.arcowiki.com/index.php?title=Creazione_di_un_Timestamp&amp;action=history"/>
		<updated>2026-04-18T22:10:00Z</updated>
		<subtitle>Cronologia della pagina su questo sito</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://it.arcowiki.com/index.php?title=Creazione_di_un_Timestamp&amp;diff=64&amp;oldid=prev</id>
		<title>Slia: Creata pagina con &quot;This is used to create a unique '''timestamp''' inside a part program. Typically can be used to identify each execution/report with a unique file name.  &lt;code&gt;&lt;span style=&quot;col...&quot;</title>
		<link rel="alternate" type="text/html" href="https://it.arcowiki.com/index.php?title=Creazione_di_un_Timestamp&amp;diff=64&amp;oldid=prev"/>
				<updated>2018-06-04T13:58:32Z</updated>
		
		<summary type="html">&lt;p&gt;Creata pagina con &amp;quot;This is used to create a unique &amp;#039;&amp;#039;&amp;#039;timestamp&amp;#039;&amp;#039;&amp;#039; inside a part program. Typically can be used to identify each execution/report with a unique file name.  &amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;col...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nuova pagina&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This is used to create a unique '''timestamp''' inside a part program.&lt;br /&gt;
Typically can be used to identify each execution/report with a unique file name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$Begin Example&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/CHAR,100, time_stamp&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/CHAR,200, STR3&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/CHAR,200, STR2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$Assign the time_stamp&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;time_stamp = ASSIGN/ STIMESTAMP()&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$ Read the report folder of ARCO&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;STR2=ASSIGN/GETENV('ARCOREPORTFOLDER') &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$Create a Unique file name with time stamp at the end of the name&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;STR3=ASSIGN/CONCAT(str2,'output_',time_stamp,'.mea') &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$Create Dummy Point and Tolerances&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;F(q)=FEAT/POINT,CART,00,0,0,0,0,1&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;FA(q)=FEAT/POINT,CART,00,0,0,0,0,1&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;T(CORTOL_1)=TOL/CORTOL,XAXIS,-0.1000,0.1000&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;T(CORTOL_2)=TOL/CORTOL,YAXIS,-0.1000,0.1000&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;T(CORTOL_3)=TOL/CORTOL,ZAXIS,-0.1000,0.1000&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$Build the output&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DID(OUT_FILE)=DEVICE/STOR,STR3&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;OPEN/DID(OUT_FILE),FDATA,V(TEXT),OUTPUT,OVERWR&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;OUTPUT/FA(Q),TA(CORTOL_1),TA(CORTOL_2),TA(CORTOL_3)&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;CLOSE/DID(OUT_FILE)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[it:Creazione di un Timestamp]]&lt;br /&gt;
[[zh-cn:创建时间戳]]&lt;br /&gt;
[[pt:Criando um Timestamp]]&lt;br /&gt;
[[de:Erstellen eines Zeitstempels]]&lt;br /&gt;
[[es:Creando una marca de tiempo]]&lt;br /&gt;
[[en:Creating a Timestamp]]&lt;/div&gt;</summary>
		<author><name>Slia</name></author>	</entry>

	</feed>