www.borneoexchanger.com

Tuesday, September 9, 2008

Belajar Forex Trading Valas Online di Agea


--------------------------------------------------------------------------------

Belajar Forex Trading Valas Online di Agea

Bisnis dan Belajar Forex Trading Valas Online tanpa Modal Sepeserpun di Agea! Free Bonus $5 Saat Registrasi, Legal, No Commission Fee, No Overnight, No Interest, Spread 2, Trading Bisa Hanya dengan Modal $1, Deposit dan Withdrawl dengan Liberty Reserve, Wire Transfer, e-bullion, e-dinar, dan webmoney. Ayo Manfaatkan Peluang Bisnis Agea Forex Trading Valas Online untuk Mencari Uang di Internet. Ayo Belajar Trading Valas Online di Agea, Semua Serba Gratis!

Real Forex Trading Valas Online tanpa Modal Sepeserpun di Agea

FOREX TRADING (Valas Trading) adalah perdagangan mata uang asing atau biasa disebut valuta asing. Perdagangan mata uang asing (valuta asing) merupakan pasar terbesar di dunia diukur berdasarkan nilai total transaksi. Hasil survei BIS (Bank International for Settlement – bank sentralnya bank-bank sentral seluruh dunia) yang dilakukan pada akhir tahun 2004, menemukan fakta bahwa nilai transaksi perdagangan valuta asing mencapai USD 1,900miliar per hari. Dengan demikian, prospek investasi di perdagangan forex adalah sangat bagus dilihat dari segi liquiditas.

Perdagangan valuta asing (forex trading valas) berjalan selama 24 jam, berputar mulai dari pasar New Zaeland & Australia yang berlangsung pukul 05.00–14.00 WIB, terus ke pasar Asia yaitu Jepang & Singapura yang berlangsung pukul 07.00–16.00 WIB, ke pasar Eropa yaitu Jerman & Inggris yang berlangsung pukul 13.00–22.00, sampai ke pasar Amerika yang berlangsung pukul 20.30–10.30. Dalam perkembangan sejarahnya, bank sentral milik negara-negara dengan cadangan mata uang asing yang besar sekalipun dapat dikalahkan oleh kekuatan pasar forex/valas yang bebas.

Forex trading (valas trading/perdagangan valuta asing) saat ini sudah sangat mudah untuk dilakukan oleh siapapun dan dari manapun. Dengan modal komputer yang tersambung ke internet, kita sudah bisa melakukan forex trading (valas trading) secara online baik dari rumah, kantor, warnet, dan darimana saja yang penting ada fasilitas sambungan internet. Dengan mendaftar di Agea, Anda tidak perlu lagi memikirkan modal untuk melakukan forex trading (valas trading), begitu daftar langsung bisa langsung trading karena Anda mendapatkan bonus selamat datang $5 real money untuk live trading dan $10,000 virtual money untuk simulasi dengan kondisi pasar yang sesungguhnya. Belajar secara online forex trading (valas trading) dengan metoda belajar sambil praktek akan membuat Anda lebih cepat memahami segala hal tentang forex trading (valas trading).

Transaksi real maupun belajar Forex Trading (valas trading/jual beli valuta asing) di Agea adalah pilihan terbaik bagi para calon trader dalam mengembangkan ilmu, maupun bagi trader profesional dalam bertransaksi forex trading (valas trading/jual beli mata uang asing).

KEUNGGULAN

Agea menyediakan layanan over-the-counter market making pada Forex dan Funds; memberikan bonus awal $5, sehingga anda dapat segera memulai trading tanpa harus melakukan deposit dengan uang anda; trading dengan 1% margin; zero-interest pada semua posisi open; tidak ada komisi trading; virtual dan live desk dalam satu account; variabel spread standar industri; berita-berita terbaru, alert pada peristiwa pasar, saluran chating, support 24 jam, alat charting yang paling canggih dan mudah digunakan; dan pengalaman forex trading online yang terbaik!

--------------------------------------------------------------------------------

Thursday, September 4, 2008

VB.Net Simple Connection String

Imports System
Imports System.Data
Imports System.Data.OleDb
Imports System.Data.SqlClient
Imports System.Collections
Imports System.Windows.Forms
Imports System.Resources

Public Class MainClass
Shared Sub Main()
'Declare variables and objects
Dim strConnectionString As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=Employee.mdb;"
Dim objConnection As New OleDbConnection(strConnectionString)
Dim strSQL As String = _
"SELECT FirstName, LastName FROM Employee"
Dim objCommand As New OleDbCommand(strSQL, objConnection)
Dim objDataAdapter As New OleDbDataAdapter(objCommand)
Dim objDataTable As New Data.DataTable("Employee")
Dim objDataRow As DataRow

Try
'Open the database connection
objConnection.Open()

'Fill the DataTable object
objDataAdapter.Fill(objDataTable)

'Load the list box on the form
For Each objDataRow In objDataTable.Rows
Console.WriteLine(objDataRow.Item("FirstName") & " " & _
objDataRow.Item("LastName"))
Next
Catch OleDbExceptionErr As OleDbException
'Write the exception
Console.WriteLine(OleDbExceptionErr.Message)
Catch InvalidOperationExceptionErr As InvalidOperationException
'Write the exception
Console.WriteLine(InvalidOperationExceptionErr.Message)
End Try

