Jump to content

StackByte

Üye
  • Posts

    69
  • Joined

  • Last visited

Posts posted by StackByte

  1. programları kurmuyor

    File.Run("Programlar\\Gerekli Olabilecekler\\OFFICE2007.exe", "", "", SW_SHOWNORMAL, true);     

    komut bu ama hard disk veya flash dosyaları atınca programları kurmuyor bazılarını .... yerini bulamadığından kaynaklandığını düşünüyorum sizce hata nerede 

    Örnek ;

    if c24 then 
    File.Run("Programlar\\Gerekli Olabilecekler\\OFFICE2007.exe", "", "", SW_SHOWNORMAL, true);
    Paragraph.SetText("Paragraph1", "Microsoft Office 2007 kurulumu tamamlandı") 
    Application.Sleep(2000) 
    end

  2. CheckBox Favori Nasıl Yapabilirim örnek Koda Göre

    if durum then
    nSecili = "0"
    tSec = Page.EnumerateObjects();
        for i,v in pairs (tSec) do
        tip = Page.GetObjectType(v);
            if tip == OBJECT_CHECKBOX and CheckBox.IsEnabled(v) then
            CheckBox.SetChecked(v, durum);
            nSecili = nSecili + 1
            end
        end
        Label.SetText("Label1", "Seçilen Program Sayısı : "..nSecili);
    else
        tSec = Page.EnumerateObjects();
            for i,v in pairs (tSec) do
            CheckBox.SetChecked(v, false);
            nSecili = "0"
            end
        Label.SetText("Label1", "Seçilen Program Sayısı : "..nSecili);
    end
    end

     

    toplu seçim kodu bu bunu nasıl CheckBox1 den CheckBox24 kadar seçip kurdurabilirim ???

×
×
  • Create New...