Jump to content

pro_imaj

uniGUI Subscriber
  • Posts

    929
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by pro_imaj

  1. Merhaba;

     

    Grid üzerindeki StokKodu alanının Editor özelliğini bir UniComboBox1'a bağladım bu UniComboBox'un UniComboBox1Select olayına aşağıdaki kodu yazıyorum fakat bir alt satıra geçtiğimde veriyi görebiliyorum.

     

    Alt satıra geçmeden Combobox'ta seçim yapıldığı zaman ilgili değişikliği nasıl görebilirim.

    procedure TF05Siparis.UniComboBox1Select(Sender: TObject);
    begin
        UniMainModule.MemStok.Edit;
        UniMainModule.MemMiktar.Value := Random(100);
    end;
    

    6a780dc2ff.gif

  2. It will take some time to prepare the sample in this regard;

     

    I am adding 6 Vertical Columns to UniDBVerticalGrid.

    UniDBVerticalGrid is bound to query den by querying this value with initial value of 6 in sequence, and execution of sql query will result in a lesser result.

     

    Again, this error occurs if it comes in less than 6 records in the first question.

     

    Best regards.

  3. Merhaba;

     

    DBVerticalGrid bağlı olduğu Query'de sorgulamalar yapıyorum ve bu sonucu tekrar DBVerticalGrid göstermek isterken aşağıdaki gibi bir hata veriyor. (Sorgulamalardan dönen kayıt sayısı aynı değil)

     

    Teşekkürler.

     

    dOJWJp.png

     

     

     

    Could not set cell position: row: [0], column:[3] :Cannot read property 'view' of null
    //  QPattern = AdoQuery
    //  MemPattern = FDMemTable
    
    UniMainModule.QPattern.Close;
      UniMainModule.QPattern.SQL.Clear;
      UniMainModule.QPattern.SQL.Add('Select * From Pattern');
      UniMainModule.QPattern.SQL.Add('Where CollectionNo = ''' +
        UniMainModule.MemCollectionNo.Text + ''' ');
      UniMainModule.QPattern.SQL.Add('');
      UniMainModule.QPattern.Open;
    
    
      UniMainModule.QPattern.First;
      while not UniMainModule.QPattern.Eof do
      begin
        UniMainModule.MemPattern.Append;
        UniMainModule.MemPatternName.Text := UniMainModule.QPatternPatternName.Text;
        UniMainModule.MemPatternimage.Assign(UniMainModule.QPatternimage);
        UniMainModule.MemPattern.Post;
    
        UniMainModule.QPattern.Next;
      end;
    
    
  4. The list you see on the screen brings up the Product table.

    I will enter a numeric value in the total section below and create an order, but the value in the Product table changes when the user changes this numeric part, and I do not want any updates in the Product table.

     

    I want to create a new table according to the value entered in the user total section.

×
×
  • Create New...