<?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 : unit hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : unit hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 12 Aug 2026 13:32:06 +0000</pubDate>
  <lastBuildDate>Wed, 12 Aug 2026 11:22:05 +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_post_feed.asp?TID=1648</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[unit hatası : var MyForm: TCLForm; TitleLabel:...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3822#3822</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=483">nuray</a><br /><strong>Konu:</strong> 1648<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Ağustos&nbsp;2026 Saat 11:22<br /><br /><div>var</div><div>&nbsp; MyForm: TCLForm;</div><div>&nbsp; TitleLabel: TCLabel;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Kar/Zarar Paneli ve Yazilari</div><div>&nbsp; ProfitLossPnl: TclProPanel;</div><div>&nbsp; ProfitLossTitle: TCLabel;</div><div>&nbsp; ProfitLossValue: TCLabel;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Liste Basliklari</div><div>&nbsp; ReceivablesLabel: TCLabel;</div><div>&nbsp; PayablesLabel: TCLabel;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Listelera</div><div>&nbsp; ReceivablesList: TCLListView;</div><div>&nbsp;</div><div><br></div><div>{</div><div>&nbsp; MyForm = TCLForm.Create(Self);</div><div>&nbsp; // Login ekranindaki ayni arka plan rengini koruyoruz</div><div>&nbsp; MyForm.SetFormColor('#CDA2BE', '#CDA2BE', clGCross);</div><div><br></div><div>&nbsp; // --- SAYFA BASLIGI ---</div><div>&nbsp; TitleLabel = MyForm.AddNewLabel(MyForm, 'TitleLabel', 'Financial Dashboard');</div><div>&nbsp; TitleLabel.Align = alTop;</div><div>&nbsp; TitleLabel.Margins.Top = 15;</div><div>&nbsp; TitleLabel.Margins.Left = 20;</div><div>&nbsp; TitleLabel.Margins.Right = 20;</div><div>&nbsp; TitleLabel.TextSettings.Font.Size = 22;</div><div>&nbsp; TitleLabel.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; TitleLabel.TextSettings.FontColor = '#1a1a1a';</div><div>&nbsp; TitleLabel.Height = 35;</div><div><br></div><div>&nbsp; // --- KAR/ZARAR PANELİ (PROFIT / LOSS) ---</div><div>&nbsp; ProfitLossPnl = MyForm.AddNewProPanel(MyForm, 'ProfitLossPnl');</div><div>&nbsp; ProfitLossPnl.Align = alTop;</div><div>&nbsp; ProfitLossPnl.Margins.Top = 15;</div><div>&nbsp; ProfitLossPnl.Margins.Left = 20;</div><div>&nbsp; ProfitLossPnl.Margins.Right = 20;</div><div>&nbsp; ProfitLossPnl.Height = 85;</div><div>&nbsp; ProfitLossPnl.clProSettings.BorderColor = clAlphaColor.clHexToColor('#4CAF50'); // Yesil cerceve</div><div>&nbsp; ProfitLossPnl.clProSettings.backgroundColor = clAlphaColor.clHexToColor('#E8F5E9'); // Acik yesil arka plan</div><div>&nbsp; ProfitLossPnl.clProSettings.RoundHeight = 10;</div><div>&nbsp; ProfitLossPnl.clProSettings.RoundWidth = 10;</div><div>&nbsp; ProfitLossPnl.clProSettings.BorderWidth = 2;</div><div>&nbsp; ProfitLossPnl.clProSettings.IsFill = True;</div><div>&nbsp; ProfitLossPnl.clProSettings.IsRound = True;</div><div>&nbsp; ProfitLossPnl.SetclProSettings(ProfitLossPnl.clProSettings);</div><div><br></div><div>&nbsp; ProfitLossTitle = MyForm.AddNewLabel(ProfitLossPnl, 'ProfitLossTitle', 'Net Profit / Loss');</div><div>&nbsp; ProfitLossTitle.Align = alTop;</div><div>&nbsp; ProfitLossTitle.Margins.Top = 10;</div><div>&nbsp; ProfitLossTitle.Margins.Left = 15;</div><div>&nbsp; ProfitLossTitle.TextSettings.Font.Size = 14;</div><div>&nbsp; ProfitLossTitle.TextSettings.FontColor = '#555555';</div><div><br></div><div>&nbsp; ProfitLossValue = MyForm.AddNewLabel(ProfitLossPnl, 'ProfitLossValue', '+ $12,500.00');</div><div>&nbsp; ProfitLossValue.Align = alTop;</div><div>&nbsp; ProfitLossValue.Margins.Top = 5;</div><div>&nbsp; ProfitLossValue.Margins.Left = 15;</div><div>&nbsp; ProfitLossValue.TextSettings.Font.Size = 22;</div><div>&nbsp; ProfitLossValue.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; ProfitLossValue.TextSettings.FontColor = '#2E7D32'; // Koyu Yesil Yazi</div><div><br></div><div>&nbsp; // --- ALINACAKLAR LİSTESİ (ACCOUNTS RECEIVABLE) ---</div><div>&nbsp; ReceivablesLabel = MyForm.AddNewLabel(MyForm, 'ReceivablesLabel', 'Accounts Receivable');</div><div>&nbsp; ReceivablesLabel.Align = alTop;</div><div>&nbsp; ReceivablesLabel.Margins.Top = 20;</div><div>&nbsp; ReceivablesLabel.Margins.Left = 20;</div><div>&nbsp; ReceivablesLabel.TextSettings.Font.Size = 16;</div><div>&nbsp; ReceivablesLabel.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; ReceivablesLabel.Height = 25;</div><div><br></div><div>&nbsp; ReceivablesList = MyForm.AddNewListView(MyForm, 'ReceivablesList');</div><div>&nbsp; ReceivablesList.Align = alTop;</div><div>&nbsp; ReceivablesList.Margins.Top = 5;</div><div>&nbsp; ReceivablesList.Margins.Left = 20;</div><div>&nbsp; ReceivablesList.Margins.Right = 20;</div><div>&nbsp; ReceivablesList.Height = 150; // Listenin yuksekligi</div><div><br></div><div>&nbsp; // --- YAPILACAK ÖDEMELER LİSTESİ (ACCOUNTS PAYABLE) ---</div><div>&nbsp; PayablesLabel = MyForm.AddNewLabel(MyForm, 'PayablesLabel', 'Accounts Payable');</div><div>&nbsp; PayablesLabel.Align = alTop;</div><div>&nbsp; PayablesLabel.Margins.Top = 15;</div><div>&nbsp; PayablesLabel.Margins.Left = 20;</div><div>&nbsp; PayablesLabel.TextSettings.Font.Size = 16;</div><div>&nbsp; PayablesLabel.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; PayablesLabel.Height = 25;</div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>}</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Aug 2026 11:22:05 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3822#3822</guid>
  </item> 
  <item>
   <title><![CDATA[unit hatası : Merhaba Nuray kodun tam Hali a&#351;a&#287;&#305;da...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3821#3821</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=480">kayra22</a><br /><strong>Konu:</strong> 1648<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Ağustos&nbsp;2026 Saat 11:00<br /><br />Merhaba Nuray kodun tam Hali aşağıda buluyor iyi çalışmalar dilerim&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var<div>&nbsp; MyForm: TCLForm;</div><div>&nbsp; CompanyComboBox: TCComboBox;</div><div>&nbsp; UsernameEdit: TCEdit;</div><div>&nbsp; PasswordEdit: TCEdit;</div><div>&nbsp; LoginButton: TCButton;</div><div>&nbsp; TitleLabel: TCLabel;</div><div>&nbsp; MainPnl : TclProPanel;&nbsp;</div><div>&nbsp; AltPnl : TclProPanel;</div><div>&nbsp; LeftAltResim: TclImage; // Hata düzeltildi (Fazla isim silindi)</div><div><br></div><div>void openhareketdurumu;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('uhareketdurumu');</div><div>}</div><div><br></div><div>void OnLoginClick;</div><div>{</div><div>&nbsp; // İleride buraya API'ye istek atma kodlarını ekleyeceğiz</div><div>&nbsp; ShowMessage('Seçilen Şirket: ' + CompanyComboBox.Text + ' | Kullanıcı: ' + UsernameEdit.Text);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // SAYFA GEÇİŞİ BURAYA EKLENDİ</div><div>&nbsp; openhareketdurumu;</div><div>}</div><div><br></div><div>{</div><div>&nbsp; MyForm = TCLForm.Create(Self);</div><div>&nbsp; MyForm.SetFormColor('#CDA2BE', '#CDA2BE',clGCross );</div><div><br></div><div>&nbsp; // Başlık Etiketi</div><div>&nbsp; TitleLabel = MyForm.AddNewLabel(MyForm, 'TitleLabel', 'ERP Giriş Portalı');</div><div>&nbsp; TitleLabel.Align = alMostTop;</div><div>&nbsp; TitleLabel.Margins.Top = 5;</div><div>&nbsp; TitleLabel.Margins.Right = 20;</div><div>&nbsp; TitleLabel.TextSettings.Font.Size = 40;</div><div>&nbsp; TitleLabel.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; TitleLabel.TextSettings.FontColor = '#1a1a1a';</div><div><br></div><div>&nbsp; // Şirket Seçim Alanı (Combobox)</div><div>&nbsp; CompanyComboBox = MyForm.AddNewComboBox(MyForm, 'CompanyComboBox');</div><div>&nbsp; CompanyComboBox.Align = alTop;</div><div>&nbsp; CompanyComboBox.Margins.Top = 30;</div><div>&nbsp; CompanyComboBox.Margins.Right= 20;</div><div>&nbsp; CompanyComboBox.Height = 45;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Örnek şirketleri listeye ekliyoruz</div><div>&nbsp; CompanyComboBox.AddItem('Merkez Şirket (A.Ş.)', '1');</div><div>&nbsp; CompanyComboBox.AddItem('Fabrika Şubesi (LTD.)', '2');</div><div>&nbsp; CompanyComboBox.ItemIndex = 0; // Varsayılan ilk şirket seçili gelsin</div><div><br></div><div>&nbsp; MainPnl=MyForm.AddNewProPanel(MyForm,'MainPnl');</div><div>&nbsp; MainPnl.Align = alTop;</div><div>&nbsp; MainPnl.Width = 300;</div><div>&nbsp; MainPnl.Height = 300;&nbsp;&nbsp;</div><div>&nbsp; MainPnl.Margins.Top = 20;</div><div>&nbsp; MainPnl.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ecc0c0');</div><div>&nbsp; MainPnl.clProSettings.backgroundColor = clAlphaColor.clHexToColor('#ecc0c0');</div><div>&nbsp; MainPnl.clProSettings.RoundHeight = 5;</div><div>&nbsp; MainPnl.clProSettings.RoundWidth = 5;</div><div>&nbsp; MainPnl.clProSettings.BorderWidth = 1;</div><div>&nbsp; MainPnl.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; MainPnl.clProSettings.IsRound = True;</div><div>&nbsp; MainPnl.SetclProSettings(MainPnl.clProSettings);</div><div><br></div><div>&nbsp; // Kullanıcı Adı Kutusu</div><div>&nbsp; UsernameEdit = MyForm.AddNewEdit(MainPnl, 'UsernameEdit', 'Kullanıcı Adı');</div><div>&nbsp; UsernameEdit.Align = alTop;</div><div>&nbsp; UsernameEdit.Margins.Top = 15;</div><div>&nbsp; UsernameEdit.Margins.Right = 20;</div><div>&nbsp; UsernameEdit.Height = 40;</div><div><br></div><div>&nbsp; // Şifre Kutusu</div><div>&nbsp; PasswordEdit = MyForm.AddNewEdit(MainPnl, 'PasswordEdit', 'Şifre');</div><div>&nbsp; PasswordEdit.Align = alTop;</div><div>&nbsp; PasswordEdit.Margins.Top = 20;</div><div>&nbsp; PasswordEdit.Margins.Right = 15;</div><div>&nbsp; PasswordEdit.Height = 40; // Hata düzeltildi (Noktalı virgül eklendi)</div><div>&nbsp; PasswordEdit.Password = True; // Şifrenin yıldızlı görünmesini sağlar</div><div><br></div><div>&nbsp; // Giriş Yap Butonu</div><div>&nbsp; LoginButton = MyForm.AddNewButton(MainPnl, 'LoginButton', 'Giriş Yap');</div><div>&nbsp; LoginButton.Align = alTop;</div><div>&nbsp; LoginButton.Margins.Top = 20;</div><div>&nbsp; LoginButton.Margins.Right = 15;</div><div>&nbsp; LoginButton.Height = 40;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.AddNewEvent(LoginButton, tbeOnClick, 'OnLoginClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; AltPnl = MyForm.AddNewProPanel(MyForm, 'AltPnl');</div><div>&nbsp; AltPnl.Align = alBottom;&nbsp;</div><div>&nbsp; AltPnl.Height = 280;</div><div>&nbsp; AltPnl.clProSettings.IsFill = False;&nbsp;</div><div>&nbsp; AltPnl.SetclProSettings(AltPnl.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // --- RESMİ PANELE EKLEME ---</div><div>&nbsp; LeftAltResim = MyForm.AddNewImage(AltPnl, 'SolAltResim');</div><div>&nbsp; LeftAltResim.Align = alLeft; // Resmi alt panelin soluna dayandırır</div><div>&nbsp; LeftAltResim.Width = 280;</div><div>&nbsp; LeftAltResim.Margins.Left = 0;</div><div>&nbsp; LeftAltResim.Margins.Bottom = 0;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Örnek bir logo url'si</div><div>&nbsp; MyForm.SetImage(LeftAltResim, '<a href="https://resmim.net/cdn/2026/08/12/EyIUUI.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/08/12/EyIUUI.jpg</a>');&nbsp;</div><div><br></div><div>&nbsp; MyForm.Run;</div><div>}</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Aug 2026 11:00:30 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3821#3821</guid>
  </item> 
  <item>
   <title><![CDATA[unit hatası : var MyForm: TCLForm; CompanyComboBox:...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3820#3820</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=483">nuray</a><br /><strong>Konu:</strong> 1648<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Ağustos&nbsp;2026 Saat 10:53<br /><br /><div><span style="font-size: 14px;">var</span></div><div><span style="font-size: 14px;">&nbsp; MyForm: TCLForm;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox: TCComboBox;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit: TCEdit;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit: TCEdit;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton: TCButton;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel: TCLabel;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl : TclProPanel;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl : TclProPanel; // İŞTE BURADA TANIMLIYORUZ</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim SolAltResim: TclImage; // RESMİ DE BURADA TANIMLIYORUZ</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">void OnLoginClick;</span></div><div><span style="font-size: 14px;">{</span></div><div><span style="font-size: 14px;">&nbsp; // İleride buraya API'ye istek atma kodlarını ekleyeceğiz</span></div><div><span style="font-size: 14px;">&nbsp; ShowMessage('Seçilen Şirket: ' + CompanyComboBox.Text + ' | Kullanıcı: ' + UsernameEdit.Text);</span></div><div><span style="font-size: 14px;">}</span></div><div><span style="font-size: 14px;">void openhareketdurumu;</span></div><div><span style="font-size: 14px;">{</span></div><div><span style="font-size: 14px;">&nbsp; Clomosy.RunUnit('uhareketdurumu');</span></div><div><span style="font-size: 14px;">}</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp;{</span></div><div><span style="font-size: 14px;">&nbsp;MyForm = TCLForm.Create(Self);</span></div><div><span style="font-size: 14px;">&nbsp;MyForm.SetFormColor('#CDA2BE', '#CDA2BE',clGCross );</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; // Başlık Etiketi</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel = MyForm.AddNewLabel(MyForm, 'TitleLabel', 'ERP Giriş Portalı');</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.Align = alMostTop;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.Margins.Top = 5;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.Margins.Right = 20;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.Margins.Right = 20;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.TextSettings.Font.Size = 40;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.TextSettings.Font.Style = &#091;fsBold&#093;;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel.TextSettings.FontColor = '#1a1a1a';</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; // Şirket Seçim Alanı (Combobox)</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox = MyForm.AddNewComboBox(MyForm, 'CompanyComboBox');</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.Align = alTop;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.Margins.Top = 30;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.Margins.Right= 20;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.Margins.Right = 20;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.Height = 45;</span></div><div><span style="font-size: 14px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; // Örnek şirketleri listeye ekliyoruz</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.AddItem('Merkez Şirket (A.Ş.)', '1');</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.AddItem('Fabrika Şubesi (LTD.)', '2');</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox.ItemIndex = 0; // Varsayılan ilk şirket seçili gelsin</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; MainPnl=MyForm.AddNewProPanel(MyForm,'MainPnl');</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.Align = alTop;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.Width = 300;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.Height = 300;&nbsp; MainPnl.Margins.Top = 20;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ecc0c0');</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.backgroundColor = clAlphaColor.clHexToColor('#ecc0c0');</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.RoundHeight = 5;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.RoundWidth = 5;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.BorderWidth = 1;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.IsFill = True;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.clProSettings.IsRound = True;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl.SetclProSettings(MainPnl.clProSettings);</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; // Kullanıcı Adı Kutusu</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit = MyForm.AddNewEdit(MainPnl, 'UsernameEdit', 'Kullanıcı Adı');</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit.Align = alTop;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit.Margins.Top = 15;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit.Margins.Right = 20;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit.Margins.Right = 20;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit.Height = 40;</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; // Şifre Kutusu</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit = MyForm.AddNewEdit(MainPnl, 'PasswordEdit', 'Şifre');</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Align = alTop;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Margins.Top = 20;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Margins.Right = 15;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Margins.Right = 15;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Height = 40</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit.Password = True; // Şifrenin yıldızlı görünmesini sağlar</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; // Giriş Yap Butonu</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton = MyForm.AddNewButton(MainPnl, 'LoginButton', 'Giriş Yap');</span></div><div><span style="font-size: 14px;">&nbsp; loginButton.Align =&nbsp; &nbsp; &nbsp; alTop;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton.Margins.Top = 20;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton.Margins.Right = 15;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton.Margins.Right = 15;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton.Height = 40;</span></div><div><span style="font-size: 14px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; MyForm.AddNewEvent(LoginButton, tbeOnClick, 'OnLoginClick');</span></div><div><span style="font-size: 14px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl = MyForm.AddNewProPanel(MyForm, 'AltPnl');</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl.Align = alBottom;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl.Height = 280;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl.clProSettings.IsFill = False;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl.SetclProSettings(AltPnl.clProSettings);</span></div><div><span style="font-size: 14px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; // --- RESMİ PANELE EKLEME ---</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim = MyForm.AddNewImage(AltPnl, 'SolAltResim');</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim.Align = alLeft; // Resmi alt panelin soluna dayandırır</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim.Width = 280;</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim.Margins.Left = 0;</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim.Margins.Bottom = 0;</span></div><div><span style="font-size: 14px;">&nbsp;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; // Örnek bir logo url'si (Buraya kendi resminin linkini yazabilirsin)</span></div><div><span style="font-size: 14px;">&nbsp; MyForm.SetImage(LeftAltResim, '<a href="https://resmim.net/cdn/2026/08/12/EyIUUI.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2026/08/12/EyIUUI.jpg</a>');&nbsp;</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp; MyForm.Run;</span></div><div><span style="font-size: 14px;">}</span></div><div><br></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Aug 2026 10:53:17 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3820#3820</guid>
  </item> 
  <item>
   <title><![CDATA[unit hatası : var MyForm: TCLForm; CompanyComboBox:...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3819#3819</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=483">nuray</a><br /><strong>Konu:</strong> 1648<br /><strong>Gönderim Zamanı:</strong> 12&nbsp;Ağustos&nbsp;2026 Saat 10:50<br /><br /><div><span style="font-size: 14px;">var</span></div><div><span style="font-size: 14px;">&nbsp; MyForm: TCLForm;</span></div><div><span style="font-size: 14px;">&nbsp; CompanyComboBox: TCComboBox;</span></div><div><span style="font-size: 14px;">&nbsp; UsernameEdit: TCEdit;</span></div><div><span style="font-size: 14px;">&nbsp; PasswordEdit: TCEdit;</span></div><div><span style="font-size: 14px;">&nbsp; LoginButton: TCButton;</span></div><div><span style="font-size: 14px;">&nbsp; TitleLabel: TCLabel;</span></div><div><span style="font-size: 14px;">&nbsp; MainPnl : TclProPanel;&nbsp;</span></div><div><span style="font-size: 14px;">&nbsp; AltPnl : TclProPanel; // İŞTE BURADA TANIMLIYORUZ</span></div><div><span style="font-size: 14px;">&nbsp; LeftAltResim SolAltResim: TclImage; // RESMİ DE BURADA TANIMLIYORUZ</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">void OnLoginClick;</span></div><div><span style="font-size: 14px;">{</span></div><div><span style="font-size: 14px;">&nbsp; // İleride buraya API'ye istek atma kodlarını ekleyeceğiz</span></div><div><span style="font-size: 14px;">&nbsp; ShowMessage('Seçilen Şirket: ' + CompanyComboBox.Text + ' | Kullanıcı: ' + UsernameEdit.Text);</span></div><div><span style="font-size: 14px;">}</span></div><div><span style="font-size: 14px;">void openhareketdurumu;</span></div><div><span style="font-size: 14px;">{</span></div><div><span style="font-size: 14px;">&nbsp; Clomosy.RunUnit('uhareketdurumu');</span></div><div><span style="font-size: 14px;">}</span></div><div><span style="font-size: 14px;"><br></span></div><div><span style="font-size: 14px;">&nbsp;{</span></div><div><span style="font-size: 14px;">&nbsp;MyForm = TCLForm.Create(Self);</span></div><div><span style="font-size: 14px;">&nbsp;MyForm.SetFormColor('#CDA2BE', '#CDA2BE',clGCross );</span></div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Wed, 12 Aug 2026 10:50:58 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1648&amp;PID=3819#3819</guid>
  </item> 
 </channel>
</rss>