<?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 : Clomosy TRobject Hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Clomosy TRobject Hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 07 Aug 2026 16:36:09 +0000</pubDate>
  <lastBuildDate>Fri, 07 Aug 2026 14:32:15 +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=1647</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[Clomosy TRobject Hatası : Merhaba &#304;smetilgili prosed&#252;r&#252;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1647&amp;PID=3818#3818</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> 1647<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2026 Saat 14:32<br /><br />Merhaba İsmet&nbsp;<br><br>ilgili prosedürü günceller misin&nbsp;<br><br><div>void LoginClick;</div><div>var</div><div>&nbsp; vUyeTipi, vKullaniciAdi: String;</div><div>&nbsp; vId: Integer;</div><div>&nbsp; IsAdminMaster: Boolean;</div><div>{</div><div>&nbsp; if ((Trim(UserEdit.Text) == '') || (Trim(PassEdit.Text) == ''))</div><div>&nbsp; {</div><div>&nbsp; &nbsp; HataLbl.Text = 'Lütfen tüm alanları doldurunuz!';</div><div>&nbsp; &nbsp; HataLbl.Visible = True;</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; // 1. SABİT YÖNETİCİ KONTROLÜ (Veritabanında olmasa bile geçiş izni verir)</div><div>&nbsp; IsAdminMaster = False;</div><div>&nbsp; if ((LowerCase(Trim(UserEdit.Text)) == 'yonetici') &amp;&amp; (Trim(PassEdit.Text) == '123456'))</div><div>&nbsp; {</div><div>&nbsp; &nbsp; IsAdminMaster = True;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; if (IsAdminMaster)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; HataLbl.Visible = False;</div><div>&nbsp; &nbsp; Clomosy.GlobalVariableInteger = 1;</div><div>&nbsp; &nbsp; Clomosy.GlobalVariableString = 'Yonetici';</div><div>&nbsp; &nbsp; Clomosy.RunUnit('02_uAdminPanel');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; // 2. VERİTABANI KONTROLÜ (Kayıt olan normal kullanıcılar ve DB'deki yöneticiler için)</div><div>&nbsp; try</div><div>&nbsp; &nbsp; Qry = Clomosy.DBSQLServerQueryWith(</div><div>&nbsp; &nbsp; &nbsp; 'SELECT Id, KullaniciAdi, AdSoyad, ISNULL(UyeTipi, ''Kullanici'') AS UyeTipi ' +</div><div>&nbsp; &nbsp; &nbsp; 'FROM Kullanicilar WITH (NOLOCK) ' +</div><div>&nbsp; &nbsp; &nbsp; 'WHERE (KullaniciAdi = ' + QuotedStr(Trim(UserEdit.Text)) +&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ' OR Email = ' + QuotedStr(Trim(UserEdit.Text)) + ') ' +</div><div>&nbsp; &nbsp; &nbsp; 'AND Sifre = ' + QuotedStr(Trim(PassEdit.Text))</div><div>&nbsp; &nbsp; );</div><div>&nbsp; &nbsp; Qry.Open;</div><div><br></div><div>&nbsp; &nbsp; if (not Qry.Eof)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; HataLbl.Visible = False;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; vId = Qry.FieldByName('Id').AsInteger;</div><div>&nbsp; &nbsp; &nbsp; vKullaniciAdi = Qry.FieldByName('KullaniciAdi').AsString;</div><div>&nbsp; &nbsp; &nbsp; vUyeTipi = UpperCase(Trim(Qry.FieldByName('UyeTipi').AsString));</div><div><br></div><div>&nbsp; &nbsp; &nbsp; Clomosy.GlobalVariableInteger = vId;</div><div>&nbsp; &nbsp; &nbsp; Clomosy.GlobalVariableString = vKullaniciAdi;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Veritabanındaki UyeTipi 'Yonetici' veya 'Admin' olanlar da Admin Paneline gider</div><div>&nbsp; &nbsp; &nbsp; if ((vUyeTipi == 'YONETICI') || (vUyeTipi == 'ADMIN'))</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.RunUnit('02_uAdminPanel');</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.RunUnit('Main'); // Normal kullanıcılar ana sayfaya gider</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; Exit;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; HataLbl.Text = 'Kullanıcı adı veya şifre hatalı!';</div><div>&nbsp; &nbsp; &nbsp; HataLbl.Visible = True;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; HataLbl.Text = 'Bağlantı veya sorgu hatası oluştu!';</div><div>&nbsp; &nbsp; HataLbl.Visible = True;</div><div>&nbsp; }</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>Fri, 07 Aug 2026 14:32:15 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1647&amp;PID=3818#3818</guid>
  </item> 
  <item>
   <title><![CDATA[Clomosy TRobject Hatası : var GlobalForm  : TclForm; MainPanel...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1647&amp;PID=3817#3817</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=479">ismet</a><br /><strong>Konu:</strong> 1647<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Ağustos&nbsp;2026 Saat 14:04<br /><br /><div>var</div><div>&nbsp; GlobalForm&nbsp; &nbsp; : TclForm;</div><div>&nbsp; MainPanel&nbsp; &nbsp; &nbsp;: TclProPanel;</div><div>&nbsp; LoginScroll&nbsp; &nbsp;: TclVertScrollBox;</div><div><br></div><div>&nbsp; TopBanner&nbsp; &nbsp; &nbsp;: TclProPanel;</div><div>&nbsp; HeaderTagLbl&nbsp; : TclProLabel;</div><div>&nbsp; BaslikLbl&nbsp; &nbsp; &nbsp;: TclProLabel;</div><div>&nbsp; AltBaslikLbl&nbsp; : TclProLabel;</div><div><br></div><div>&nbsp; CardShadow&nbsp; &nbsp; : TclProPanel;</div><div>&nbsp; LoginCard&nbsp; &nbsp; &nbsp;: TclProPanel;</div><div><br></div><div>&nbsp; UserLbl&nbsp; &nbsp; &nbsp; &nbsp;: TclProLabel;</div><div>&nbsp; UserEdit&nbsp; &nbsp; &nbsp; : TclProEdit;</div><div><br></div><div>&nbsp; PassLbl&nbsp; &nbsp; &nbsp; &nbsp;: TclProLabel;</div><div>&nbsp; PassEdit&nbsp; &nbsp; &nbsp; : TclProEdit;</div><div>&nbsp; PassToggleBtn : TclProButton;</div><div><br></div><div>&nbsp; HataLbl&nbsp; &nbsp; &nbsp; &nbsp;: TclProLabel;</div><div>&nbsp; LoginBtn&nbsp; &nbsp; &nbsp; : TclProButton;</div><div><br></div><div>&nbsp; AyiriciSol&nbsp; &nbsp; : TclProPanel;</div><div>&nbsp; AyiriciLbl&nbsp; &nbsp; : TclProLabel;</div><div>&nbsp; AyiriciSag&nbsp; &nbsp; : TclProPanel;</div><div><br></div><div>&nbsp; KayitBtn&nbsp; &nbsp; &nbsp; : TclProButton;</div><div><br></div><div>&nbsp; Qry&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: TclQuery;</div><div><br></div><div>void LoginClick;</div><div>{</div><div>&nbsp; if ((UserEdit.Text == '') || (PassEdit.Text == ''))</div><div>&nbsp; {</div><div>&nbsp; &nbsp; HataLbl.Text = 'Lütfen tüm alanları doldurunuz!';</div><div>&nbsp; &nbsp; HataLbl.Visible = True;</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; Qry = Clomosy.DBSQLServerQueryWith('SELECT Id, KullaniciAdi, AdSoyad, UyeTipi FROM Kullanicilar WHERE (KullaniciAdi = ' + QuotedStr(UserEdit.Text) + ' OR Email = ' + QuotedStr(UserEdit.Text) + ') AND Sifre = ' + QuotedStr(PassEdit.Text));</div><div>&nbsp; Qry.Open;</div><div><br></div><div>&nbsp; if (Qry.Eof == False)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; HataLbl.Visible = False;</div><div>&nbsp; &nbsp; Clomosy.GlobalVariableInteger = Qry.FieldByName('Id').AsInteger;</div><div>&nbsp; &nbsp; Clomosy.GlobalVariableString = Qry.FieldByName('KullaniciAdi').AsString;</div><div><br></div><div>&nbsp; &nbsp; // UyeTipi = 'Yonetici' olan kullanıcı admin paneline yönlendirilir</div><div>&nbsp; &nbsp; if (Qry.FieldByName('UyeTipi').AsString == 'Yonetici')</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Clomosy.RunUnit('02_uAdminPanel');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Clomosy.RunUnit('Main');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; HataLbl.Text = 'Kullanıcı adı veya şifre hatalı!';</div><div>&nbsp; &nbsp; HataLbl.Visible = True;</div><div>&nbsp; }</div><div>}</div><div>void SifreGoster;</div><div>{</div><div>&nbsp; if (PassEdit.Password == True)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; PassEdit.Password = False;</div><div>&nbsp; &nbsp; PassToggleBtn.Text = 'GİZLE';</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; PassEdit.Password = True;</div><div>&nbsp; &nbsp; PassToggleBtn.Text = 'GÖSTER';</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void KayitOlGit;</div><div>{</div><div>&nbsp; Clomosy.RunUnit('01_uKayitOl');</div><div>}</div><div><br></div><div>void CreatePage;</div><div>{</div><div>&nbsp; GlobalForm = TclForm.Create(Self);</div><div><br></div><div>&nbsp; MainPanel = GlobalForm.AddNewProPanel(GlobalForm, 'MainPanel');</div><div>&nbsp; MainPanel.Align = alClient;</div><div>&nbsp; MainPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#F8FAFC');</div><div>&nbsp; MainPanel.SetclProSettings(MainPanel.clProSettings);</div><div><br></div><div>&nbsp; LoginScroll = GlobalForm.AddNewVertScrollBox(MainPanel, 'LoginScroll');</div><div>&nbsp; LoginScroll.Align = alClient;</div><div><br></div><div>&nbsp; // TOP HERO BANNER (Zümrüt Yeşil Header)</div><div>&nbsp; TopBanner = GlobalForm.AddNewProPanel(LoginScroll, 'TopBanner');</div><div>&nbsp; TopBanner.Align = alNone;</div><div>&nbsp; TopBanner.Width = GlobalForm.clWidth;</div><div>&nbsp; TopBanner.Height = 210;</div><div>&nbsp; TopBanner.Position.X = 0;</div><div>&nbsp; TopBanner.Position.Y = 0;</div><div>&nbsp; TopBanner.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#064E3B');</div><div>&nbsp; TopBanner.SetclProSettings(TopBanner.clProSettings);</div><div><br></div><div>&nbsp; HeaderTagLbl = GlobalForm.AddNewProLabel(TopBanner, 'HeaderTagLbl', Chr($26BD) + ' SAHA EŞLEŞTİRME PLATFORMU');</div><div>&nbsp; HeaderTagLbl.Align = alNone;</div><div>&nbsp; HeaderTagLbl.Width = GlobalForm.clWidth;</div><div>&nbsp; HeaderTagLbl.Height = 18;</div><div>&nbsp; HeaderTagLbl.Position.X = 0;</div><div>&nbsp; HeaderTagLbl.Position.Y = 45;</div><div>&nbsp; HeaderTagLbl.clProSettings.FontSize = 10;</div><div>&nbsp; HeaderTagLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#6EE7B7');</div><div>&nbsp; HeaderTagLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; HeaderTagLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; HeaderTagLbl.SetclProSettings(HeaderTagLbl.clProSettings);</div><div><br></div><div>&nbsp; BaslikLbl = GlobalForm.AddNewProLabel(TopBanner, 'BaslikLbl', 'ADAM LAZIM');</div><div>&nbsp; BaslikLbl.Align = alNone;</div><div>&nbsp; BaslikLbl.Width = GlobalForm.clWidth;</div><div>&nbsp; BaslikLbl.Height = 42;</div><div>&nbsp; BaslikLbl.Position.X = 0;</div><div>&nbsp; BaslikLbl.Position.Y = 65;</div><div>&nbsp; BaslikLbl.clProSettings.FontSize = 28;</div><div>&nbsp; BaslikLbl.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; BaslikLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; BaslikLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; BaslikLbl.SetclProSettings(BaslikLbl.clProSettings);</div><div><br></div><div>&nbsp; AltBaslikLbl = GlobalForm.AddNewProLabel(TopBanner, 'AltBaslikLbl', 'Halı Saha Oyuncu ve Takım Bulma Portalı');</div><div>&nbsp; AltBaslikLbl.Align = alNone;</div><div>&nbsp; AltBaslikLbl.Width = GlobalForm.clWidth;</div><div>&nbsp; AltBaslikLbl.Height = 24;</div><div>&nbsp; AltBaslikLbl.Position.X = 0;</div><div>&nbsp; AltBaslikLbl.Position.Y = 112;</div><div>&nbsp; AltBaslikLbl.clProSettings.FontSize = 12;</div><div>&nbsp; AltBaslikLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#A7F3D0');</div><div>&nbsp; AltBaslikLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; AltBaslikLbl.SetclProSettings(AltBaslikLbl.clProSettings);</div><div><br></div><div>&nbsp; // KART GÖLGESİ</div><div>&nbsp; CardShadow = GlobalForm.AddNewProPanel(LoginScroll, 'CardShadow');</div><div>&nbsp; CardShadow.Align = alNone;</div><div>&nbsp; CardShadow.Width = 330;</div><div>&nbsp; CardShadow.Height = 425;</div><div>&nbsp; CardShadow.Position.X = (GlobalForm.clWidth - 330) / 2;</div><div>&nbsp; CardShadow.Position.Y = 176;</div><div>&nbsp; CardShadow.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#0F000000');</div><div>&nbsp; CardShadow.clProSettings.RoundWidth = 20;</div><div>&nbsp; CardShadow.clProSettings.RoundHeight = 20;</div><div>&nbsp; CardShadow.SetclProSettings(CardShadow.clProSettings);</div><div><br></div><div>&nbsp; // ANA GİRİŞ KARTI</div><div>&nbsp; LoginCard = GlobalForm.AddNewProPanel(LoginScroll, 'LoginCard');</div><div>&nbsp; LoginCard.Align = alNone;</div><div>&nbsp; LoginCard.Width = 330;</div><div>&nbsp; LoginCard.Height = 425;</div><div>&nbsp; LoginCard.Position.X = (GlobalForm.clWidth - 330) / 2;</div><div>&nbsp; LoginCard.Position.Y = 170;</div><div>&nbsp; LoginCard.clProSettings.BackgroundColor = clAlphaColor.clWhite;</div><div>&nbsp; LoginCard.clProSettings.RoundWidth = 20;</div><div>&nbsp; LoginCard.clProSettings.RoundHeight = 20;</div><div>&nbsp; LoginCard.clProSettings.BorderColor = clAlphaColor.clHexToColor('#E2E8F0');</div><div>&nbsp; LoginCard.clProSettings.BorderWidth = 1;</div><div>&nbsp; LoginCard.SetclProSettings(LoginCard.clProSettings);</div><div><br></div><div>&nbsp; // Kullanıcı Adı</div><div>&nbsp; UserLbl = GlobalForm.AddNewProLabel(LoginCard, 'UserLbl', 'Kullanıcı Adı veya E-Posta');</div><div>&nbsp; UserLbl.Align = alNone;</div><div>&nbsp; UserLbl.Width = 270;</div><div>&nbsp; UserLbl.Height = 18;</div><div>&nbsp; UserLbl.Position.X = 30;</div><div>&nbsp; UserLbl.Position.Y = 24;</div><div>&nbsp; UserLbl.clProSettings.FontSize = 11;</div><div>&nbsp; UserLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#334155');</div><div>&nbsp; UserLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; UserLbl.SetclProSettings(UserLbl.clProSettings);</div><div><br></div><div>&nbsp; UserEdit = GlobalForm.AddNewProEdit(LoginCard, 'UserEdit', 'Kullanıcı adı veya e-posta');</div><div>&nbsp; UserEdit.Align = alNone;</div><div>&nbsp; UserEdit.Width = 270;</div><div>&nbsp; UserEdit.Height = 42;</div><div>&nbsp; UserEdit.Position.X = 30;</div><div>&nbsp; UserEdit.Position.Y = 44;</div><div>&nbsp; UserEdit.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#F8FAFC');</div><div>&nbsp; UserEdit.clProSettings.BorderColor = clAlphaColor.clHexToColor('#CBD5E1');</div><div>&nbsp; UserEdit.clProSettings.BorderWidth = 1;</div><div>&nbsp; UserEdit.clProSettings.RoundWidth = 10;</div><div>&nbsp; UserEdit.clProSettings.RoundHeight = 10;</div><div>&nbsp; UserEdit.clProSettings.FontSize = 12;</div><div>&nbsp; UserEdit.SetclProSettings(UserEdit.clProSettings);</div><div><br></div><div>&nbsp; // Şifre</div><div>&nbsp; PassLbl = GlobalForm.AddNewProLabel(LoginCard, 'PassLbl', 'Şifre');</div><div>&nbsp; PassLbl.Align = alNone;</div><div>&nbsp; PassLbl.Width = 160;</div><div>&nbsp; PassLbl.Height = 18;</div><div>&nbsp; PassLbl.Position.X = 30;</div><div>&nbsp; PassLbl.Position.Y = 100;</div><div>&nbsp; PassLbl.clProSettings.FontSize = 11;</div><div>&nbsp; PassLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#334155');</div><div>&nbsp; PassLbl.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; PassLbl.SetclProSettings(PassLbl.clProSettings);</div><div><br></div><div>&nbsp; PassToggleBtn = GlobalForm.AddNewProButton(LoginCard, 'PassToggleBtn', 'GÖSTER');</div><div>&nbsp; PassToggleBtn.Align = alNone;</div><div>&nbsp; PassToggleBtn.Width = 70;</div><div>&nbsp; PassToggleBtn.Height = 20;</div><div>&nbsp; PassToggleBtn.Position.X = 230;</div><div>&nbsp; PassToggleBtn.Position.Y = 98;</div><div>&nbsp; PassToggleBtn.clProSettings.BackgroundColor = clAlphaColor.clNull;</div><div>&nbsp; PassToggleBtn.clProSettings.BorderWidth = 0;</div><div>&nbsp; PassToggleBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#059669');</div><div>&nbsp; PassToggleBtn.clProSettings.FontSize = 10;</div><div>&nbsp; PassToggleBtn.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; PassToggleBtn.SetclProSettings(PassToggleBtn.clProSettings);</div><div>&nbsp; GlobalForm.AddNewEvent(PassToggleBtn, tbeOnClick, 'SifreGoster');</div><div><br></div><div>&nbsp; PassEdit = GlobalForm.AddNewProEdit(LoginCard, 'PassEdit', 'Şifrenizi girin');</div><div>&nbsp; PassEdit.Align = alNone;</div><div>&nbsp; PassEdit.Width = 270;</div><div>&nbsp; PassEdit.Height = 42;</div><div>&nbsp; PassEdit.Position.X = 30;</div><div>&nbsp; PassEdit.Position.Y = 120;</div><div>&nbsp; PassEdit.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#F8FAFC');</div><div>&nbsp; PassEdit.clProSettings.BorderColor = clAlphaColor.clHexToColor('#CBD5E1');</div><div>&nbsp; PassEdit.clProSettings.BorderWidth = 1;</div><div>&nbsp; PassEdit.clProSettings.RoundWidth = 10;</div><div>&nbsp; PassEdit.clProSettings.RoundHeight = 10;</div><div>&nbsp; PassEdit.clProSettings.FontSize = 12;</div><div>&nbsp; PassEdit.SetclProSettings(PassEdit.clProSettings);</div><div>&nbsp; PassEdit.Password = True;</div><div><br></div><div>&nbsp; // Hata Mesajı</div><div>&nbsp; HataLbl = GlobalForm.AddNewProLabel(LoginCard, 'HataLbl', '');</div><div>&nbsp; HataLbl.Align = alNone;</div><div>&nbsp; HataLbl.Width = 270;</div><div>&nbsp; HataLbl.Height = 32;</div><div>&nbsp; HataLbl.Position.X = 30;</div><div>&nbsp; HataLbl.Position.Y = 172;</div><div>&nbsp; HataLbl.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#FEF2F2');</div><div>&nbsp; HataLbl.clProSettings.BorderColor = clAlphaColor.clHexToColor('#FCA5A5');</div><div>&nbsp; HataLbl.clProSettings.BorderWidth = 1;</div><div>&nbsp; HataLbl.clProSettings.RoundWidth = 8;</div><div>&nbsp; HataLbl.clProSettings.RoundHeight = 8;</div><div>&nbsp; HataLbl.clProSettings.FontSize = 11;</div><div>&nbsp; HataLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#DC2626');</div><div>&nbsp; HataLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; HataLbl.SetclProSettings(HataLbl.clProSettings);</div><div>&nbsp; HataLbl.Visible = False;</div><div><br></div><div>&nbsp; // BİRİNCİL BUTON: GİRİŞ YAP</div><div>&nbsp; LoginBtn = GlobalForm.AddNewProButton(LoginCard, 'LoginBtn', 'GİRİŞ YAP&nbsp; &nbsp;' + Chr($279C));</div><div>&nbsp; LoginBtn.Align = alNone;</div><div>&nbsp; LoginBtn.Width = 270;</div><div>&nbsp; LoginBtn.Height = 48;</div><div>&nbsp; LoginBtn.Position.X = 30;</div><div>&nbsp; LoginBtn.Position.Y = 218;</div><div>&nbsp; LoginBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#059669');</div><div>&nbsp; LoginBtn.clProSettings.FontColor = clAlphaColor.clWhite;</div><div>&nbsp; LoginBtn.clProSettings.FontSize = 14;</div><div>&nbsp; LoginBtn.clProSettings.RoundWidth = 12;</div><div>&nbsp; LoginBtn.clProSettings.RoundHeight = 12;</div><div>&nbsp; LoginBtn.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; LoginBtn.SetclProSettings(LoginBtn.clProSettings);</div><div>&nbsp; GlobalForm.AddNewEvent(LoginBtn, tbeOnClick, 'LoginClick');</div><div><br></div><div>&nbsp; // ÇİZGİLİ AYIRICI</div><div>&nbsp; AyiriciSol = GlobalForm.AddNewProPanel(LoginCard, 'AyiriciSol');</div><div>&nbsp; AyiriciSol.Align = alNone;</div><div>&nbsp; AyiriciSol.Width = 95;</div><div>&nbsp; AyiriciSol.Height = 1;</div><div>&nbsp; AyiriciSol.Position.X = 30;</div><div>&nbsp; AyiriciSol.Position.Y = 290;</div><div>&nbsp; AyiriciSol.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#E2E8F0');</div><div>&nbsp; AyiriciSol.SetclProSettings(AyiriciSol.clProSettings);</div><div><br></div><div>&nbsp; AyiriciLbl = GlobalForm.AddNewProLabel(LoginCard, 'AyiriciLbl', 'veya');</div><div>&nbsp; AyiriciLbl.Align = alNone;</div><div>&nbsp; AyiriciLbl.Width = 50;</div><div>&nbsp; AyiriciLbl.Height = 18;</div><div>&nbsp; AyiriciLbl.Position.X = 140;</div><div>&nbsp; AyiriciLbl.Position.Y = 281;</div><div>&nbsp; AyiriciLbl.clProSettings.FontSize = 11;</div><div>&nbsp; AyiriciLbl.clProSettings.FontColor = clAlphaColor.clHexToColor('#94A3B8');</div><div>&nbsp; AyiriciLbl.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; AyiriciLbl.SetclProSettings(AyiriciLbl.clProSettings);</div><div><br></div><div>&nbsp; AyiriciSag = GlobalForm.AddNewProPanel(LoginCard, 'AyiriciSag');</div><div>&nbsp; AyiriciSag.Align = alNone;</div><div>&nbsp; AyiriciSag.Width = 95;</div><div>&nbsp; AyiriciSag.Height = 1;</div><div>&nbsp; AyiriciSag.Position.X = 205;</div><div>&nbsp; AyiriciSag.Position.Y = 290;</div><div>&nbsp; AyiriciSag.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#E2E8F0');</div><div>&nbsp; AyiriciSag.SetclProSettings(AyiriciSag.clProSettings);</div><div><br></div><div>&nbsp; // İKİNCİL BUTON: KAYIT OL YÖNLENDİRMESİ</div><div>&nbsp; KayitBtn = GlobalForm.AddNewProButton(LoginCard, 'KayitBtn', 'Hesabın yok mu? Kayıt Ol');</div><div>&nbsp; KayitBtn.Align = alNone;</div><div>&nbsp; KayitBtn.Width = 270;</div><div>&nbsp; KayitBtn.Height = 44;</div><div>&nbsp; KayitBtn.Position.X = 30;</div><div>&nbsp; KayitBtn.Position.Y = 324;</div><div>&nbsp; KayitBtn.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#F1F5F9');</div><div>&nbsp; KayitBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#CBD5E1');</div><div>&nbsp; KayitBtn.clProSettings.BorderWidth = 1;</div><div>&nbsp; KayitBtn.clProSettings.FontColor = clAlphaColor.clHexToColor('#059669');</div><div>&nbsp; KayitBtn.clProSettings.FontSize = 12;</div><div>&nbsp; KayitBtn.clProSettings.RoundWidth = 10;</div><div>&nbsp; KayitBtn.clProSettings.RoundHeight = 10;</div><div>&nbsp; KayitBtn.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; KayitBtn.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; KayitBtn.SetclProSettings(KayitBtn.clProSettings);</div><div>&nbsp; GlobalForm.AddNewEvent(KayitBtn, tbeOnClick, 'KayitOlGit');</div><div>}</div><div><br></div><div>{</div><div>&nbsp; CreatePage;</div><div>&nbsp; GlobalForm.Run;</div><div>} giriş yap formunda SQL Server a kayıtlı kullanıcı adı şifresi girdiğimde hata vesaire vermiyo direk giriş yap dediğimde giriş yap formunu sıfırlıyo ilk acıldığı gibi geliyor fakat ismet adlı kullanıcıdan giriş yaparken bir problem yaşanmıyor&nbsp;</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>Fri, 07 Aug 2026 14:04:56 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1647&amp;PID=3817#3817</guid>
  </item> 
 </channel>
</rss>