<?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 : Unknown Member Method - DateTime</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : TclForm Olu&#351;turma : Unknown Member Method - DateTime]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 01 May 2026 20:55:34 +0000</pubDate>
  <lastBuildDate>Thu, 03 Jul 2025 15:43:50 +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=1048</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[Unknown Member Method - DateTime : Merhaba Turgut,Clomosy de AddNewProDateTime...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1048&amp;PID=2095#2095</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> 1048<br /><strong>Gönderim Zamanı:</strong> 03&nbsp;Temmuz&nbsp;2025 Saat 15:43<br /><br /><div>Merhaba Turgut,&nbsp;</div><div><br></div><div>Clomosy de AddNewProDateTime yok&nbsp;</div><div><a href="https://www.docs.clomosy.com/index.php?title=Date" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=Date</a></div><div><a href="https://www.docs.clomosy.com/System_Library#Date_and_Time_Functi&#111;ns&nbsp" target="_blank" rel="nofollow">https://www.docs.clomosy.com/System_Library#Date_and_Time_Functions&nbsp</a>;</div><div>Burada yer alanları kullanabilirsin</div>]]>
   </description>
   <pubDate>Thu, 03 Jul 2025 15:43:50 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1048&amp;PID=2095#2095</guid>
  </item> 
  <item>
   <title><![CDATA[Unknown Member Method - DateTime : 75. ve 76. sat&#305;rda hatalar al&#305;yorum...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1048&amp;PID=2092#2092</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=312">turgutkir</a><br /><strong>Konu:</strong> 1048<br /><strong>Gönderim Zamanı:</strong> 03&nbsp;Temmuz&nbsp;2025 Saat 14:02<br /><br /><div>75. ve 76. satırda hatalar alıyorum :<br><div>&nbsp; dtStart = FrmMgr.AddNewProDateTime(FrmMgr,'dtStart');</div><div>&nbsp; dtEnd&nbsp; &nbsp;= FrmMgr.AddNewProDateTime(FrmMgr,'dtEnd');<br><br></div><div>Unknown member method: 'AaddNewProDateTimePicker'</div><div><br></div>//------------------------------------------------------------------</div><div>//&nbsp; uManagerForm – Liste ve Filtre</div><div>//------------------------------------------------------------------</div><div><br></div><div>var</div><div>&nbsp; FrmMgr&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : TclForm;</div><div>&nbsp; lstMeetings&nbsp; &nbsp; &nbsp;: TclListView;</div><div>&nbsp; dtStart, dtEnd : TclProDateTime;&nbsp;&nbsp;</div><div>&nbsp; cmbUser&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclComboBox;</div><div>&nbsp; btnFilter&nbsp; &nbsp; &nbsp; &nbsp;: TclButton;</div><div>&nbsp; qData&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclSqlQuery;</div><div><br></div><div>/*--------------- personel listesini doldur ----------------------*/</div><div><br></div><div>void LoadUsers;</div><div>var</div><div>&nbsp; q : TclSqlQuery;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // &#8592; semikolon ZORUNLU</div><div>{</div><div>&nbsp; q = Clomosy.DBSQLServerQueryWith(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'SELECT ID, FullName FROM Users ORDER BY FullName');</div><div>&nbsp; cmbUser.Clear;</div><div><br></div><div>&nbsp; &nbsp; while (not q.EOF) {</div><div>&nbsp; &nbsp; cmbUser.AddItem(q.FieldByName('FullName').AsString,</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; q.FieldByName('ID').AsString);</div><div>&nbsp; &nbsp; q.Next;</div><div>&nbsp; };</div><div>}</div><div><br></div><div>/*---------------&nbsp; tarih + personel filtresi&nbsp; --------------------*/</div><div>void ApplyFilter;</div><div>var</div><div>&nbsp; sql : String;</div><div>&nbsp; uid : String;</div><div>{</div><div>&nbsp; sql =</div><div>&nbsp; &nbsp; 'SELECT M.ID as RECORD_GUID,' +</div><div>&nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp;U.FullName + '' - '' + M.CompanyName as MAIN_TEXT,' +</div><div>&nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp;CONVERT(nvarchar, M.MeetingDate, 104) + '' '' +' +</div><div>&nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp;CONVERT(nvarchar, M.MeetingDate,108) as SUB_TEXT ' +</div><div>&nbsp; &nbsp; 'FROM Meetings M ' +</div><div>&nbsp; &nbsp; 'LEFT JOIN Users U ON U.ID = M.UserID ' +</div><div>&nbsp; &nbsp; 'WHERE 1=1';</div><div><br></div><div>&nbsp; /* Tarih aralığı */</div><div>&nbsp; sql =</div><div>&nbsp; &nbsp; sql + ' AND M.MeetingDate BETWEEN ' +</div><div>&nbsp; &nbsp; QuotedStr(FormatDateTime('yyyy-MM-dd', dtStart.DateTime) + ' 00:00') +</div><div>&nbsp; &nbsp; ' AND ' +</div><div>&nbsp; &nbsp; QuotedStr(FormatDateTime('yyyy-MM-dd', dtEnd.DateTime) + ' 23:59');</div><div><br></div><div>&nbsp; /* Personel filtresi */</div><div>&nbsp; uid = cmbUser.GetValueIndex(cmbUser.ItemIndex);</div><div>&nbsp; if uid &lt;&gt; '' {</div><div>&nbsp; &nbsp; sql = sql + ' AND M.UserID = ' + uid;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; qData.SQL.Text = sql;</div><div>&nbsp; &nbsp; qData.Open;</div><div>&nbsp; &nbsp; lstMeetings.clLoadListViewDataFromDataset(qData);</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Sorgu hatası: ' + LastExceptionMessage);</div><div>&nbsp; }&nbsp; &nbsp;</div><div>}&nbsp;</div><div><br></div><div><br></div><div>/*---------------&nbsp; &nbsp;formu oluştur&nbsp; &nbsp;------------------------------*/</div><div>void CreateForm;</div><div>{</div><div>&nbsp; FrmMgr = TclForm.Create(Self);</div><div>&nbsp; FrmMgr.clSetCaption('Yönetici Paneli');</div><div><br></div><div>&nbsp; dtStart = FrmMgr.AddNewProDateTime(FrmMgr,'dtStart');</div><div>&nbsp; dtEnd&nbsp; &nbsp;= FrmMgr.AddNewProDateTime(FrmMgr,'dtEnd');</div><div><br></div><div>&nbsp; cmbUser = FrmMgr.AddNewComboBox(FrmMgr,'cmbUser');</div><div><br></div><div>&nbsp; btnFilter = FrmMgr.AddNewButton(FrmMgr,'btnFilter','Uygula');</div><div>&nbsp; FrmMgr.AddNewEvent(btnFilter,tbeOnClick,'ApplyFilter');</div><div><br></div><div>&nbsp; lstMeetings = FrmMgr.AddNewListView(FrmMgr,'lstMeetings');</div><div>&nbsp; lstMeetings.Align = alClient;</div><div><br></div><div>&nbsp; /* SQL Server bağlantısı */</div><div>&nbsp; qData = TclSqlQuery.Create(null);</div><div>&nbsp; Clomosy.DBSQLServerConnect(</div><div>&nbsp; &nbsp; 'SQL Server',</div><div>&nbsp; &nbsp; 'TURGUT-KIR\\ATIKER',</div><div>&nbsp; &nbsp; 'sa',</div><div>&nbsp; &nbsp; '1',</div><div>&nbsp; &nbsp; 'TURGUT25',</div><div>&nbsp; &nbsp; 1433);</div><div>&nbsp; qData.Connection = Clomosy.DBSQLServerConnection;</div><div><br></div><div>&nbsp; /* ilk açılışta bugünün verileri */</div><div>&nbsp; dtStart.DateTime = Date;</div><div>&nbsp; dtEnd.DateTime&nbsp; &nbsp;= Date;</div><div>&nbsp; LoadUsers;</div><div>&nbsp; ApplyFilter;</div><div><br></div><div>&nbsp; FrmMgr.Run;</div><div>}</div><div><br></div><div>/*---------------&nbsp; &nbsp;RunUnit giriş noktası&nbsp; &nbsp;----------------------*/</div><div>void RunUnit;</div><div>{</div><div>&nbsp; if (FrmMgr == null) {</div><div>&nbsp; &nbsp; CreateForm;</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; FrmMgr.clShow;</div><div>&nbsp; };</div><div>}</div><div><br></div>]]>
   </description>
   <pubDate>Thu, 03 Jul 2025 14:02:39 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1048&amp;PID=2092#2092</guid>
  </item> 
 </channel>
</rss>