simple - powerfull - one line code commands
In this article i don't try to explain complicated code,but i will just tell you some simple but very usefull commands.I wrote this for beginners but i think many people who are not beginners can learn some usefull tips
AI
Shrnutí AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Zdrojový kód
<p>Ok guys this is my first article so i hope you will like it.In this article i don't try to explain complicated code,but i will just tell you some simple but very usefull commands.I wrote this for beginners but i think many people who are not beginners can learn some usefull tips ....ok let's start <p>1) Let's say we have a file <font color="#FF0000">C:\TEST.EXE</font> and we want to rename it to <font color="#FF0000">C:\MYCGI.CGI</font> . <p>We can do that with this simple command <p><font color="#0000FF">Name "C:\TEST.EXE" as "C:\MYCGI.CGI"</font> <p><font color="#000000">2) If we want to move the above file ( </font><font color="#FF0000"> C:\TEST.EXE </font><font color="#000000"> ) to the folder </font><font color="#FF0000"> C:\THEFOLDER\ </font> <p><font color="#000000"> we can do that by changing the above command to :</font> <p><font color="#0000FF">Name "C:\TEST.EXE" as "C:\THEFOLDER\TEST.EXE"</font> <p><font color="#000000">3) Let's say we have a folder <font color="#FF0000">C:\TEST\</font> and we want to rename it to </font> <p><font color="#000000"> <font color="#FF0000">C:\RENAMED\</font> we can use the commands :</font> <p><font color="#0000FF">Name "C:\TEST\" as "C:\RENAMED\"</font> <p>or <p><font color="#0000FF">Name "C:\TEST" as "C:\RENAMED"</font> <p><font color="#000000">4) If we want to disappear our program from the endtask list we can do it using the following command</font> <p><font color="#0000FF">App.TaskVisible = False </font> <p> <p><font color="#000000">That's it.I hope you found this article interesting!</font>
Původní komentáře (3)
Obnoveno z Wayback Machine