<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : TclProListView</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : TclProListView]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:03:23 +0000</pubDate>
  <lastBuildDate>Wed, 14 Aug 2024 13:25:58 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=871</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[TclProListView : Merhaba Furkan,Hatalar&#305;n;*GetData...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=871&amp;PID=1655#1655</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 871<br /><strong>Gönderim Zamanı:</strong> 14&nbsp;Ağustos&nbsp;2024 Saat 13:25<br /><br />Merhaba Furkan,<div>Hataların;</div><div>*GetData prosedürünü sqlite bağlantıdan sonra açman gerekiyor. Oluşturduğun select&nbsp;</div><div>SELECT userID as clRecord_GUID, NAME as name1, SURNAME as surname1, AGE as age1, CITY as&nbsp; city1 , GENDER as gender1, PHONE as phone1 FROM Users&nbsp;</div><div>şeklinde olmalı.</div><div>Kodlar:</div><div><div style=": rgb251, 251, 253;">Var&nbsp; &nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; MyForm :TclForm;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1 : TClProListView;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1 : TClListViewDesignerPanel;</div><div style=": rgb251, 251, 253;">&nbsp; name1,surname1,age1,city1,gender1,phone1 : TclProLabel;</div><div style=": rgb251, 251, 253;">&nbsp; maleImg,femaleImg : TclProImage;</div><div style=": rgb251, 251, 253;">&nbsp; Qry : TClSQLiteQuery;</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">void TaskClick;</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; ShowMessage(' Item: ' + ListView1.clSelectedItemData(clText));</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">void CreateListView</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; ListView1 = MyForm.AddNewProListView(MyForm,'ListView1');</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.Align = alContents;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.ViewType = lvIcon; //(lvList, lvIcon, lvWaterFall)</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.ColCount = 1;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.ItemHeight = 100;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.ItemSpace = 10;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FFFCFF');</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.BorderColor = clAlphaColor.clHexToColor('#66FF7F');</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.BorderWidth = 2;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.RoundHeight = 5;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.clProSettings.RoundWidth = 5;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.SetclProSettings(ListView1.clProSettings);</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">void CreateDesignerPanel</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1 = MyForm.AddNewProListViewDesignerPanel(ListView1, 'DesignerPanel1');</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.Height = 100;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.Width = 150;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#B3FCE5');</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.clProSettings.BorderColor = clAlphaColor.clHexToColor('#16FF8C');</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.clProSettings.BorderWidth = 2;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.clProSettings.RoundHeight = 20;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.clProSettings.RoundWidth = 20;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.SetclProSettings(DesignerPanel1.clProSettings);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; ListView1.SetDesignerPanel(DesignerPanel1);</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">void CreateData;</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; name1 = MyForm.AddNewProLabel(DesignerPanel1, 'name1', 'test');</div><div style=": rgb251, 251, 253;">&nbsp; name1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; name1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; name1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; name1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; name1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(name1, clText);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; surname1 = MyForm.AddNewProLabel(DesignerPanel1, 'surname1', 'test2');</div><div style=": rgb251, 251, 253;">&nbsp; surname1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; surname1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; surname1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; surname1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; surname1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(surname1, clText1);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; age1 = MyForm.AddNewProLabel(DesignerPanel1, 'age1', 'test3');</div><div style=": rgb251, 251, 253;">&nbsp; age1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; age1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; age1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; age1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; age1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(age1, clText2);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; city1 = MyForm.AddNewProLabel(DesignerPanel1, 'city1', 'test4');</div><div style=": rgb251, 251, 253;">&nbsp; city1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; city1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; city1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; city1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; city1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(city1, clText3);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; gender1 = MyForm.AddNewProLabel(DesignerPanel1, 'gender1', 'test5');</div><div style=": rgb251, 251, 253;">&nbsp; gender1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; gender1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; gender1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; gender1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; gender1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(gender1, clText4);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; phone1 = MyForm.AddNewProLabel(DesignerPanel1, 'phone1', 'test6');</div><div style=": rgb251, 251, 253;">&nbsp; phone1.Align = alCenter;</div><div style=": rgb251, 251, 253;">&nbsp; phone1.Height = 30;</div><div style=": rgb251, 251, 253;">&nbsp; phone1.Width = 50;</div><div style=": rgb251, 251, 253;">&nbsp; phone1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div style=": rgb251, 251, 253;">&nbsp; phone1.clProSettings.FontSize = 15;</div><div style=": rgb251, 251, 253;">&nbsp; DesignerPanel1.AddPanelObject(phone1, clText5);</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; MyForm.AddNewEvent(ListView1,tbeOnItemClick,'TaskClick');</div><div style=": rgb251, 251, 253;">}</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">void GetData;</div><div style=": rgb251, 251, 253;">&nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; try</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Qry = Clomosy.DBSQLiteQueryWith('SELECT userID as clRecord_GUID, NAME, SURNAME, AGE, CITY, GENDER, PHONE FROM Users');</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; Qry.OpenOrExecute;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; if (Qry.Found)</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; {</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; name1 = Qry.FieldByName('NAME').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; surname1 = Qry.FieldByName('SURNAME').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; age1 = Qry.FieldByName('AGE').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; city1 = Qry.FieldByName('CITY').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; gender1 = Qry.FieldByName('GENDER').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; phone1 = Qry.FieldByName('PHONE').AsString;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; &nbsp; ListView1.clLoadProListViewDataFromDataset(Qry);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; except</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; &nbsp; ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage);</div><div style=": rgb251, 251, 253;">&nbsp; &nbsp; }&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; }</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">{</div><div style=": rgb251, 251, 253;">&nbsp; MyForm = TclForm.Create(Self);</div><div style=": rgb251, 251, 253;">&nbsp; CreateListView;</div><div style=": rgb251, 251, 253;">&nbsp; CreateDesignerPanel;</div><div style=": rgb251, 251, 253;">&nbsp; CreateData;</div><div style=": rgb251, 251, 253;">&nbsp; GetData;</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'GYM1.db3', '');</div><div style=": rgb251, 251, 253;">&nbsp;&nbsp;</div><div style=": rgb251, 251, 253;">&nbsp; MyForm.Run;</div><div style=": rgb251, 251, 253;">}</div></div>]]>
   </description>
   <pubDate>Wed, 14 Aug 2024 13:25:58 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=871&amp;PID=1655#1655</guid>
  </item> 
  <item>
   <title><![CDATA[TclProListView : Veriler ProListViewde g&#246;z&#252;km&#252;yorVar...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=871&amp;PID=1648#1648</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=164">Furblood</a><br /><strong>Konu:</strong> 871<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Ağustos&nbsp;2024 Saat 17:43<br /><br /><div>Veriler ProListViewde gözükmüyor</div><div><br></div><div>Var&nbsp; &nbsp;</div><div>&nbsp; MyForm :TclForm;</div><div>&nbsp; ListView1 : TClProListView;</div><div>&nbsp; DesignerPanel1 : TClListViewDesignerPanel;</div><div>&nbsp; name1,surname1,age1,city1,gender1,phone1 : TclProLabel;</div><div>&nbsp; maleImg,femaleImg : TclProImage;</div><div>&nbsp; Qry : TClSQLiteQuery;</div><div>&nbsp;&nbsp;</div><div>void TaskClick;</div><div>{</div><div>&nbsp; ShowMessage(' Item: ' + ListView1.clSelectedItemData(clText));</div><div>}</div><div><br></div><div>void CreateListView</div><div>{</div><div>&nbsp; ListView1 = MyForm.AddNewProListView(MyForm,'ListView1');</div><div>&nbsp; ListView1.Align = alContents;</div><div>&nbsp; ListView1.clProSettings.ViewType = lvIcon; //(lvList, lvIcon, lvWaterFall)</div><div>&nbsp; ListView1.clProSettings.ColCount = 1;</div><div>&nbsp; ListView1.clProSettings.ItemHeight = 100;</div><div>&nbsp; ListView1.clProSettings.ItemSpace = 10;</div><div>&nbsp; ListView1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FFFCFF');</div><div>&nbsp; ListView1.clProSettings.BorderColor = clAlphaColor.clHexToColor('#66FF7F');</div><div>&nbsp; ListView1.clProSettings.BorderWidth = 2;</div><div>&nbsp; ListView1.clProSettings.RoundHeight = 5;</div><div>&nbsp; ListView1.clProSettings.RoundWidth = 5;</div><div>&nbsp; ListView1.SetclProSettings(ListView1.clProSettings);</div><div>}</div><div><br></div><div>void CreateDesignerPanel</div><div>{</div><div>&nbsp; DesignerPanel1 = MyForm.AddNewProListViewDesignerPanel(ListView1, 'DesignerPanel1');</div><div>&nbsp; DesignerPanel1.Height = 100;</div><div>&nbsp; DesignerPanel1.Width = 150;</div><div>&nbsp; DesignerPanel1.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#B3FCE5');</div><div>&nbsp; DesignerPanel1.clProSettings.BorderColor = clAlphaColor.clHexToColor('#16FF8C');</div><div>&nbsp; DesignerPanel1.clProSettings.BorderWidth = 2;</div><div>&nbsp; DesignerPanel1.clProSettings.RoundHeight = 20;</div><div>&nbsp; DesignerPanel1.clProSettings.RoundWidth = 20;</div><div>&nbsp; DesignerPanel1.SetclProSettings(DesignerPanel1.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; ListView1.SetDesignerPanel(DesignerPanel1);</div><div>}</div><div><br></div><div>void CreateData;</div><div>{</div><div>&nbsp; name1 = MyForm.AddNewProLabel(DesignerPanel1, 'name1', 'test');</div><div>&nbsp; name1.Align = alCenter;</div><div>&nbsp; name1.Height = 30;</div><div>&nbsp; name1.Width = 50;</div><div>&nbsp; name1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; name1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(name1, clText);</div><div>&nbsp;&nbsp;</div><div>&nbsp; surname1 = MyForm.AddNewProLabel(DesignerPanel1, 'surname1', 'test2');</div><div>&nbsp; surname1.Align = alCenter;</div><div>&nbsp; surname1.Height = 30;</div><div>&nbsp; surname1.Width = 50;</div><div>&nbsp; surname1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; surname1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(surname1, clText1);</div><div>&nbsp;&nbsp;</div><div>&nbsp; age1 = MyForm.AddNewProLabel(DesignerPanel1, 'age1', 'test3');</div><div>&nbsp; age1.Align = alCenter;</div><div>&nbsp; age1.Height = 30;</div><div>&nbsp; age1.Width = 50;</div><div>&nbsp; age1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; age1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(age1, clText2);</div><div>&nbsp;&nbsp;</div><div>&nbsp; city1 = MyForm.AddNewProLabel(DesignerPanel1, 'city1', 'test4');</div><div>&nbsp; city1.Align = alCenter;</div><div>&nbsp; city1.Height = 30;</div><div>&nbsp; city1.Width = 50;</div><div>&nbsp; city1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; city1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(city1, clText3);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; gender1 = MyForm.AddNewProLabel(DesignerPanel1, 'gender1', 'test5');</div><div>&nbsp; gender1.Align = alCenter;</div><div>&nbsp; gender1.Height = 30;</div><div>&nbsp; gender1.Width = 50;</div><div>&nbsp; gender1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; gender1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(gender1, clText4);</div><div>&nbsp;&nbsp;</div><div>&nbsp; phone1 = MyForm.AddNewProLabel(DesignerPanel1, 'phone1', 'test6');</div><div>&nbsp; phone1.Align = alCenter;</div><div>&nbsp; phone1.Height = 30;</div><div>&nbsp; phone1.Width = 50;</div><div>&nbsp; phone1.clProSettings.FontColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; phone1.clProSettings.FontSize = 15;</div><div>&nbsp; DesignerPanel1.AddPanelObject(phone1, clText5);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(ListView1,tbeOnItemClick,'TaskClick');</div><div>}</div><div><br></div><div><br></div><div>void GetData;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; try</div><div>&nbsp; &nbsp; &nbsp; Qry = Clomosy.DBSQLiteQueryWith('SELECT userID as clRecord_GUID, NAME, SURNAME, AGE, CITY, GENDER, PHONE FROM Users');</div><div>&nbsp; &nbsp; &nbsp; Qry.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; if (Qry.Found)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; name1 = Qry.FieldByName('NAME').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; surname1 = Qry.FieldByName('SURNAME').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; age1 = Qry.FieldByName('AGE').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; city1 = Qry.FieldByName('CITY').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; gender1 = Qry.FieldByName('GENDER').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; phone1 = Qry.FieldByName('PHONE').AsString;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ListView1.clLoadProListViewDataFromDataset(Qry);</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage);</div><div>&nbsp; &nbsp; }&nbsp;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>{</div><div>&nbsp; MyForm = TclForm.Create(Self);</div><div>&nbsp; CreateListView;</div><div>&nbsp; CreateDesignerPanel;</div><div>&nbsp; CreateData;</div><div>&nbsp; GetData;</div><div>&nbsp;&nbsp;</div><div>&nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'GYM1.db3', '');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>}</div><div><br></div>]]>
   </description>
   <pubDate>Tue, 13 Aug 2024 17:43:28 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=871&amp;PID=1648#1648</guid>
  </item> 
 </channel>
</rss>