Monthly Archives: February 2016

The agent must be run from a view window

This short article shows you how to resolve the error “The agent must be run from a view window”. When you right click an Agent in Lotus Notes Designer then follow by Run Agent. The error pop up like the … Continue reading

Posted in Community, Computers and Internet | Tagged , , | Leave a comment

Getting Started with Visual Studio code

This short article gives you some tips if you want to start code and debugging with Visual Studio Code. It is very hard to find how to start with Visual Studio Code. The so call documentation at https://code.visualstudio.com/Docs are fairly … Continue reading

Posted in .Net, Community | Tagged , , | Leave a comment

This content cannot be displayed in a frame

This short article shows you how to resolve “This content cannot be displayed in a frame” error when using IE 11 with Office 365 SharePoint. You might see the below error when browsing Office 365 SharePoint website.   To resolve … Continue reading

Posted in .Net, Community, Office 365 | Tagged | Leave a comment

Create SharePoint Visual Web Part for Office 365 SharePoint

This article shows you how to create Web Part in Visual Studio and deploy to Office 365 SharePoint. To create SharePoint Web Part fir Office 365 SharePoint. 1. You must have Office 365 SharePoint SDK installed 2. Go to pull … Continue reading

Posted in .Net, Community, Office 365 | Tagged , , | Leave a comment

A different version of this App is already installed with the same version number

The short article shows you how to resolve the error “A different version of this App is already installed with the same version number.  You need to delete the app from the site and the site recycle bin to install … Continue reading

Posted in .Net, Community, Office 365 | Tagged , , , | Leave a comment

How to add jdbc for Microsoft SQL Server to NetBeans

This short post shows you a quick step to add the jdbc for Microsoft SQL Server to NetBeans. I keep reading in MSDN forum, most of the people are having problem to add the jdbc jar file to the IDE … Continue reading

Posted in .Net, Community, Java | Tagged , , , | Leave a comment

Read Excel XLSX using ODBC drive and C#

This code snippet is to read the Excel xlsx file using ODBC driver. First you need to download the xlsx ODBC here https://www.microsoft.com/en-us/download/details.aspx?id=23734. It is written 2007 Office System Driver: Data Connectivity Components but I don’t have issue to use … Continue reading

Posted in .Net, Community, Microsoft Office | Tagged , , , | Leave a comment

Run Android Emulator using ionic

This short article shows you the journey to reach this Android Emulator. If you want to run Android Emulator from ionic then you may go through https://chanmingman.wordpress.com/2016/01/22/please-install-android-target-android-22/ https://chanmingman.wordpress.com/2016/01/24/error-could-not-create-the-java-virtual-machine/ https://chanmingman.wordpress.com/2016/01/24/this-computer-does-not-support-intel-virtualization-technology-vt-x/ The last thing (probably) is to uninstall your VMWare or Disable … Continue reading

Posted in .Net, Community, Java | Tagged , , | Leave a comment

How to update Active Directory using C#

This code snippet shows you how to update the attribute in AD using C#. You must get the LDAP server path correct with the user has administrators permission. DirectoryEntry entry = new DirectoryEntry(“LDAP://server.localdomain.local”, “kenny”, “password”); Specify the user that you … Continue reading

Posted in .Net, Community, Operating System | Tagged , , | Leave a comment