<?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 : aktif kullanıcı veri çekme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : aktif kullanıcı veri çekme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 10:54:22 +0000</pubDate>
  <lastBuildDate>Fri, 01 Aug 2025 16:31:07 +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=1158</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[aktif kullanıcı veri çekme : Merhaba &#350;eyma,https://www.docs...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2437#2437</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> 1158<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Ağustos&nbsp;2025 Saat 16:31<br /><br />Merhaba Şeyma,&nbsp;<br><a href="https://www.docs.clomosy.com/index.php?title=Global_Variables" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=Global_Variables</a> inceler misin?<br>&nbsp;İyi çalışmalar.&nbsp;]]>
   </description>
   <pubDate>Fri, 01 Aug 2025 16:31:07 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2437#2437</guid>
  </item> 
  <item>
   <title><![CDATA[aktif kullanıcı veri çekme : var LoginForm: TclStyleForm; LoginUsernameEdit,...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2434#2434</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=330">sudenaz_seyma</a><br /><strong>Konu:</strong> 1158<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Ağustos&nbsp;2025 Saat 15:53<br /><br /><div>var</div><div>&nbsp; LoginForm: TclStyleForm;</div><div>&nbsp; LoginUsernameEdit, LoginPasswordEdit: TclProEdit;</div><div>&nbsp; LoginBtn, GoToRegisterBtn: TclProButton;</div><div>&nbsp; LoginPanel: TclProPanel;</div><div>&nbsp; KayitTitleLbl: TclProLabel;</div><div><br></div><div>uses UVeriGlobal;</div><div><br></div><div>void LoginBtnClick;</div><div>{</div><div>&nbsp; try</div><div>&nbsp; {</div><div>&nbsp; &nbsp; // Veritabanına bağlan</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'veritabanininismi.db', '');</div><div><br></div><div>&nbsp; &nbsp; // Kullanıcı kontrolü</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'SELECT * FROM Users WHERE Username = ' + QuotedStr(LoginUsernameEdit.Text) +</div><div>&nbsp; &nbsp; &nbsp; ' AND Password = ' + QuotedStr(LoginPasswordEdit.Text);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; if Clomosy.DBSQLiteQuery.RecordCount &gt; 0 {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Giriş başarılı!');</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // GLOBAL kullanıcıyı ata</div><div>&nbsp; &nbsp; &nbsp; UVeriGlobal.AktifKullanici = LoginUsernameEdit.Text;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Tabloyu oluştur (eğer yoksa)</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS ElektrikVeriTablosu (' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'ID INTEGER PRIMARY KEY AUTOINCREMENT, ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Kategori TEXT, Deger REAL, Renk TEXT, KullaniciAdi TEXT)';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Örnek veri ekle</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'INSERT INTO ElektrikVeriTablosu (Kategori, Deger, Renk, KullaniciAdi) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr('Bugün') + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '12.4,' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr('clBlue') + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(UVeriGlobal.AktifKullanici) + ')';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Ana ekrana geç</div><div>&nbsp; &nbsp; &nbsp; LoginForm.Close;</div><div>&nbsp; &nbsp; &nbsp; Clomosy.RunUnit('UAnasayfa');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Kullanıcı adı veya şifre hatalı!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Hata oluştu: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>// Kayıt ekranına geç</div><div>void GoToRegisterBtnClick;</div><div>{</div><div>&nbsp; LoginForm.Close;</div><div>&nbsp; Clomosy.RunUnit('USignin');</div><div>}</div><div><br></div><div>// Arayüz kurulumu</div><div>{</div><div>&nbsp; LoginForm = TclStyleForm.Create(Self);</div><div>&nbsp; LoginForm.SetFormColor('#dff6f0', '#43c7b1', clGVertical);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LoginPanel = LoginForm.AddNewProPanel(LoginForm, 'LoginPanel');</div><div>&nbsp; LoginPanel.Align = alClient;</div><div>&nbsp;&nbsp;</div><div>&nbsp; KayitTitleLbl = LoginForm.AddNewProLabel(LoginPanel, 'TitleLbl', 'Giriş Yap');</div><div>&nbsp; KayitTitleLbl.Align = alTop;</div><div>&nbsp; KayitTitleLbl.Height = 30;</div><div>&nbsp; KayitTitleLbl.Margins.Top = 30;</div><div>&nbsp; KayitTitleLbl.clProSettings.FontSize = 30;</div><div>&nbsp; KayitTitleLbl.SetclProSettings(KayitTitleLbl.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LoginUsernameEdit = LoginForm.AddNewProEdit(LoginPanel, 'LoginUsernameEdit', 'Kullanıcı Adı');</div><div>&nbsp; LoginUsernameEdit.Align = alTop;</div><div>&nbsp; LoginUsernameEdit.Height = 50;</div><div>&nbsp; LoginUsernameEdit.Margins.Top = 25;</div><div>&nbsp; LoginUsernameEdit.Margins.Left = 60;</div><div>&nbsp; LoginUsernameEdit.Margins.Right = 60;</div><div>&nbsp; LoginUsernameEdit.clProSettings.IsRound = True;</div><div><br></div><div>&nbsp; LoginPasswordEdit = LoginForm.AddNewProEdit(LoginPanel, 'LoginPasswordEdit', 'Şifre');</div><div>&nbsp; LoginPasswordEdit.Align = alTop;</div><div>&nbsp; LoginPasswordEdit.Height = 50;</div><div>&nbsp; LoginPasswordEdit.Margins.Top = 15;</div><div>&nbsp; LoginPasswordEdit.Margins.Left = 60;</div><div>&nbsp; LoginPasswordEdit.Margins.Right = 60;</div><div>&nbsp; LoginPasswordEdit.clProSettings.IsRound = True;</div><div>&nbsp; LoginPasswordEdit.Password = True;</div><div><br></div><div>&nbsp; LoginBtn = LoginForm.AddNewProButton(LoginPanel, 'LoginBtn', 'Giriş Yap');</div><div>&nbsp; LoginBtn.Align = alTop;</div><div>&nbsp; LoginBtn.Margins.Top = 20;</div><div>&nbsp; LoginForm.AddNewEvent(LoginBtn, tbeOnClick, 'LoginBtnClick');</div><div><br></div><div>&nbsp; GoToRegisterBtn = LoginForm.AddNewProButton(LoginPanel, 'GoToRegisterBtn', 'Üye Ol');</div><div>&nbsp; GoToRegisterBtn.Align = alTop;</div><div>&nbsp; GoToRegisterBtn.Margins.Top = 10;</div><div>&nbsp; LoginForm.AddNewEvent(GoToRegisterBtn, tbeOnClick, 'GoToRegisterBtnClick');</div><div><br></div><div>&nbsp; LoginForm.Run;</div><div>}</div><div><br></div>]]>
   </description>
   <pubDate>Fri, 01 Aug 2025 15:53:33 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2434#2434</guid>
  </item> 
  <item>
   <title><![CDATA[aktif kullanıcı veri çekme : Merhaba &#350;eyma,Kodun tamam&#305;n&#305; payla&#351;&#305;r...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2430#2430</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> 1158<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Ağustos&nbsp;2025 Saat 14:30<br /><br />Merhaba Şeyma,&nbsp;<br>Kodun tamamını paylaşır mısın?]]>
   </description>
   <pubDate>Fri, 01 Aug 2025 14:30:40 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2430#2430</guid>
  </item> 
  <item>
   <title><![CDATA[aktif kullanıcı veri çekme : merhabalar, ten unite bu &#351;ekilde...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2429#2429</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=330">sudenaz_seyma</a><br /><strong>Konu:</strong> 1158<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Ağustos&nbsp;2025 Saat 10:12<br /><br /><div>merhabalar, ten unite bu şekilde verileri aktarmaya çalıştığımda oluyordu başka bir unite de aktif kullanıcı aktarmaya çalışırken loginde hata aldım&nbsp;birim bilinmeyen tanımlayıcı veya değişken tanımlanmamış şeklinde hata veriyor</div><div>void LoginBtnClick;</div><div>{</div><div>&nbsp; try</div><div>&nbsp; {</div><div>&nbsp; &nbsp; // Veritabanına bağlan</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'veritabanininismi.db', '');</div><div><br></div><div>&nbsp; &nbsp; // Kullanıcı kontrolü</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'SELECT * FROM Users WHERE Username = ' + QuotedStr(LoginUsernameEdit.Text) +</div><div>&nbsp; &nbsp; &nbsp; ' AND Password = ' + QuotedStr(LoginPasswordEdit.Text);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; if Clomosy.DBSQLiteQuery.RecordCount &gt; 0 {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Giriş başarılı!');</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // GLOBAL kullanıcıyı ata</div><div>&nbsp; &nbsp; &nbsp; UVeriGlobal.AktifKullanici = LoginUsernameEdit.Text;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Tabloyu oluştur (eğer yoksa)</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS ElektrikVeriTablosu (' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'ID INTEGER PRIMARY KEY AUTOINCREMENT, ' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Kategori TEXT, Deger REAL, Renk TEXT, KullaniciAdi TEXT)';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Örnek veri ekle</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'INSERT INTO ElektrikVeriTablosu (Kategori, Deger, Renk, KullaniciAdi) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr('Bugün') + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; '12.4,' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr('clBlue') + ',' +</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QuotedStr(UVeriGlobal.AktifKullanici) + ')';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; // Ana ekrana geç</div><div>&nbsp; &nbsp; &nbsp; LoginForm.Close;</div><div>&nbsp; &nbsp; &nbsp; Clomosy.RunUnit('UAnasayfa');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Kullanıcı adı veya şifre hatalı!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Hata oluştu: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div>]]>
   </description>
   <pubDate>Fri, 01 Aug 2025 10:12:59 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1158&amp;PID=2429#2429</guid>
  </item> 
 </channel>
</rss>