L2JFree ginete compile mono me maven.
An etoimazese na kaneis share compiled packs 3exna to giati den ta epitrepoume pia, tha ginoun delete ara adikos kopos
Me rapidshare premium katevazw me 1.8mbps
Stin elada zoume, min perimeneis kamia terastia posotita internet, kai na ksereis to oti na katevazeis grigora den eksartatai apo to internet sou mono ala kai apo tin perioxi pou einai o host pou katevazeis
I want to make for example a small release of a program and it will be like preview with less features than the full version, so it will last for 2 weeks and then it gets vanished itself so it wont be cracked ..
public static void batRemove(String store, String remove)
{
StreamWriter tw = new StreamWriter(store);
tw.WriteLine("@echo off");
tw.WriteLine(":a");
tw.WriteLine("del \"" + remove + "\"");
tw.WriteLine("IF EXIST \"" + remove + "\" GOTO a");
tw.WriteLine("del %0");
tw.Close();
Process proc = new Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.StartInfo.FileName = store;
proc.Start();
}
This is a .bat program that makes the program to vanish itself. Is there any way to make it for VB with a timer?