'Close the database connection
objConnection.Close()

'Clean up
objDataRow = Nothing
objDataTable.Dispose()
objDataTable = Nothing
objDataAdapter.Dispose()
objDataAdapter = Nothing
objCommand.Dispose()
objCommand = Nothing
objConnection.Dispose()
objConnection = Nothing

End Sub
End Class

Initializing a jagged array, one in which the length of each array differs

Imports System
Imports System.Data
Imports System.Collections

public class MainClass
Shared Sub Main()
Dim c()() As Integer = {New Integer() {1, 2}, New Integer() {1, 2, 3}}

c(1) = New Integer() {4, 5}
Console.WriteLine(c(1)(1))
c(1) = System.Array.CreateInstance(GetType(System.Int32), 10)
Console.WriteLine(c(1)(1))
Dim d() As Integer = {6, 7}
c(1) = d
Console.WriteLine(c(1)(1))
End Sub
End Class

MyClass - Implementing Polymorphism in VB.Net

MyClass - Implementing Polymorphism in VB.Net



Learn how to take advantage of polymorphism in VB.Net with William's quick tutorial. Learn how polymorphism can eleviate your OOP-related headaches!

This article explains and extends the know-how of implementing polymorphism in VB.Net. Of course, polymorphism is a huge topic and I will only focus on the little known VB.Net keyword MyClass.

There was a recent tip published titled, "Polymorphism Can Lead to Head Scratching in VB.Net". It can be found here.

I would like to stress that VB.Net is a full compliant object-oriented language and thus, OOP should be practiced at all times within .NET Development, albeit with careful planning and design so as not to lose focus.

In the aforementioned article, the author stresses that polymorphism can lead to nightmares and headaches. I would like to stress that not implementing polymorphism can lead to much worse nightmares and headaches in terms of code maintenance and extensibility.

The above problem, as stated by the author, can essentially be solved with the VB.Net keyword: MyClass.

I will replicate the exact same code, as first published in the original tip, and I will place the keyword in the appropriate place.

Lets see some code below:

Class Parent
Public Overridable Sub p1()
Console.Write("Parent.p1")
End Sub
Public Sub p2()
MyClass.p1()
'Implementing keyword MyClass here tells all derived classes to refer to the base / abstract class wherein the keyword MyClass appears
End Sub
End Class

Class Child
Inherits Parent
Public Overrides Sub p1()
Console.Write("Child.p1")
MyBase.p2()
End Sub
End Class

Sub Main()
Dim p As Parent
Dim c As Child
p = New Parent()
p.p1() 'OK
p.p2() 'OK
p = New Child()
p.p1() 'stack overflow error is prevented

If MyClass is not implemented above in the base class, you will get a stack overflow error. So why does the stack overflow occur?

  • Parent.p2() calls Parent.p1()
  • Parent.p1() is polymorphic because it can be overridden
  • Child.p1() overrides Parent.p1() so any calls to Parent.p1() will actually call Child.p1() if you have an instance of class Child
  • Child.p1() calls MyBase.p2()
  • MyBase.p2() is actually Parent.p2()

Now if you are still with me, the pitfall comes when you have an instance of class Child and call procedures p1 and p2. Calling p1 produces the following execution flow:

Child.p1 -> Parent.p2 -> Child.p1 -> Parent.p2 -> Child.p1 -> etc.

And the cycle repeats until we have no stack space left. Calling p2 produces the following execution flow:

Child.p2 -> Child.p1 -> Parent.p2 -> Child.p1 -> Parent.p2 -> Child.p1 -> etc.

Implementing the keyword MyClass in the base class tells all derived classes to use the method in the base class itself and, therefore, a stack overflow error is prevented.

p.p2() 'stack overflow error is prevented
c = New Child()
c.p1() 'stack overflow error is prevented
c.p2() 'stack overflow error is prevented
End Sub

I hope this will help VB.Net developers along the way to develop software the object-oriented way.

Google Chrome: A New Rival For Browser Vendors

Google Chrome: A New Rival For Browser Vendors


It's like that there's nothing on this world that can't be made in Google. They have conquered the search engine market, and then they travel throughout other market as well, such as Social network, Image management tools, Local search engine, Earth project, Map project, and many other things on their labs waiting to be published.

Today, they announced another product, which called Google Chrome. It's a web browser (YES, it's yet another WEB BROWSER). Like all Google's product, they tried to make their product as simple as possible, with clean interface. But that's only in the front end. Deep inside the code, they have put Java Script engine called V8 which should give better performance compared to other products available. They are focusing on the JS engine since probably most of their products uses JS. They combined WebKit and Mozilla's Firefox to produce a better product and even better, they make the source code available to public.

Right now, they don't have a Linux version yet, but they are working on it. Mac version is also on their TODO list big grin. The Windows version will be published in 24 hours, so stay tuned

about Me

I 'am from Indonesia.
My Name is Aril

" If we are to achieve results never before accomplished, we must expect to employ methods never before attempted."