Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I didn't open Visual basic since 2 months; I opened it tonight and converted the "DDE-Sample.xls" to Visual basic with some improvements (a full pairs list).
If you like it, I will make it save the history.
Do you have any suggestions?
I think it is a neat app, but I would like to see the source code. Is that the source included in the zip? I couldn't find actual vb code.
Basically, the app re-displays the info from the MaketWatch window via a DDE interface. That would be cool to see the code to do that, but I don't see the use for an end-user..unless I'm just stupid and missing something.
I think it is a neat app, but I would like to see the source code. Is that the source included in the zip? I couldn't find actual vb code.
Basically, the app re-displays the info from the MaketWatch window via a DDE interface. That would be cool to see the code to do that, but I don't see the use for an end-user..unless I'm just stupid and missing something.
5y
fivewhy,
Thank you very much . The source code is included in the zip file.
PHP Code:
Private Sub Check1_Click()
MsgBox "Coming soon!", vbExclamation + vbOKOnly, "MT4 Monitor"
End Sub
Private Sub Form_Load()
LoadPairs
End Sub
Private Sub TimerCheckBrowsers_Timer()
On Error GoTo err1
TxtDDE(0).LinkTopic = "MT4|BID"
TxtDDE(0).LinkItem = Combo1.Text
TxtDDE(0).LinkMode = 1
TxtDDE(0).LinkRequest
OK, so it appears that you are using the "LinkRequest" method of the textbox to call data from the DDE server. But this method isn't available in .NET 2.0 and I can't seem to find it anywhere.
If I wanted to connect to a DDE sever in .NET, do you know how I would do that?