Category: Canarys

  • Populate data as Facebook feeds in ASP.NET

    Want to load the data dynamically as Facebook feeds? Need to populate the data when scrollbar comes down to page/panel? In Facebook, we use to see the post feeds would load dynamically when you scroll to bottom of the page. I did attempt the same to achieve it in ASP.NET and finally end up with…

  • New Tools in NAV 2013 (the less talked about ones) – Concluding Part

    This part (as I said in my previous blog), will contain some more new tools and features focusing on NAV Development and Administration areas. I will start here with the Development and IDE changes and additions.  2.     Development/IDE Enhancements XMLPort is runnable from Object Designer You can now run XMLPorts directly from Object Designer through Dynamics…

  • Implementing iOS Setting Bundle

     iOS Setting Bundle:- Actually sometimes we need to interact our app i.e giving some input value or changing some default value or use default value unless we are not changing that value  in  that case we need to create one app setting which will be outside the app but once we click on Setting in…

  • Base64 encoding in Objective c

    When we have some binary data that need to send across network, we generally don’t do it by just streaming the bits and bytes over the wire in a raw format.  Why ? Because some media are made for streaming text. You never know some protocols may interpret your binary data as control characters (like…

  • New Tools in NAV 2013 (the less talked about ones) – Part 1

    For some time now, I have been thinking about compiling on a list of new features and subtle tools in the latest version of Microsoft Dynamics NAV, typically those which generally do not find their mention in the What’s New documents, because they are probably outshone by the more glittering and heavy weight features. There…

  • How to implement and use Extension Methods in C#

    Do you wish to extend the built-in types with new methods? Want to extend custom types with new methods? In C#, we can use the Extension Methods to extend both built-in types and custom types. These extension methods are introduced in C# 3.0 What are Extension Methods? Extension methods are special kind of static methods…

  • Wireless Ad-Hoc distribution for iOS apps

    Creating Ad-Hoc is an important part of iOS app development because it helps us in testing the app during development phase. Here is distribution process through dropbox in which just need to click on a link of html and you are done with installation. In this process need to share that same link(public link of…

  • iOS qrcode generator

    Have you heard of QR Codes yet? Here is a quick introduction:- QR is short for Quick Response . It is used to take a piece of information from a transitory media and put it in to your cell phone.It is  more useful because it can store much more data, including url links, geo coordinates,…

  • Mobile Operating Systems And Cross Platforms

    Current Popular mobile operating systems are: Android from Google Inc.(Open source) initial release :2005 Current Version: Android 4.2 “Jelly Bean”  prior versions: 2.0 (1.0, 1.5, 1.6)  Programmed in: Java,c(native apps) OS family: Linux App build file extension:‘.apk’ IDE:Eclipse Developed by: Android Inc ,which  was purchased by Google Inc.  Android 3.0 was a tablet-oriented release and…

  • How to setup Module to Module communication in DotnetNuke

    Are you building modules in DotnetNuke? Is one module depends on another module? Want to exchange data between modules? Here we can discuss how to set up Inter Module Communication in DotnetNuke. In DNN, with the help of IModuleCommunicator and IModuleListener interfaces we can setup the communication between the modules. Here I would like to…