Friday 8 June 2012

Facebook Launches App Center



Facebook has launched its App Center for the web and mobile, and it will be available in the US initially and then Facebook will roll it out to the rest of the world at a later date.
Facebook’s Apps Center will offer a range of apps including popular favourites like Draw Something, Pinterest and more, and there will be around 600 apps available at launch.

The App Center features mobile and web apps, such as Draw Something, Pinterest, and Nike+ GPS, and new apps including Jetpack Joyride, Ghosts of Mistwood, and Ghost Recon Commander.
Discover the best apps for you
The App Center gives you personalized recommendations, and lets you browse the apps your friends use. It only lists high-quality apps, based on feedback from people who use the app.
You can find out more information about Facebook’s new App Center over at Facebook, it will be available in the US from today, there are no details as yet on when it will be rolled out worldwide.

comments

Thursday 7 June 2012

The Next Dimension of Google Maps



We’ve seen a number of improvements on Google Maps over the years, including the remarkable turn-by-turn navigation that can be found on Android and the addition of the indoor floor plans that allow users to see the entire layout of a mapped building. Then there is also Street View and Google Earth. We can expect another enhancement to Google Maps to be unveiled to us really soon, as Google is getting ready to release “the next dimension” on June 6, 2012. That’s only 2 days away from now and we can only imagine what they have to offer.



Supposedly, it’s expected that 3D maps will finally go live, and is made to help people get where they want to go both physically and virtually. Not much else has been revealed and so we’ll just have to wait until they give the official announcement.
Facebook Fan Page




comments

Games Of Thrones Ascent Game Arriving On Facebook


Today Disruptor Beam the Boston-based game company has announced that the first Facebook Games Of Thrones Ascent game, based on the HBO TV series Game of Thrones and award-winning novels by George R.R. Martin. Will be arriving on Facebook in the future, with an unspecified release date.

The new Facebook Games Of Thrones Ascent game will allow players to play nobles during the unrest protracted in the books and series. CEO of Disruptor Beam, Jon Radoff, in an exclusive interview with GamesBeat.
“Everyone at Disruptor Beam was a huge fan of Game of Thrones long before we began working on the game, so we recognize that other fans expect character-driven conflict and intrigue to take center stage in our new game,”
“In Game of Thrones Ascent players will lead the life of a noble during the time of upheaval as portrayed in the books and the series thus experiencing a new type of game that unites both story and strategy. Players will claim their birthright by choosing which of the great houses they’ll swear allegiance to, securing their holdings, developing their lands and personal reputation, and assigning sworn swords to quests–while forging alliances with new friends and much more!”
Source: Venture Beat
Facebook Fan Page



comments

.NET Twitter Gadget


REST API The REST API enables developers to access some of the core primitives of Twitter including timelines, status updates, and user information. If you're building application that leverages core Twitter objects, then this is the API for you. Imagine building a profile of a user: their name, their Twitter handle, their profile avatar, and the graph of people that they are following on Twitter - all with a few RESTful API calls. 

In addition to offering programmatic access to the timeline, status, and user objects, this API also enables developers a multitude of integration opportunities to interact with Twitter. Through the REST API, the user can create and post tweets back to Twitter, reply to tweets, favorite certain tweets, retweet other tweets, and more.

Facebook Fan Page




comments

VB.NET GIS Project


-.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


comments

Sample How to capture data from Magnetic Swipe Card reader/Credit Card Reader

This Sample app shows how to use Magnetic card reader or credit card reader from MAGTEK
http://www.hallogram.com/barcodes/scanners/mag/
in your Windows based project in POS-Inventory, Payment using Credit Card Processing ,etc very useful for resto, gas stations, grocery stores,etc.
This time we will be using their SDK/ Active X/ COM components provided by MAGTEK for this model in the link above instead of using MSComm Component or Serial port class (.NET).
Magnetic swipe card Overview
Magnetic swipe card readers for the PC are shipped with your choice of RS232, Keyboard Wedge or USB interface.
Features
Powered by USB, Keyboard Wedge Port or Serial Port (No external power supply required)
Single, Dual and Three track capability
Bi-directional read capability
Reads encoded cards that meet ISO, ANSI, and AAMVA standards
Up to 1,000,000 passes with ISO-conforming cards
Includes USB or KBW interface
Dual color LED Red/Green
KBW version includes Windows® driver available to simplify application programming.
For questions and Full working Credit Card Processing Projects
just Contact me @ the Addresses below:
Download Code: 
Sample Project
Facebook Fan Page



comments

Invoking JavaScript function from WinForms

I've been working on application that needs to load page and display it in WebBrowser control. Requirement was to allow interaction between WinForms application and web page.
Here I will show a sample application where JavaScript function is called from WinForms application.
For this Blog I will be using Google Web elements , Google Web Elements allow you to easily add your favorite Google products to your website.
Process can be described by following steps:
Create Windows Forms application
Drop WebBrowser control into Form
Create Html with JavaScript function you want to call
Calling JavaScript function from WinForms application isn't so difficult.
.NET WebBrowser control has property Document which gets an HtmlDocument representing the Web page currently displayed in the WebBrowser control.
Well this javascript part is not well written ,maybe my Web God-Like Buddy (Rustan)) can clean this mess..lol
anyway here's the script
JAVASCRIPT
  1. <script type="text/javascript">
  2. google.load("elements", "1", {packages: "keyboard"});
  3. var kbd;
  4. function onLoad() {
  5. var content = document.getElementById('content');
  6. // Create the HTML for out text area
  7. content.innerHTML = '<div>' +
  8. 'Demo of Invoking JavaScript using .NET' +
  9. '.</div>' +
  10. '<textarea id="t1" cols="47" rows="7"></textarea>';
  11. kbd = new google.elements.keyboard.Keyboard(
  12. [google.elements.keyboard.LayoutCode.ENGLISH],
  13. ['t1']);
  14. }
  15. function ChangeLayout() {
  16. var LayOut=document.getElementById('txtLang').value;
  17. kbd.setLayout(LayOut);
  18. }
  19. function toggleVisible() {
  20. if (kbd.isVisible()) {
  21. kbd.setVisible(false);
  22. } else {
  23. kbd.setVisible(true);
  24. }
  25. }
  26. google.setOnLoadCallback(onLoad);
  27. </script>
So how can you call JavaScript functions in your WebBrowser control? Call the InvokeScript method on the HtmlDocument.
.NET CODE (winforms)
  1. Sub SHOW_HIDE_VIR_KEYBOARD()
  2. With Me.WBrowser
  3. .Document.InvokeScript("toggleVisible", New Object() {""}) 'call the javascript from the .htm files
  4. End With
  5. End Sub
  6. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdShow.Click
  7. SHOW_HIDE_VIR_KEYBOARD()
  8. End Sub
  9. Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
  10. With Me.WBrowser
  11. .Document.GetElementById("txtLang").InnerText = Trim(Me.ComboBox1.Text) 'parse data from winforms to Htm files
  12. .Document.InvokeScript("ChangeLayout", New Object() {""}) 'call the javascript from the .htm files
  13. End With
  14. End Sub
Conclusions:
With the ability to call JavaScript from .NET App you can now embed and extend web applications into native applications with ease. A native application gives you more control over the environment and access to computer resources that you cannot access from a web page. You can Mashup web applications with computer hardware or software in new and interesting ways.
For the complete sample please download the demo project
For questions just Contact me @ the Addresses below:
Download Code: 
Sample Project
Facebook Fan Page



comments