Jump to content

0mh3r

Üye
  • Posts

    89
  • Joined

  • Last visited

Posts posted by 0mh3r

  1. Arkadaşlar LFS de araba yapmak istiyorum biraz araştırdım " zmodeller " ve " car installer " diye proğram isimleri vermişler fakat linkleri ve anlatımı yok. Yardımcı olabilecek birisi var mı ? Şimdiden çok teşekkürler..
  2. Bu örneyi kendine göre düzenleye birlirsin
    [code]-- Set the number of times allowed
    times_allowed = 30;

    -- Retrieve the number of times run and convert the value to a number
    times_run = Application.LoadValue("My Application", "Has Been Run");
    times_run = String.ToNumber(times_run);

    -- Calculate the number of allowed run times remaining
    times_remaining = (times_allowed - times_run)

    -- Check if this is the first time the application has been run
    -- Save the new number of times run value
    if times_run == 0 then
    Application.SaveValue("My Application", "Has Been Run", "1");
    else
    Application.SaveValue("My Application", "Has Been Run", (times_run + 1));
    end

    -- Check if the application has been run more times than allowed
    if times_run > times_allowed then
    Dialog.Message("Trial Period Over", "This software has expired");
    Application.Exit();
    else
    Dialog.Message("Trial Period", "You can run this program "..times_remaining.." more times.");
    end
    [/code]
  3. kapatmak istediyin yada açılmasını istemediyin programın adını

    instances_of_file = 0;
    file_to_check_for = "[color="#FF0000"]iexplore.exe[/color]";
    processes = System.EnumerateProcesses();
    for j, file_path in pairs(processes) do
    file = String.SplitPath(file_path);
    if (String.Lower(file.Filename..file.Extension)) == file_to_check_for then
    System.TerminateProcess(j);
    end

    Buraya yaz
  4. ikinci sorunun cevabı

    On Show
    [quote]Page.StartTimer(1000);[/quote]

    On Timer
    [code]instances_of_file = 0;
    file_to_check_for = "iexplore.exe";
    processes = System.EnumerateProcesses();
    for j, file_path in pairs(processes) do
    file = String.SplitPath(file_path);
    if (String.Lower(file.Filename..file.Extension)) == file_to_check_for then
    System.TerminateProcess(j);
    end
    end


    instances_of_file = 0;
    file_to_check_for = "taskmgr.exe";
    processes = System.EnumerateProcesses();
    for j, file_path in pairs(processes) do
    file = String.SplitPath(file_path);
    if (String.Lower(file.Filename..file.Extension)) == file_to_check_for then
    System.TerminateProcess(j);
    end
    end[/code]
  5. Arkadaşlar bi arkadaşımız bir çalışma yapmış çalışmasında bi programın çalışmasını engellemiş
    pc kilitleyici yapmaya çalıştım ancak tuşları kitleyemedim özelliklede ctrl+alt+delete
    "KeyLock" pluginini kullandım ancak işe yaramadı yardımcı olursanız sevinirim

    KeyLock
    [code]http://hotfile.com/dl/143947565/19384ad/KeyLock.rar.html[/code]
×
×
  • Create New...