Software / Technology Tips

How to use jQuery Alert Dialogs in Netsuite SuiteScript?

As per my finding, Netsuite till now hasn’t provided any straight forward way (API) to implement jQuery in SuiteScripts. So, you need to follow a deceitful way to get the jQuery stuffs done in your Netsuite screen. In this Tip I’m going to show how to use a ‘jAlert’ in Netsuite screen, lets see how…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Know your Visual Studio IDE Better

These are some of the cool stuffs which can make your work easy & faster while using Visual Studio IDE. 1. Transperent intelisense popup: If the intelisense popup of the IDE is hiding your code & you want to see the code beneath the popup then you can press & hold Ctrl key which will…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Displaying PNG images in MFC project using CxImage Library

Microsoft Visual studio does not allow you to include the PNG image in the resource. It gives the option to include only bmp images. To display the PNG images we need to go for other third party libraries such as CxImage library, gdiplus, ATL class CImage etc. Among these methods CxImage is the simplest one.…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

3 Tips for boosting your .net Business/Server Products

1. Write windows Event Log Use Windows Event log to ensure that your app is working as expected. Useful in notifying the System Administrator, in case some failures or important events occur? Sample Code: using System.Diagnostics; public void WriteEventLog(string strCallerName, string strLogLine) { if (!System.Diagnostics.EventLog.SourceExists(strCallerName)) { System.Diagnostics.EventLog.CreateEventSource(strCallerName, "Application"); } EventLog EventLog1 = new EventLog(); EventLog1.Source…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Bind Dropdownlist with Picklist attribute

Using Metadata WebService of CRM bind Dropdownlist with particular Picklist attribute of CRM 4 on another application. In this article the code snipet will demonstrate that how anyone can have DropDownList exposing different information from CRM Picklist attribute. Using Metadata Web Service anyone can show all the options from a particular Picklist attribute on another…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Assigning tasks to each member using SPD2010 Workflow

Sharepoint Designer 2010 makes life easy for many developers and helps them develop complex workflows without writing a single line of code. But there are many settings presents on SPD2010 Designer which we have to learn. Here I am going to mention the steps on how to assign a task and send task notification email…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Openfire Chat server and Spark Client

Openfire is a powerful instant messaging (IM) and chat server that implements the XMPP protocol. Spark is cross-platform IM client optimized for businesses and organizations. It features built-in support for group chat, telephony integration and strong security. Both are open sources. Openfire is a real time collaboration (RTC) server licensed under the Open Source Apache…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Fixing URL issue in FullTextSqlQuery search when same web application is used in different zones

In SharePoint we can create a web application and extend the same web application for different zones, the content will be remain same but the url will be different for each zone. Let’s say I am having a web application on port 2020 and the url is   . Now I want to use this web…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Online payment using Paypal API

This tip explains about the Direct Payment API i.e how we can do online payment using Direct Payment API. n order to implement online payment for any website, we can use the PayPal platform.PayPal’s platform accept both credit cards and PayPal account directly on the website. For the online payment, PayPal provides two API-based solutions:…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Image Processing with CUDA

CUDA is well suited Image processing in parallel threads. The pixels of a image can be directly mapped to parallel threads. For efficient image processing with CUDA one need to understand the location and scope along with access pattern of pixel data . CUDA has different kinds of memories i.e. shared, constant, texture, local and…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!