<?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 : EAccessViolation hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : EAccessViolation hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 08:01:43 +0000</pubDate>
  <lastBuildDate>Fri, 13 Feb 2026 09:39:32 +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=1314</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[EAccessViolation hatası : S&#246;yledi&#287;iniz de&#287;i&#351;ikli&#287;i yapt&#305;&#287;&#305;mda...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2960#2960</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=371">Melih</a><br /><strong>Konu:</strong> 1314<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Şubat&nbsp;2026 Saat 09:39<br /><br />Söylediğiniz değişikliği yaptığımda aynı hatayı verdi. Ama sorunu ProListView yerine ListView kullanarak çözdüm sanırım ProListView'a&nbsp;clLoadListViewDataFromDataset() ile veri çekerken bir hata var, aşağıda verdiğim kod çalışıyor fakat başka hiçbir şeyi değiştirmeden ListView yerine ProListView kullanınca (13, 46 ve 102. satırları değiştirerek)&nbsp;EAccessViolation hatası veriyor.<img src="uploads/371/Screenshot_2026-02-13_093349.png" height="154" width="400" border="0" /><br><br><br><div>var</div><div>MyForm: TclForm;</div><div>addNewTaskButton: TClProButton;</div><div><br></div><div>bottomPanel: TCLPanel;</div><div>middlePanel: TCLPanel;</div><div>topPanel: TCLPanel;</div><div><br></div><div>toDoIcon: TCLImage;</div><div><br></div><div>insertQuery: TclSqlQuery;</div><div><br></div><div>ToDoListView: TCLListView;</div><div>retrieveButton: TCLButton;</div><div><br></div><div>void onAddButtonClick;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('uCreateToDo');</div><div>}</div><div>void onIconClick;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('uToDoList');</div><div>}</div><div><br></div><div>void retrieveCurrentDayItems;</div><div>var</div><div>&nbsp; Qry : TClSQLiteQuery;</div><div>&nbsp; dayNow: String;</div><div>{</div><div>&nbsp; dayNow = FormatDateTime('dd.mm.yyyy',Now);</div><div>&nbsp; try</div><div>&nbsp; Qry = Clomosy.DBSQLiteQueryWith(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'SELECT id as RECORD_GUID, ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'item_text as MAIN_TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'due_date as FOOTER_TEXT ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'FROM todo_items ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'WHERE due_date = '+QuotedStr(dayNow)+</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'ORDER BY substr(due_date,7,4) || "-" || substr(due_date,4,2) || "-" || substr(due_date,1,2) ASC, ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'CAST(item_order AS INTEGER) ASC;'</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; );</div><div>&nbsp; //Qry = Clomosy.DBSQLiteQueryWith('SELECT * FROM todo_items WHERE due_date = '+QuotedStr(dayNow)+' ORDER BY CAST(item_order AS INTEGER) ASC;');</div><div>&nbsp; &nbsp; Qry.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; while (not Qry.EOF)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; toDoListView.clLoadListViewDataFromDataset(Qry);</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception GetData Message: '+LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void SqLiteConnection;</div><div>var</div><div>&nbsp; TableExists: Boolean;</div><div>{</div><div>&nbsp; try</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'DBToDoApp.db3', '');</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'SELECT name FROM sqlite_master WHERE type="table" AND name="todo_items";';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TableExists = not Clomosy.DBSQLiteQuery.Eof;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if not (TableExists)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ToDoListView.clearList;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Table does not exist');</div><div>&nbsp; &nbsp; } else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Dddatabase connected and table exists');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('connectionfunc Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm=TclForm.Create(self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.LytTopBar.Visible = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; topPanel=MyForm.AddNewPanel(MyForm,'topPanel');</div><div>&nbsp; topPanel.Align=alMostTop;</div><div>&nbsp; topPanel.Height=110;</div><div>&nbsp;&nbsp;</div><div>&nbsp; middlePanel=MyForm.AddNewPanel(MyForm, 'middlePanel');</div><div>&nbsp; middlePanel.Align=alCenter;</div><div>&nbsp; middlePanel.Height=350;</div><div>&nbsp;&nbsp;</div><div>&nbsp; bottomPanel=MyForm.AddNewPanel(MyForm,'bottomPanel');</div><div>&nbsp; bottomPanel.Height=110;</div><div>&nbsp; bottomPanel.Align=alMostBottom;</div><div>&nbsp; bottomPanel.StyleLookup='pushpanel';</div><div><br></div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; ToDoListView = MyForm.AddNewListView(middlePanel,'ToDoListView');</div><div>&nbsp; /*ToDoListView.Align = alCenter;</div><div>&nbsp; ToDoListView.Width = MyForm.clWidth/2;</div><div>&nbsp; ToDoListView.Margins.Right = 10;</div><div>&nbsp; ToDoListView.Margins.Bottom = 10;</div><div>&nbsp; ToDoListView.Margins.Left = 10;</div><div>&nbsp; */</div><div>&nbsp; toDoListView.Align = alClient;</div><div>&nbsp; toDoListView.Margins.Left = 40;</div><div>&nbsp; toDoListView.Margins.Bottom = 10;</div><div>&nbsp; toDoListView.Margins.Right = 30;</div><div>&nbsp; toDoListView.Margins.Top = 10;</div><div>&nbsp; /*</div><div>&nbsp; ToDoListView.clProSettings.ViewType = lvWaterFall;</div><div>&nbsp; ToDoListView.clProSettings.IsRound = True;</div><div>&nbsp; ToDoListView.clProSettings.IsFill = True;</div><div>&nbsp; ToDoListView.clProSettings.ColCount = 1;</div><div>&nbsp; ToDoListView.clProSettings.ItemHeight = 150;</div><div>&nbsp; ToDoListView.clProSettings.ItemSpace = 5;</div><div>&nbsp; ToDoListView.clProSettings.BorderColor = clAlphaColor.clHexToColor('#20B2AA');</div><div>&nbsp; ToDoListView.clProSettings.BorderWidth = 1;</div><div>&nbsp; ToDoListView.clProSettings.RoundWidth = 3;</div><div>&nbsp; ToDoListView.clProSettings.RoundHeight = 3;</div><div>&nbsp; ToDoListView.SetclProSettings(ToDoListView.clProSettings);</div><div>&nbsp; */</div><div>&nbsp;&nbsp;</div><div>&nbsp; retrieveButton=MyForm.AddNewButton(MyForm,'retrieveButton', 'Retrieve');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; toDoIcon=MyForm.AddNewImage(topPanel,'toDoIcon');</div><div>&nbsp; MyForm.SetImage(toDoIcon,'https://w7.pngwing.com/pngs/32/64/png-transparent-to-do-list-notebook-computer-icons-action-item-task-android-to-do-list-icon-miscellaneous-angle-text-thumbnail.png');</div><div>&nbsp; toDoIcon.Align=alMostRight;</div><div>&nbsp; toDoIcon.Width=40;</div><div>&nbsp; toDoIcon.Height=40;</div><div>&nbsp; toDoIcon.Margins.Top=0;</div><div>&nbsp; toDoIcon.Margins.Right=30;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton=MyForm.AddNewProButton(bottomPanel, 'addNewTaskButton', '+');</div><div>&nbsp; addNewTaskButton.Align = alMostRight;</div><div>&nbsp; addNewTaskButton.Margins.Right=30;</div><div>&nbsp; addNewTaskButton.Margins.Bottom=30;</div><div>&nbsp; addNewTaskButton.Width=80;</div><div>&nbsp; addNewTaskButton.Height=80;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton.clProSettings.FontSize=60;</div><div>&nbsp; addNewTaskButton.clProSettings.BackgroundColor=clAlphaColor.clHexToColor('#4fa5ab');</div><div>&nbsp; addNewTaskButton.clProSettings.RoundHeight=40;</div><div>&nbsp; addNewTaskButton.clProSettings.RoundWidth=40;</div><div>&nbsp; addNewTaskButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; addNewTaskButton.clProSettings.FontVertAlign=palCenter;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton.SetclProSettings(addNewTaskButton.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(addNewTaskButton,tbeOnClick,'onAddButtonClick');</div><div>&nbsp; MyForm.AddNewEvent(toDoIcon,tbeOnClick,'onIconClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(retrieveButton,tbeOnClick,'retrieveCurrentDayItems');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; SqLiteConnection;</div><div>&nbsp; retrieveCurrentDayItems;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Fri, 13 Feb 2026 09:39:32 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2960#2960</guid>
  </item> 
  <item>
   <title><![CDATA[EAccessViolation hatası : Kodda hatan&#305;n sebebi temel hataretrieveCurrentDayItems...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2950#2950</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1314<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Şubat&nbsp;2026 Saat 18:22<br /><br />Kodda hatanın sebebi temel hata&nbsp;<span style=": rgb251, 251, 253;">retrieveCurrentDayItems içerisinde yer döngü mantığı<br></span><span style=": rgb251, 251, 253;">clLoadProListViewDataFromDataset fonksiyonu kendisine verilen sorgu sonucunda tüm verileri otomatik olarak döngüye alıp listeye ekliyor.&nbsp;<br>Bu fonksiyonu while döngüsü içersine alındığın da döngü içerisinde Qry.Next yapılmadığın da sonsuz bir döngü oluşuyor ve hafıza hatası veriyor.&nbsp;<br><br>while (not Qry.EOF) bloğunu silip sadece clLoadProListViewDataFromDataset(Qry); satırını bırakara dener misin&nbsp;</span>]]>
   </description>
   <pubDate>Thu, 12 Feb 2026 18:22:00 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2950#2950</guid>
  </item> 
  <item>
   <title><![CDATA[EAccessViolation hatası : Veritaban&#305;mdan veri &#231;ekmeye &#231;al&#305;&#351;&#305;rken...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2922#2922</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=371">Melih</a><br /><strong>Konu:</strong> 1314<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Şubat&nbsp;2026 Saat 14:07<br /><br />Veritabanımdan veri çekmeye çalışırken EAccessViolation hatası alıyorum. Veriyi çekerken kullandığım query ve veritabanımı githubdan aldığım kodun içindekilerle değiştirdiğimde düzgün çalışıyor fakat kendi kodumda neden çalışmadığını anlamadım.<div>Yardımcı olabilir misiniz?</div><div><div><div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015"</a> integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous"><div><br></div><div><br></div><div><div>var</div><div>MyForm: TclForm;</div><div>addNewTaskButton: TClProButton;</div><div><br></div><div>bottomPanel: TCLPanel;</div><div>middlePanel: TCLPanel;</div><div>topPanel: TCLPanel;</div><div><br></div><div>toDoIcon: TCLImage;</div><div><br></div><div>insertQuery: TclSqlQuery;</div><div><br></div><div>ToDoListView: TClProListView;</div><div>retrieveButton: TCLButton;</div><div><br></div><div>void onAddButtonClick;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('uCreateToDo');</div><div>}</div><div>void onIconClick;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('uToDoList');</div><div>}</div><div><br></div><div>void retrieveCurrentDayItems;</div><div>var Qry :TClSQLiteQuery;</div><div><br></div><div>var dayNow: String;</div><div>{</div><div>&nbsp; dayNow = FormatDateTime('dd.mm.yyyy',Now);</div><div>&nbsp; try</div><div>&nbsp; &nbsp; qry = nil;</div><div>&nbsp; &nbsp; Qry = Clomosy.DBSQLiteQueryWith('SELECT * FROM todo_items WHERE due_date = '+QuotedStr(dayNow)+' ORDER BY CAST(item_order AS INTEGER) ASC;');</div><div><br></div><div>&nbsp; &nbsp; Qry.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; while (not Qry.EOF)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; if(ToDoListView &lt;&gt; nil)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ToDoListView.clLoadProListViewDataFromDataset(Qry);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; else ShowMessage('not created');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('retrieveCurrentDayItems Exception Class: '+LastExceptionClassName+' Exception GetData Message: '+LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void SqLiteConnection;</div><div>var</div><div>&nbsp; TableExists: Boolean;</div><div>{</div><div>&nbsp; try</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'DBToDoApp.db3', '');</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'SELECT name FROM sqlite_master WHERE type="table" AND name="todo_items";';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TableExists = not Clomosy.DBSQLiteQuery.Eof;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if not (TableExists)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ToDoListView.clearList;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Table does not exist');</div><div>&nbsp; &nbsp; } else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Dddatabase connected and table exists');</div><div>&nbsp; &nbsp; &nbsp; retrieveCurrentDayItems;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('connectionfunc Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm=TclForm.Create(self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.LytTopBar.Visible = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp; topPanel=MyForm.AddNewPanel(MyForm,'topPanel');</div><div>&nbsp; topPanel.Align=alMostTop;</div><div>&nbsp; topPanel.Height=110;</div><div>&nbsp;&nbsp;</div><div>&nbsp; middlePanel=MyForm.AddNewPanel(MyForm, 'middlePanel');</div><div>&nbsp; middlePanel.Align=alCenter;</div><div>&nbsp; middlePanel.Height=350;</div><div>&nbsp;&nbsp;</div><div>&nbsp; bottomPanel=MyForm.AddNewPanel(MyForm,'bottomPanel');</div><div>&nbsp; bottomPanel.Height=110;</div><div>&nbsp; bottomPanel.Align=alMostBottom;</div><div>&nbsp; bottomPanel.StyleLookup='pushpanel';</div><div><br></div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; ToDoListView = MyForm.AddNewProListView(middlePanel,'ToDoListView');</div><div>&nbsp; ToDoListView.Align = alCenter;</div><div>&nbsp; ToDoListView.Width = MyForm.clWidth/2;</div><div>&nbsp; ToDoListView.Margins.Right = 10;</div><div>&nbsp; ToDoListView.Margins.Bottom = 10;</div><div>&nbsp; ToDoListView.Margins.Left = 10;</div><div>&nbsp; ToDoListView.clProSettings.ViewType = lvWaterFall;</div><div>&nbsp; ToDoListView.clProSettings.IsRound = True;</div><div>&nbsp; ToDoListView.clProSettings.IsFill = True;</div><div>&nbsp; ToDoListView.clProSettings.ColCount = 1;</div><div>&nbsp; ToDoListView.clProSettings.ItemHeight = 150;</div><div>&nbsp; ToDoListView.clProSettings.ItemSpace = 5;</div><div>&nbsp; ToDoListView.clProSettings.BorderColor = clAlphaColor.clHexToColor('#20B2AA');</div><div>&nbsp; ToDoListView.clProSettings.BorderWidth = 1;</div><div>&nbsp; ToDoListView.clProSettings.RoundWidth = 3;</div><div>&nbsp; ToDoListView.clProSettings.RoundHeight = 3;</div><div>&nbsp; ToDoListView.SetclProSettings(ToDoListView.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; retrieveButton=MyForm.AddNewButton(MyForm,'retrieveButton', 'Retrieve');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; toDoIcon=MyForm.AddNewImage(topPanel,'toDoIcon');</div><div>&nbsp; MyForm.SetImage(toDoIcon,'<a href="https://w7.pngwing.com/pngs/32/64/png-transparent-to-do-list-notebook-computer-ic&#111;ns-acti&#111;n-item-task-android-to-do-list-ic&#111;n-miscellaneous-angle-text-thumbnail.png" target="_blank" rel="nofollow">https://w7.pngwing.com/pngs/32/64/png-transparent-to-do-list-notebook-computer-icons-action-item-task-android-to-do-list-icon-miscellaneous-angle-text-thumbnail.png</a>');</div><div>&nbsp; toDoIcon.Align=alMostRight;</div><div>&nbsp; toDoIcon.Width=40;</div><div>&nbsp; toDoIcon.Height=40;</div><div>&nbsp; toDoIcon.Margins.Top=0;</div><div>&nbsp; toDoIcon.Margins.Right=30;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton=MyForm.AddNewProButton(bottomPanel, 'addNewTaskButton', '+');</div><div>&nbsp; addNewTaskButton.Align = alMostRight;</div><div>&nbsp; addNewTaskButton.Margins.Right=30;</div><div>&nbsp; addNewTaskButton.Margins.Bottom=30;</div><div>&nbsp; addNewTaskButton.Width=80;</div><div>&nbsp; addNewTaskButton.Height=80;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton.clProSettings.FontSize=60;</div><div>&nbsp; addNewTaskButton.clProSettings.BackgroundColor=clAlphaColor.clHexToColor('#4fa5ab');</div><div>&nbsp; addNewTaskButton.clProSettings.RoundHeight=40;</div><div>&nbsp; addNewTaskButton.clProSettings.RoundWidth=40;</div><div>&nbsp; addNewTaskButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; addNewTaskButton.clProSettings.FontVertAlign=palCenter;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addNewTaskButton.SetclProSettings(addNewTaskButton.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(addNewTaskButton,tbeOnClick,'onAddButtonClick');</div><div>&nbsp; MyForm.AddNewEvent(toDoIcon,tbeOnClick,'onIconClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(retrieveButton,tbeOnClick,'retrieveCurrentDayItems');</div><div><br></div><div>&nbsp; SqLiteConnection;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>}</div></div></div></div></div>]]>
   </description>
   <pubDate>Thu, 12 Feb 2026 14:07:48 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1314&amp;PID=2922#2922</guid>
  </item> 
 </channel>
</rss>