Software / Technology Tips

How To Create A PDF By Clicking A Button Using Suitescript

First, I will add a button in ‘BeforeLoad’ event of ‘user-event script’.  Here, nlapiResolveURL(type, identifier, id, displayMode) API is used to create a URL on-the-fly by passing URL parameters from within SuiteScript.  nlobjForm.addButton(name, label, script) is used to create a button. nlapiLogExecution(type, title, details) logs an entry in the  script Execution Log subtab, which appears on the Script Deployment page.…

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

Physical Mysql – what are these? (.FRM, .MYI, .MYD). Need this?

Generally you can find the data directory of your file with your .my.cnf file. The physical structure of db is some thing like a directory structure, where each database is a subdirectory under the main directory and has some files in it. Each table has its own file. Bascially one can see three types of…

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

Add A Tab Using User-Event Script And Show A Link There To Refer A Suitelet Page

I want to add a new tab in a ‘case record’ of a Netsuite account using user-event script. And, there a link is given. After clicking that link, it will  be moved to another form,which will be created by Suitelet script. And,a sublist will be added in that tab. There is 3 different types in…

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

Programatically creating and fetching controls in TablelayoutPanel in Windows application.

Tablelayoutpanel can arrange the controls in the cells by defining the column and row number. We can add controls by defining the column and row Number. Add a TableLayoutPanel control in the form and name it as “TablelayoutPnl”. Dim IDLbl As New Label IDLbl.Name = "ID" IDLbl.Size = New System.Drawing.Size(10, 17) IDLbl.Text = "Test" Dim…

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

How To Change An Image Periodically With Timer Control Using UpdatePanel In ASP.NET

At times we may want to automatically change images in a given time interval so that our web page will looks good. We can do it by taking Timer control and UpdatePanel. In the below example 9 images are taken and image of a banner is changing with these images periodically.A timer control is taken and it’s…

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

How to detect QR code(2D bar code) in an image using Zxing library

Here I am going to discuss about scanning of QR code in an Image. First I would like to introduce you about QR. What is QR? A QR code (abbreviated from Quick Response code) is a specific matrix barcode (or two-dimensional code) that is readable by dedicated QR barcode readers and camera telephones. The code…

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

CREATING A NAVIGATION MENU IN UMBRACO CMS V5

In Umbraco the contents are organized by creating document types,templates,partial views,macros etc. So here we aim to create a navigation menu using a Macro. For this we should first know – What is a Macro in Umbraco? In Umbraco macros are the small building blocks of functionality that can be dropped in an editor. Each…

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

How to Create a XML File Using XmlTextWriter

1. Create a XmlTextWriter Object. 2. Pass the Xml File name and encoding type parameter through the Object.If encoding parameter is set to Nothing, then default encoding will be “UTF-8”. XmlTextWriter writer  = new XMlTextWriter(“fileName”, null); 3. Indent Xml Document: Use Formatting Property to automatically format the XML File.  writer.Formatting = Formatting.Indented; 4.Use Following essential…

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

The Difference Between .Find() And .Filter() Methods In jQuery

If you are new to jQuery, you may have confusion with the jQuery find() and filter() methods. The reason is both find() and filter() methods are very similar. But the way they work is different! The filter() method filters the elements from current set while the find() method searches child elements of selected element. In…

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

How To Set Label And Value In jQuery UI Autocomplete

Lets say, we want to show an autocomplete field with different display text and the different raw value using jQuery UI autocomplete. So what will we do. First we have to send our formatted data from the server side coding. Lets take a look to an example: Suppose we want an autocomplete field where we…

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