-.NET Application demo using Google Places API
-added getdirection API-Google Map ver. 3 API
-calling/invoking Javascript from .NET Forms
-great for advance GIS developer
Facebook Fan Page
Free Programming Tips and Tricks, Source codes, Scripts, Gadgets Reviews, Technology News
<script type="text/javascript"> google.load("elements", "1", {packages: "keyboard"}); var kbd; function onLoad() { var content = document.getElementById('content'); // Create the HTML for out text area content.innerHTML = '<div>' + 'Demo of Invoking JavaScript using .NET' + '.</div>' + '<textarea id="t1" cols="47" rows="7"></textarea>'; kbd = new google.elements.keyboard.Keyboard( [google.elements.keyboard.LayoutCode.ENGLISH], ['t1']); } function ChangeLayout() { var LayOut=document.getElementById('txtLang').value; kbd.setLayout(LayOut); } function toggleVisible() { if (kbd.isVisible()) { kbd.setVisible(false); } else { kbd.setVisible(true); } } google.setOnLoadCallback(onLoad); </script>
Sub SHOW_HIDE_VIR_KEYBOARD() With Me.WBrowser .Document.InvokeScript("toggleVisible", New Object() {""}) 'call the javascript from the .htm files End With End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdShow.Click SHOW_HIDE_VIR_KEYBOARD() End Sub Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged With Me.WBrowser .Document.GetElementById("txtLang").InnerText = Trim(Me.ComboBox1.Text) 'parse data from winforms to Htm files .Document.InvokeScript("ChangeLayout", New Object() {""}) 'call the javascript from the .htm files End With End Sub
SMS Server VB Classic version
THE FULL SEND AND RECEIVED SMS SERVER with complete Source Codes for developers are available to purchase.
.NET version is also available
Feel free to contact me at the addresses and links below:
Demo:
This a sample how to send SMS using AT Commands like in Hyper Terminal via GSM Modem or compatible GSm phone attatched to the PC Comport or USB port..
For this sample i used Huawei E160 GSM/HSDPA/GPRS modem..
demonstrate how to use MSComm Control in VB6 in order to send data to the GSM Modem
TODO:
this code may not work with other modem so better check your modem's specs and manual
check your modem's settings (baud Rate,RtsHold,HandShake, etc .and comport number in order to run this project..
Good NEWS:
java and php version will out this month..
THE FULL SEND AND RECEIVED SMS SERVER with complete Source Codes for developers are available to purchase.
Feel free to contact me at the addresses and links below:
feel free to use and improved my sample code,
Goodluck
Questions and request?
Download Code:
Sample Project
Facebook Fan Page
|