Knowledge.ToString()

  • PramukhLib: Javascript Library for Indian Script is Updated

    From past few months I was working on updating PramukhLib: Javascript library for Indian Script. This library can provide your Website a power to write in 9 different Indian scripts (not languages). I have done major changes in the library including functional changes as well as character mapping changes. I have created many tools that…

    |

  • FireFox Add-on for Easily Typing in Indian Scripts

    Many of you are aware of Pramukh Type Pad for easily typing into 9 Indian scripts. I have also created many IndicIME plugin for TinyMCE 2.x, 3.x, FCKEditor and PramukhLib JavaScript library to easily integrate it with existing Website and enable Indian script typing for its visitor. This requires the Website to install this plugin/library…

    |

  • FCKEditor JSP Integration Error: The Server Didn’t Send Back a Proper XML Response

    I was having problem to integrate FCKEditor into struts 1.3. I tried to do it as per instruction in the JSP Integration method given on FCKEditor documentation but still I was not able to run it locally. Here is how I installed struts 1.3. http://localhost/jsptest (Tomcat is running on the top of apache) FCKEditor file…

    |

  • Stop SQL Server Trace Using SQL Command

    Today I started SQL Profiler and paused it. After some time, none of the buttons were enabled. I can neither resume nor stop the trace. Here are the sql commands that I finally found to stop the trace. Get the trace id Stop trace

    |

  • Change Database Name in SQL Server

    SQL Server Enterprise Manager does not let you change your database name once you create it. If you want to change your database name, you may have to manually run the following script to change it. First of all you have to login to SQL Server using osql command line utility. Once you are in,…

    |

  • ADODB Command.Execute Does Not Return Error for RAISERROR

    Description I was executing a stored proc which would halt its execution using RAISERROR. When I tried to run the stored proc in Query Analyzer it worked fine and gave me error but in VBA it couldn’t halt the execution and continued to the next statement.

    |

  • MS Access Pass-Through Query Error: Cannot Execute a Select Query

    When I tried to run an UPDATE statement from pass-through query, it throwed error “Cannot execute a select query”. This is due to that fact the property ReturnsRecords is set to True which requires the pass through query to return results. If it does not return recordset, it will throw an error. You can correct…

    |

  • Check the Existence of COM Object Registered Using regsvr32

    I had a chance to work on project which was using a COM object. This object was registered using regsvr32. During application migration to another server, I wanted to check the if this object exists on new server or not. I don’t wanted to write VB application to just check that object so suddenly a…

  • MS Access: Check If The Normal Form Or Subform Form Is Loaded

    If you need to check if MS Access form is loaded or not, you can easily check it using the folloing code This code is good until you are using single form application. This code will fail if the form is used as subform. To search all the forms including subform, I have created a…

    |

  • MS Word: Remove watermark from all Word pages using VBA

    You can create watermark in MS Word document by going to Format Menu > Background > Printed Watermarks… Here you will be able to set Text Watermark in each page. Now if you want to remove the watermark from all pages, use the following VBA script.

    |