Please copy the function; to see why it returns a wrong value, or to see if it has a run time error..
On Fri, May 27, 2011 at 6:38 AM, Yosef Kevin <[email protected]> wrote: > This is my problem: > > I have a class , the name is "Koneksi", and this class has a method > "getAttrTambahBarang" with two string parameters. The method will return an > output based on the parameters inputed > > On the form, I instance this class and call that method like this: > > Dim con as New Koneksi > con.getAttrTambahBarang("handphone","getId") > con.getAttrTambahBarang("handphone","getNama") > > The problem is when I call the same method twice (or say more than once), > the method doesn't return the expected result (it returns nothing). > But, if I change the code above into this: > > This is my problem: > > I have a class , the name is "Koneksi", and this class has a method > "getAttrTambahBarang" with two string parameters. The method will return an > output based on the parameters inputed > > On the form, I instance this class and call that method like this: > > Dim con as New Koneksi > con.getAttrTambahBarang("handphone","getId") > Dim con2 as New Koneksi > con2.getAttrTambahBarang("handphone","getNama") > > It works, but of course, it's not good solution (since if I want to call > the method 100times, its fool to create 100 instance). Please help me ASAP > > > -- > Yosef Kevin > http://codingexplorer.blogspot.com > PIN : 21AD562F > MSN : [email protected] > YM : yosef.kevin > Gtalk: yosef.kevin > > -- > You received this message because you are subscribed to the Google > Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML > Web Services,.NET Remoting" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/dotnetdevelopment?hl=en?hl=en > or visit the group website at http://megasolutions.net > -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/dotnetdevelopment?hl=en?hl=en or visit the group website at http://megasolutions.net
