<?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>ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu : netopenx&#039;i excel de kullanmak.</title>
  <link>http://www.erpne.org/</link>
  <description><![CDATA[XML içerik linki; ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu : ERP Entegrasyonlar&#305; : netopenx&#039;i excel de kullanmak.]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 18 Apr 2026 02:30:51 +0000</pubDate>
  <lastBuildDate>Tue, 01 Dec 2009 11:40:29 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.10</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.erpne.org/RSS_post_feed.asp?TID=1567</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu]]></title>
   <url>http://www.erpne.org/forum_images/logotype.png</url>
   <link>http://www.erpne.org/</link>
  </image>
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : Kodlar i&#231;in tesekk&#252;rler. En kisa...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10114.html#10114</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=806">Rafet_Rafet</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Aralık&nbsp;2009 Saat 11:40<br /><br />Kodlar için tesekkürler. <br><br>En kisa zamanda uyarlayip kullanmaya çaliacagim. <br><br>Muhabbetle.<br>]]>
   </description>
   <pubDate>Tue, 01 Dec 2009 11:40:29 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10114.html#10114</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : Sub maas_DEKONT()Dim SATIR As...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10106.html#10106</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=571">mcelikoz</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 01&nbsp;Aralık&nbsp;2009 Saat 09:36<br /><br /><P>Sub maas_DEKONT()<BR>Dim SATIR As Long<BR>Sheets("Veriler").Select</P><P><BR>&nbsp;&nbsp;&nbsp; Dim Kernel As New NetOpenX40.Kernel<BR>&nbsp;&nbsp;&nbsp; Dim Sirket As NetOpenX40.Sirket<BR>&nbsp;&nbsp;&nbsp; Dim DEKONT As NetOpenX40.DEKONT</P><P>&nbsp;<BR>&nbsp;&nbsp; </P><P><BR>For SATIR = 5 To 5000<BR>If Sheets("Veriler").Cells(SATIR, 1).Value &lt;&gt; "" Then</P><P>If Sheets("Veriler").Cells(SATIR, 1).Value &lt;&gt; Sheets("Veriler").Cells(SATIR - 1, 1).Value Then<BR>&nbsp;&nbsp;&nbsp; Set Kernel = CreateObject("NetopenX40.Kernel")<BR>&nbsp;&nbsp;&nbsp; Set Sirket = Kernel.yeniSirket(0, "deneme", "TEMELSET", "", "NETSIS", "net1", "0")</P><P>&nbsp;&nbsp;&nbsp; Set DEKONT = Kernel.yeniDekont(Sirket)<BR>&nbsp;&nbsp;&nbsp; DEKONT.Seri_No = "GD"<BR>&nbsp;&nbsp;&nbsp; DEKONT.DovTL = "T" '"T"L<BR>&nbsp;&nbsp;&nbsp; DEKONT.Sube_Kodu = "0"<BR>&nbsp;&nbsp;&nbsp; DEKONT.Proje_Kodu = "1"<BR>&nbsp;&nbsp;&nbsp; DEKONT.Plasiyer = "1"<BR>End If<BR>DEKONT.Tarih = Sheets("Veriler").Cells(SATIR, 1).Value<BR>DEKONT.Kod = Sheets("Veriler").Cells(SATIR, 2).Value<BR>DEKONT.C_M = Sheets("Veriler").Cells(SATIR, 3).Value<BR>DEKONT.B_A = Sheets("Veriler").Cells(SATIR, 4).Value<BR>DEKONT.Aciklama1 = Sheets("Veriler").Cells(SATIR, 5).Value<BR>DEKONT.Tutar = Sheets("Veriler").Cells(SATIR, 6).Value<BR>DEKONT.Referans = ""<BR>DEKONT.Plasiyer = "1"</P><P>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If DEKONT.C_M = "C" Then<BR>&nbsp;&nbsp;&nbsp; DEKONT.CDekont (doEkle)<BR>&nbsp;&nbsp;&nbsp; ElseIf DEKONT.C_M = "B" Then<BR>&nbsp;&nbsp;&nbsp; DEKONT.BDekont (doEkle)<BR>&nbsp;&nbsp;&nbsp; ElseIf DEKONT.C_M = "M" Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Left(Sheets("Veriler").Cells(SATIR, 2).Value, 1) = "7" Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DEKONT.Referans = "0"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; DEKONT.MDekont (doEkle)<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; 'Cells(SATIR, 7).Value = "Tamamdir"<BR>Sheets("Veriler").Cells(SATIR, 5).Value = DEKONT.Dekont_No<BR>End If<BR>Next</P><P><BR>If Sheets("Veriler").Cells(SATIR, 1).Value &lt;&gt; Sheets("Veriler").Cells(SATIR + 1, 2).Value Then<BR>&nbsp;&nbsp;&nbsp; 'MsgBox "Al sana dekont : " &amp; DEKONT.Dekont_No<BR>&nbsp;&nbsp;&nbsp; Set DEKONT = Nothing<BR>&nbsp;&nbsp;&nbsp; Set Sirket = Nothing<BR>&nbsp;&nbsp;&nbsp; Call Kernel.FreeNetsisLibrary<BR>&nbsp;&nbsp;&nbsp; Set Kernel = Nothing<BR>End If<BR>End Sub<BR></P>]]>
   </description>
   <pubDate>Tue, 01 Dec 2009 09:36:29 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10106.html#10106</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : Yazmak istiyorum.Cari Hareketlere...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10098.html#10098</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=806">Rafet_Rafet</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 26&nbsp;Kasım&nbsp;2009 Saat 13:06<br /><br />Yazmak istiyorum.<br><br>Cari Hareketlere Kayit atiyorum .<br><br>Fakat Netsise netopenx ile atarsam dekont raporlarindada göre bilecegimi düsünüyorum. <br><br>]]>
   </description>
   <pubDate>Thu, 26 Nov 2009 13:06:43 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10098.html#10098</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : okumak mi? yazmak mi istiyorsunuz?...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10094.html#10094</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=571">mcelikoz</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 25&nbsp;Kasım&nbsp;2009 Saat 19:19<br /><br />okumak mi? yazmak mi istiyorsunuz?&nbsp; excelden dekont kaydetme kodlari var ]]>
   </description>
   <pubDate>Wed, 25 Nov 2009 19:19:47 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10094.html#10094</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : Selam, Asagidaki kodu kullanarak...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10067.html#10067</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=2092">rifatgunduz</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Kasım&nbsp;2009 Saat 20:28<br /><br />Selam,<DIV>Asagidaki kodu kullanarak netopenx ile fatura okuyup ilgili fatura kalemlerini 1. sutüna yazdirabiliriz.</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000ff>Dim</FONT> Kernel <FONT color=blue>As</FONT> <FONT color=blue>New</FONT> NetOpenX.Kernel<BR><FONT color=blue>Dim</FONT> Sirket <FONT color=blue>As</FONT> NetOpenX.Sirket<BR><FONT color=blue>Dim</FONT> TekTal <FONT color=blue>As</FONT> NetOpenX.Fatura<BR><FONT color=blue>Dim</FONT> TekTalUst <FONT color=blue>As</FONT> NetOpenX.FatUst<BR><FONT color=blue>Dim</FONT> TekTalKalem <FONT color=blue>As</FONT> NetOpenX.FatKalem<BR><BR><FONT color=blue>Set</FONT> Sirket = Kernel.yeniSirket(vtMssql, "SAN", "TEMELSET", "", "NETSIS", "", 0)<BR><FONT color=blue>Set</FONT> TekTal = Kernel.yeniFatura(Sirket, FtsFat)<BR><BR><FONT color=blue>Call</FONT> TekTal.OkuUst("000000000010000", "RIFAT")<BR><FONT color=blue>Set</FONT> TekTalUst = TekTal.Ust<BR><FONT color=blue>Call</FONT> TekTal.OkuKalem<BR><FONT color=blue>For</FONT> i = 0 To TekTal.KalemAdedi - 1</DIV><DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3>&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=blue>Set</FONT> TekTalKalem = TekTal.kalem(i)</DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3>&nbsp;&nbsp;&nbsp;&nbsp; Me.Cells(i,5).Value = <FONT color=#008000><FONT color=#000000>TekTal.Stokkodu</FONT></FONT><BR><FONT color=blue>Next</FONT><BR><BR><FONT color=blue>Set</FONT> Sirket = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTal = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTalUst = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTalKalem = <FONT color=blue>Nothing</FONT> <BR><FONT color=blue>Call</FONT> Kernel.FreeNetsisLibrary<BR><FONT color=blue>Set</FONT> Kernel = <FONT color=blue>Nothing</FONT></DIV><FONT color=#0000ff></FONT></DIV><DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3><BR>Bilginize...</DIV></DIV>]]>
   </description>
   <pubDate>Tue, 24 Nov 2009 20:28:27 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10067.html#10067</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : Selam, Asagidaki kodu kullanarak...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10066.html#10066</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=2092">rifatgunduz</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Kasım&nbsp;2009 Saat 20:28<br /><br />Selam,<DIV>Asagidaki kodu kullanarak netopenx ile fatura okuyup ilgilif fatura kalemlerini 1. sutüna yazdirabiliriz.</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000ff>Dim</FONT> Kernel <FONT color=blue>As</FONT> <FONT color=blue>New</FONT> NetOpenX.Kernel<BR><FONT color=blue>Dim</FONT> Sirket <FONT color=blue>As</FONT> NetOpenX.Sirket<BR><FONT color=blue>Dim</FONT> TekTal <FONT color=blue>As</FONT> NetOpenX.Fatura<BR><FONT color=blue>Dim</FONT> TekTalUst <FONT color=blue>As</FONT> NetOpenX.FatUst<BR><FONT color=blue>Dim</FONT> TekTalKalem <FONT color=blue>As</FONT> NetOpenX.FatKalem<BR><BR><FONT color=blue>Set</FONT> Sirket = Kernel.yeniSirket(vtMssql, "SAN", "TEMELSET", "", "NETSIS", "", 0)<BR><FONT color=blue>Set</FONT> TekTal = Kernel.yeniFatura(Sirket, FtsFat)<BR><BR><FONT color=blue>Call</FONT> TekTal.OkuUst("000000000010000", "RIFAT")<BR><FONT color=blue>Set</FONT> TekTalUst = TekTal.Ust<BR><FONT color=blue>Call</FONT> TekTal.OkuKalem<BR><FONT color=blue>For</FONT> i = 0 To TekTal.KalemAdedi - 1</DIV><DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3>&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=blue>Set</FONT> TekTalKalem = TekTal.kalem(i)</DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3>&nbsp;&nbsp;&nbsp;&nbsp; Me.Cells(i,5).Value = <FONT color=#008000><FONT color=#000000>TekTal.Stokkodu</FONT></FONT><BR><FONT color=blue>Next</FONT><BR><BR><FONT color=blue>Set</FONT> Sirket = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTal = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTalUst = <FONT color=blue>Nothing</FONT><BR><FONT color=blue>Set</FONT> TekTalKalem = <FONT color=blue>Nothing</FONT> <BR><FONT color=blue>Call</FONT> Kernel.FreeNetsisLibrary<BR><FONT color=blue>Set</FONT> Kernel = <FONT color=blue>Nothing</FONT></DIV><FONT color=#0000ff></FONT></DIV><DIV><DIV =External4F4695AECD3A439A8CD7950AE5DF5EF3><BR>Bilginize...</DIV></DIV>]]>
   </description>
   <pubDate>Tue, 24 Nov 2009 20:28:04 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10066.html#10066</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. :  Peki &#246;zel bir islem yapiyormusunuz....]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10064.html#10064</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=806">Rafet_Rafet</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Kasım&nbsp;2009 Saat 18:07<br /><br />Peki özel bir islem yapiyormusunuz. <br>Referencese eklemekten baska yani. <br><br>Kullandiginiz bir kaç kodu ip ucu olarak koyarsaniz sevinirim. <br><br>Tesekkürler<br><span style="font-size:10px"><br /><br />Düzenleyen Rafet_Rafet - 24&nbsp;Kasım&nbsp;2009 Saat 18:22</span>]]>
   </description>
   <pubDate>Tue, 24 Nov 2009 18:07:26 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10064.html#10064</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : m&#252;mk&#252;n ]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10063.html#10063</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=571">mcelikoz</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 24&nbsp;Kasım&nbsp;2009 Saat 17:32<br /><br />mümkün]]>
   </description>
   <pubDate>Tue, 24 Nov 2009 17:32:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post10063.html#10063</guid>
  </item> 
  <item>
   <title><![CDATA[netopenx&#039;i excel de kullanmak. : netopenx&amp;#039;i excel de yani...]]></title>
   <link>http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post8758.html#8758</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=806">Rafet_Rafet</a><br /><strong>Konu:</strong> 1567<br /><strong>Gönderim Zamanı:</strong> 28&nbsp;Nisan&nbsp;2009 Saat 09:46<br /><br />netopenx'i excel de yani VBA'da hiç kullanan oldumu acaba.<br>Mümkünmü?...<br>]]>
   </description>
   <pubDate>Tue, 28 Apr 2009 09:46:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/netopenxi-excel-de-kullanmak_topic1567_post8758.html#8758</guid>
  </item> 
 </channel>
</rss>