<?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 : Projeye Otomatik Dahil Olma</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Projeye Otomatik Dahil Olma : Son 10 Gönderilenler]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 14:00:19 +0000</pubDate>
  <lastBuildDate>Thu, 03 Jul 2025 16:46:12 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_topic_feed.asp?FID=119</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[Projeye Otomatik Dahil Olma : Unkown Host]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1049&amp;PID=2100#2100</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> Unkown Host<br /><strong>Gönderim Zamanı:</strong> 03&nbsp;Temmuz&nbsp;2025 Saat 16:46<br /><br /><span style=": rgb251, 251, 253;">Merhaba Turgut,&nbsp;</span><br style=": rgb251, 251, 253;"><span style=": rgb251, 251, 253;">Personel seçimi yapıp devam et dediğim zaman&nbsp;</span>uPersonnelForm birimi bende açılıyor. Sunucuya bağlı olmadığım için hata alıyorum sadece.&nbsp;uPersonnelForm içerisinde yer alan bileşenleri de geliyor.&nbsp;]]>
   </description>
   <pubDate>Thu, 03 Jul 2025 16:46:12 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1049&amp;PID=2100#2100</guid>
  </item> 
  <item>
   <title><![CDATA[Projeye Otomatik Dahil Olma : Unkown Host]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1049&amp;PID=2093#2093</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=312">turgutkir</a><br /><strong>Konu:</strong> Unkown Host<br /><strong>Gönderim Zamanı:</strong> 03&nbsp;Temmuz&nbsp;2025 Saat 15:38<br /><br />Personel seçimini yapıp "Devam Et" dediğim zaman buton seçili bir şekilde kalıyor devam edilmiyor.<br><br><div>Unknown host "TURGUT-KIR".</div><div>Socket Error Code: 0($0)<br><br><div>//------------------------------------------------------------------</div><div>//&nbsp; MainCode</div><div>//------------------------------------------------------------------</div><div><br></div><div>var</div><div>&nbsp; MainForm&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclForm;</div><div>&nbsp; lblTitle, lblDesc: TclLabel;</div><div>&nbsp; cmbRole&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : TclComboBox;</div><div>&nbsp; btnNext&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : TclButton;</div><div><br></div><div><br></div><div>void OpenPanel;</div><div>var</div><div>&nbsp; roleVal : String;</div><div>{</div><div>&nbsp; roleVal=LowerCase(cmbRole.Text);&nbsp; &nbsp;&nbsp;</div><div><br></div><div>&nbsp; if&nbsp; &nbsp; &nbsp; roleVal == 'personel'&nbsp;</div><div>&nbsp; Clomosy.RunUnit('uPersonnelForm')</div><div>&nbsp; else if&nbsp;</div><div>&nbsp; roleVal == 'yönetici'&nbsp;</div><div>&nbsp; Clomosy.RunUnit('uManagerForm')</div><div>&nbsp; else&nbsp; &nbsp;&nbsp;</div><div>&nbsp; ShowMessage('Lütfen önce rol seçin.');</div><div>}</div><div><br></div><div><br></div><div>{</div><div>&nbsp; MainForm=TclForm.Create(Self);</div><div>&nbsp; MainForm.clSetCaption('Rol Seçimi');</div><div><br></div><div>&nbsp; // Başlık</div><div>&nbsp; lblTitle=MainForm.AddNewLabel(MainForm,'lblTitle',</div><div>&nbsp; &nbsp; 'Ziyaretçi Yönetim Sistemine Hoş Geldiniz');</div><div>&nbsp; lblTitle.Font.Size&nbsp; =18;</div><div>&nbsp; lblTitle.Align&nbsp; &nbsp; &nbsp; =alTop;</div><div>&nbsp; lblTitle.Margins.Top=24;</div><div><br></div><div>&nbsp; // Açıklama</div><div>&nbsp; lblDesc=MainForm.AddNewLabel(MainForm,'lblDesc',</div><div>&nbsp; &nbsp; 'Lütfen rolünüzü seçin:');</div><div>&nbsp; lblDesc.Align&nbsp; &nbsp; &nbsp; =alTop;</div><div>&nbsp; lblDesc.Margins.Top=12;</div><div><br></div><div>&nbsp; // Rol seçimi</div><div>&nbsp; cmbRole=MainForm.AddNewComboBox(MainForm,'cmbRole');</div><div>&nbsp; cmbRole.AddItem('Personel','personel');</div><div>&nbsp; cmbRole.AddItem('Yönetici','yonetici');</div><div>&nbsp; cmbRole.Align&nbsp; &nbsp; &nbsp; =alTop;</div><div>&nbsp; cmbRole.Margins.Top=20;</div><div>&nbsp; cmbRole.Width&nbsp; &nbsp; &nbsp; =200;</div><div>&nbsp; cmbRole.ItemIndex&nbsp; =0;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div><br></div><div>&nbsp; // Devam butonu</div><div>&nbsp; btnNext=MainForm.AddNewButton(MainForm,'btnNext','Devam Et');</div><div>&nbsp; btnNext.Align&nbsp; &nbsp; &nbsp; =alTop;</div><div>&nbsp; btnNext.Margins.Top=32;</div><div>&nbsp; btnNext.Width&nbsp; &nbsp; &nbsp; =200;</div><div>&nbsp; btnNext.Height&nbsp; &nbsp; &nbsp;=40;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp; MainForm.AddNewEvent(btnNext, tbeOnClick, 'OpenPanel');&nbsp;&nbsp;</div><div><br></div><div>&nbsp; MainForm.Run;</div><div>}</div><div><br></div><div><div>//------------------------------------------------------------------</div><div>//&nbsp; &nbsp;Personel Formu</div><div>//------------------------------------------------------------------</div><div><br></div><div>var</div><div>&nbsp; FrmPer&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : TclForm;</div><div>&nbsp; edtCompany, edtLoc&nbsp; : TclEdit;</div><div>&nbsp; edtDate&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclEdit;&nbsp; &nbsp; &nbsp; &nbsp; // tarih metin kutusu</div><div>&nbsp; memoPurpose,</div><div>&nbsp; memoNotes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclMemo;</div><div>&nbsp; chkSale&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclCheckBox;</div><div>&nbsp; btnSave&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclButton;</div><div>&nbsp; qInsert&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclSqlQuery;</div><div>&nbsp; LoggedUserID&nbsp; &nbsp; &nbsp; &nbsp; : Integer;</div><div><br></div><div><br></div><div>void SaveMeeting;</div><div>var</div><div>&nbsp; saleVal : String;</div><div>{</div><div>&nbsp; if edtCompany.Text == ''&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Firma / kişi adı boş olamaz!');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; if edtDate.Text == ''&nbsp;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Tarih alanı boş olamaz!');</div><div>&nbsp; &nbsp; Exit;</div><div>}</div><div><br></div><div>&nbsp; saleVal=IfThen(chkSale.IsChecked,'1','0');</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; qInsert.SQL.Text=</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO Meetings ' +</div><div>&nbsp; &nbsp; &nbsp; '(UserID,CompanyName,MeetingDate,Location,Purpose,IsSale,Notes) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; IntToStr(LoggedUserID) + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(edtCompany.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(edtDate.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(edtLoc.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(memoPurpose.Text) + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; saleVal + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(memoNotes.Text) + ')';</div><div><br></div><div>&nbsp; &nbsp; qInsert.ExecSQL;</div><div>&nbsp; &nbsp; ShowMessage('Kayıt başarılı');</div><div><br></div><div>&nbsp; &nbsp; edtCompany.Text&nbsp; ='';</div><div>&nbsp; &nbsp; edtLoc.Text&nbsp; &nbsp; &nbsp; ='';</div><div>&nbsp; &nbsp; edtDate.Text&nbsp; &nbsp; &nbsp;='';</div><div>&nbsp; &nbsp; memoPurpose.Text ='';</div><div>&nbsp; &nbsp; memoNotes.Text&nbsp; &nbsp;='';</div><div>&nbsp; &nbsp; chkSale.IsChecked=False;</div><div><br></div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Hata: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>void CreateForm;</div><div>{</div><div>&nbsp; FrmPer=TclForm.Create(Self);</div><div>&nbsp; FrmPer.clSetCaption('Personel Paneli');</div><div><br></div><div>&nbsp; edtCompany =FrmPer.AddNewEdit(FrmPer,'edtCompany','Firma / Kişi');</div><div>&nbsp; edtDate&nbsp; &nbsp; =FrmPer.AddNewEdit(FrmPer,'edtDate','Tarih (yyyy-MM-dd hh:nn)');</div><div>&nbsp; edtLoc&nbsp; &nbsp; &nbsp;=FrmPer.AddNewEdit(FrmPer,'edtLoc','Yer');</div><div>&nbsp; memoPurpose=FrmPer.AddNewMemo(FrmPer,'memoPurpose','Amaç');</div><div>&nbsp; chkSale&nbsp; &nbsp; =FrmPer.AddNewCheckBox(FrmPer,'chkSale','Satış Gerçekleşti');</div><div>&nbsp; memoNotes&nbsp; =FrmPer.AddNewMemo(FrmPer,'memoNotes','Notlar');</div><div><br></div><div>&nbsp; btnSave=FrmPer.AddNewButton(FrmPer,'btnSave','Kaydet');</div><div>&nbsp; FrmPer.AddNewEvent(btnSave, tbeOnClick, 'SaveMeeting');</div><div><br></div><div><br></div><div>&nbsp; LoggedUserID=1;&nbsp; &nbsp;// örnek kullanıcı</div><div><br></div><div>&nbsp; // DB bağlantısı</div><div>&nbsp; qInsert=TclSqlQuery.Create(nil);</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; qInsert.Connection=Clomosy.DBSQLServerConnection;</div><div><br></div><div>&nbsp; FrmPer.Run;</div><div>}</div><div>CreateForm;</div><div>SaveMeeting;</div></div></div>]]>
   </description>
   <pubDate>Thu, 03 Jul 2025 15:38:00 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1049&amp;PID=2093#2093</guid>
  </item> 
  <item>
   <title><![CDATA[Projeye Otomatik Dahil Olma : Projeye otomatik dahil olma özelliği nasıl açılır?]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=492&amp;PID=503#503</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=97">ceren</a><br /><strong>Konu:</strong> Projeye otomatik dahil olma özelliği nasıl açılır?<br /><strong>Gönderim Zamanı:</strong> 08&nbsp;Mayıs&nbsp;2023 Saat 13:57<br /><br /> teşekkürler<img src="https://forum.clomosy.com.tr/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" />]]>
   </description>
   <pubDate>Mon, 08 May 2023 13:57:55 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=492&amp;PID=503#503</guid>
  </item> 
  <item>
   <title><![CDATA[Projeye Otomatik Dahil Olma : Projeye otomatik dahil olma özelliği nasıl açılır?]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=492&amp;PID=502#502</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=96">Saliha Göçergi</a><br /><strong>Konu:</strong> Projeye otomatik dahil olma özelliği nasıl açılır?<br /><strong>Gönderim Zamanı:</strong> 08&nbsp;Mayıs&nbsp;2023 Saat 13:44<br /><br />Kullanıcı ortamından projeye dahil olma işlemini yaparken geliştiricinin onaylaması durumunda projeye dahil olunmaktadır.&nbsp;<div>Bir de geliştirici otomatik dahil olma özelliğini açarak kullanıcının sadece proje aktivasyon kodunu girmesiyle otomatik projeye dahil olabilmektedir.</div><div><br></div><div><b>Otomatik Üye Kabul Etme özelliği nasıl aktif edilir?</b></div><div><br></div><div><a href="http://clomosy.com.tr" target="_blank" rel="nofollow">http://clomosy.com.tr</a>&nbsp;sitesinden geliştirici hesabınızı açın. Ardından geliştirici ortamında sol alt kısımda bulunan 'Yönetim Paneli' butonuna tıklayın. Bu sayfada bulunan 'Parametreler' sayfasına giriş yaptığınızda sayfanın alt kısımlarına doğru indiğinizde 'Otomatik Üye Kabul Etme' özelliğini aktifleştirip tamamla butonuna tıkladığınızda artık üyeleriniz otomatik projeye dahil olacaktır.<br></div>]]>
   </description>
   <pubDate>Mon, 08 May 2023 13:44:40 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=492&amp;PID=502#502</guid>
  </item> 
 </channel>
</rss>