Clomosy Resmi Forum Sitesidir. Amacımız kullanıcılarımıza, iş ortaklarımıza, danışmanlara, yazılımcılara programlarımız hakkında destek ve bilgi vermektir. |
ProListView'e SQL den gelen veriler gözükmüyor |
Yanıt Yaz |
Yazar | |
zeynepsimsek
Deneyimli Üye Kayıt Tarihi: 26 Temmuz 2024 Konum: Konya, Türkiye Durum: Aktif Değil Puanlar: 59 |
Mesaj Seçenekleri
Yanıt Yaz
Alıntı zeynepsimsek
Bu mesaj kurallara aykırıysa buradan yöneticileri bilgilendirebilirsiniz.
Gönderim Zamanı: 06 Ağustos 2024 Saat 16:08 |
Tablo uygulamada gözüküyor fakat sql den çektiğim veriler gözükmüyor. Herhangi bir hata mesajı da almıyorum.
void AddDataToListView; // bu fonksiyon devreye girince hata veriyor { try selectQuery.SQL.text = 'SELECT ID AS [Kisi ID], Kisi AS [Kisi İsmi], Yer AS [Alindigi Yer], Tarih AS [Alinma Zamani], KmDegeri AS [Km Degeri], Konum AS [Konumu] From KisiBilgileri'; selectQuery.Open; if(selectQuery.Found) { ProListView.ClLoadProListViewDataFromDataset(selectQuery); } else { ShowMessage('Kayıt Bulunamadı!'); } except ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage); } } ProListView=MyForm.AddNewProListView(MyForm, 'ProListView'); clComponent.SetupComponent(ProListView,'{"Height" : 140 ,"Width": 150, "Align":"Client","MarginBottom":50,"MarginTop":380, "MarginRight":20,"MarginLeft":20, "BackgroundColor":"#92a1aa", "ListType":"cart","ItemHeight" : 50, "BorderColor":"#4c5c67", "BorderWidth":2 , "ItemWidth":50}'); DesignerPanel=MyForm.AddNewProListViewDesignerPanel(ProListView,'DesignerPanel'); clComponent.SetupComponent(DesignerPanel, '{"Height":140,"Width" : 150, "BackgroundColor":"#677b98", "BorderColor":"#2c5696", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); ID = MyForm.AddNewProLabel(DesignerPanel,'ID','Kişi ID'); clComponent.SetupComponent(ID, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(ID,Cltext); Kisi = MyForm.AddNewProLabel(DesignerPanel,'Kisi','Kişi Adı'); clComponent.SetupComponent(Kisi, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Kisi,Cltext); Yer = MyForm.AddNewProLabel(DesignerPanel,'Yer','Alındığı Yer'); clComponent.SetupComponent(Yer, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Yer,Cltext); Tarih = MyForm.AddNewProLabel(DesignerPanel,'Tarih','Alındığı Zaman'); clComponent.SetupComponent(Tarih, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Tarih,Cltext2); KmDegeri = MyForm.AddNewProLabel(DesignerPanel,'KmDegeri','Kilometre Değeri'); clComponent.SetupComponent(KmDegeri, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(KmDegeri,Cltext3); Konum= MyForm.AddNewProLabel(DesignerPanel,'Konum','Konumu'); clComponent.SetupComponent(Konum, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Konum,Cltext); ProListView.SetDesignerPanel(DesignerPanel); |
|
Developer
Forum Yöneticisi Kayıt Tarihi: 14 Haziran 2023 Durum: Aktif Değil Puanlar: 354 |
Mesaj Seçenekleri
Yanıt Yaz
Alıntı Developer
Bu mesaj kurallara aykırıysa buradan yöneticileri bilgilendirebilirsiniz.
|
Merhaba Zeynep
Aşağıdaki kodu inceler misin: void AddDataToListView; // bu fonksiyon devreye girince hata veriyor { try selectQuery.SQL.text = 'SELECT ID , Kisi , Yer ,Tarih , KmDegeri , Konum From KisiBilgileri'; selectQuery.Open; if(selectQuery.Found) { ProListView.ClLoadProListViewDataFromDataset(selectQuery); } else { ShowMessage('Kayıt Bulunamadı!'); } except ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage); } } ProListView=MyForm.AddNewProListView(MyForm, 'ProListView'); clComponent.SetupComponent(ProListView,'{"Height" : 140 ,"Width": 150, "Align":"Client","MarginBottom":50,"MarginTop":380, "MarginRight":20,"MarginLeft":20, "BackgroundColor":"#92a1aa", "ListType":"cart","ItemHeight" : 50, "BorderColor":"#4c5c67", "BorderWidth":2 , "ItemWidth":50}'); DesignerPanel=MyForm.AddNewProListViewDesignerPanel(ProListView,'DesignerPanel'); clComponent.SetupComponent(DesignerPanel, '{"Height":140,"Width" : 150, "BackgroundColor":"#677b98", "BorderColor":"#2c5696", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); ID = MyForm.AddNewProLabel(DesignerPanel,'ID','Kişi ID'); clComponent.SetupComponent(ID, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(ID,Cltext); Kisi = MyForm.AddNewProLabel(DesignerPanel,'Kisi','Kişi Adı'); clComponent.SetupComponent(Kisi, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Kisi,Cltext); Yer = MyForm.AddNewProLabel(DesignerPanel,'Yer','Alındığı Yer'); clComponent.SetupComponent(Yer, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Yer,Cltext); Tarih = MyForm.AddNewProLabel(DesignerPanel,'Tarih','Alındığı Zaman'); clComponent.SetupComponent(Tarih, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Tarih,Cltext2); KmDegeri = MyForm.AddNewProLabel(DesignerPanel,'KmDegeri','Kilometre Değeri'); clComponent.SetupComponent(KmDegeri, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(KmDegeri,Cltext3); Konum= MyForm.AddNewProLabel(DesignerPanel,'Konum','Konumu'); clComponent.SetupComponent(Konum, '{"Height":40, "Width" : 100, "BackgroundColor":"#a4a5a8", "BorderColor":"#7a4848", "BorderWidth":2, "RoundHeight":2, "RoundWidth":2}'); DesignerPanel.AddPanelObject(Konum,Cltext); ProListView.SetDesignerPanel(DesignerPanel); |
|
zeynepsimsek
Deneyimli Üye Kayıt Tarihi: 26 Temmuz 2024 Konum: Konya, Türkiye Durum: Aktif Değil Puanlar: 59 |
Mesaj Seçenekleri
Yanıt Yaz
Alıntı zeynepsimsek
Bu mesaj kurallara aykırıysa buradan yöneticileri bilgilendirebilirsiniz.
|
Düzeldi teşekkür ederim.
|
|
Yanıt Yaz | |
Tweet |
Forum Atla | Forum İzinleri Kapalı Foruma Yeni Konu Gönderme Kapalı Forumdaki Konulara Cevap Yazma Kapalı Forumda Cevapları Silme Kapalı Forumdaki Cevapları Düzenleme Kapalı Forumda Anket Açma Kapalı Forumda Anketlerde Oy Kullanma |