Error in arrays(binary multiplication)

import java.io.*;
class binaryMultiply1
private static int length;
private static int arr [], brr [];
public static int recurrsive (int n, int arr [], int brr [])
int mid = 0; //mid = n/2
int arrH [] = new int [n * 2]; //the first half of array (arr)
int arrL [] = new int [n * 2]; //the second half of array(arr)
int brrH [] = new int [n * 2]; //first half of array( brr)
int brrL [] = new int [n * 2]; //the second half of array(brr)
int x; //arrH+brrH
int y; //arrL+brrL
int z; //(arrH+arrL)(brrH+brrL)
int aofsum [] = new int [n * 2]; //sum of a
int bofsum [] = new int [n * 2]; // sum of b
int k = (int) ((Math.pow (2, n)) - (Math.pow (2, n / 2))) * x;
k += (int) ((Math.pow (2, n)) - (Math.pow (2, n / 2))) * y;
k += z;
return k;
//int m1[] = new int [n * 2]; //
// int m2[] = new int [n * 2];
// int result [] = new int [n * 2];
int c1 = 0; //carry of a
int c2 = 0; // carry of b
for (int i = 0 ; i < n * 2 ; i++)
arrH = 0;
arrL [i] = 0;
brrH [i] = 0;
brrL [i] = 0;
aofsum [i] = 0;
bofsum [i] = 0;
//m1 [i] = 0;
// m2 [i] = 0;
if (n == 1)
k = arrH [0] * brrH [0];
return k;
else
mid = n / 2;
for (int i = 0 ; i < mid ; i++)
arrH [i] = arr [i];
brrH [i] = brr [i];
for (int j = 0, i = mid ; i < n ; i++, j++)
arrL [j] = arr [i];
brrL [j] = brr [i];
x = recurrsive (mid, arrL, brrL);
y = recurrsive (mid, arrH, brrH);
int i = 0;
for (i = mid - 1 ; i > 0 ; i--)
aofsum [i] = arrH [i] + arrL [i] + c1;
bofsum [i] = brrH [i] + brrL [i] + c2;
//if (i != mid - 1)
if (aofsum [i] == 2)
aofsum [i] = 0;
c1 = 1;
else if (aofsum [i] == 3)
aofsum [i] = 1;
c1 = 1;
else
c1 = 0;
if (bofsum [i] == 2)
bofsum [i] = 0;
c2 = 1;
else if (bofsum [i] == 3)
bofsum [i] = 1;
c2 = 1;
else
c2 = 0;
aofsum [0] = arrH [0] + arrL [0] + c1;
bofsum [0] = brrH [0] + brrL [0] + c2;
z = recurrsive (mid, aofsum, bofsum);
public static void main (String args [])
int length;
System.out.println ("Enter bit length:");
length = input.getInt ();
arr = new int [length];
brr = new int [length];
//result = new int [2 * length];
System.out.println ("Enter first binary no:");
for (int i = 0 ; i < length ; i++)
arr [i] = input.getInt ();
System.out.println ("Enter second binary no:");
for (int i = 0 ; i < length ; i++)
brr [i] = input.getInt ();
int output = recurrsive(length,arr[],brr[]);
System.out.println ("output=" + output);
int c [];
c = new int [2 * length];
for (int i = 0 ; i < 2 * length ; i++)
c [i] = 0;
int i = 2 * length - 1;
while (output > 0)
if (output % 2 != 0)
c [i] = 1;
output /= 2;
i--;
for (i = 0 ; i < 2 * length ; i++)
System.out.print (c [i]);
// class to take input from the console
import java.io.*;
class input
static BufferedReader stndin;
static String line;
public static int getInt () // method reads integer values
int i=0;
stndin = new BufferedReader (new InputStreamReader (System.in));
System.out.flush ();
try
if ((line = stndin.readLine ()) != null)
i = Integer.valueOf (line).intValue ();
catch (Exception e)
System.out.println ("Error in the input");
return i; //returns the integer form the keyboard

1) please use the code tags
2) please ask a question3) Do also explain what your program is supposed to do, and how you think it works, and why/how it fails.
/Kaj

Similar Messages

  • Error using Arrays.toString()

    Hi there,
    I am getting the following error using Arrays.toString on a String Array. 'toString() in java.lang.Object cannot be applied to (java.lang.String[]).
    The line in question is at the bottom of the below code. It starts 'rtitem.appendText.....
    import lotus.domino.*;
    //import java.util.Arrays;
    public class JavaAgent extends AgentBase {
         Database curDb;
         String[] dbList;
         public void NotesMain() {
         int dbcount = 0;
              try {
                   Session session = getSession();
                   AgentContext agentContext = session.getAgentContext();
                   //get current database
                   Database curDb = agentContext.getCurrentDatabase();
                   //build a list of servers;
                   String[] servers = {"Norwich002/Norwich/MoneyCentre","Norwich003/MoneyCentre","Norwich004/MoneyCentre","Norwich005/MoneyCentre","Norwich007/Norwich/MoneyCentre","Norwich008/Norwich/MoneyCentre","Norwich010/Norwich/MoneyCentre","Norwich020/Norwich/MoneyCentre","Norwich021/Norwich/MoneyCentre"};
                   //loop through server list
                   int arraylen = servers.length;
                   for(int i=0;i <= arraylen;i++){
                        //create a notesdbdirectory collection for the current server iteration
                        DbDirectory dbdir = session.getDbDirectory(servers);
                        //get first database
                        Database db = dbdir.getFirstDatabase(DbDirectory.DATABASE);
                        //loop through databases in dbdir
                        while (db != null){
                             //add database details to our list
                             dbList[dbcount] = db.getTitle() + " - " + db.getFilePath();
                             dbcount++;     
              } catch(Exception e) {
                   e.printStackTrace();
              private boolean sendEmail(String subject){
                   try{
                        Document mailDoc = curDb.createDocument();
                        mailDoc.replaceItemValue("SendTo","Hayleigh S Mann/Norwich/MoneyCentre");
                        mailDoc.replaceItemValue("Subject",subject);
                        RichTextItem rtitem = mailDoc.createRichTextItem("Body");
                        rtitem.appendText(java.util.Arrays.toString(dbList));
                        mailDoc.send();
                        return true;
                   }catch(Exception e){
                        e.printStackTrace();
                        return false;

    No, that doesn't make any sense. Arrays.toString can take any array as an arg: [http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#toString(java.lang.Object[])]
    import java.util.*;
    public class A {
      public static void main(String[] args) {
        String str = Arrays.toString(args);
        System.out.println(str);
    :; java -cp . A abc 123 xxx
    [abc, 123, xxx]

  • Java.sql.SQLException: Internal error: Data array not allocated

    We got an error as follows: 'java.sql.SQLException: Internal error: Data array not allocated'. Does anyone know what does this error means? Thanks!

    Duplicate post:
    Re: ORA - 17044. Confused, please help
    Hippo,
    I have answered you in the other post.
    Good Luck,
    Avi.

  • Activation - Error:Cannot store binary and a few other NWDI questions.

    Hi all!
    I'm working on the Internet Sales Application (crm/b2b) in CRM 6.0. The work i do is an upgrade from CRM 4 to CRM 6, so I'm new to NWDI.
    I'm following the "ISA50DevExtGuideConcepts21.pdf" (since I haven't found a document for version 6), and have managed to add java extensions and librares successfully. I now work on the web-project and have started an activity to merge changes to stylesheets, and also added own mimes like stylesheets and images (.jpg, .gif). The files where added to the project folder (webContent in crm/isa/web/b2b) and then located and added to DTR through a refresh in NWDS. When I try to activate this activity I get the post-proccesing error in the request log below. This might have been caused by an image file renamed to .bak, although its recoginzed as an image in NWDS.
    Questions:
    1. Any idea what goes wrong? How should I solve this?
    2. Can I check out or remove the activity to correct the problem? How?
    3. I have a few Activities,already activated on the development server that I would like to get rid of. How do I do that?
    4. I have a few Activities that aren't properly named. Is it possible to change the name after activation?
    /Anders
    CBS Request Log
        ===== Processing =====  started at 2009-04-08 15:53:19.110 GMT
            BUILD DCs
                'sap.com/crm/isa/web/b2b' in variant 'default'
                        'war' PP has been changed. Dependent DCs will be re-built.
                    The build was SUCCESSFUL. Archives have been created.
        ===== Processing =====  finished at 2009-04-08 15:54:15.958 GMT and took 56 s 848 ms
        ===== Post-Processing =====
        Waiting for access: 10 ms
        ===== Post-Processing =====  started at 2009-04-08 15:54:15.968 GMT
            Check whether build was successful for all required variants...
                "sap.com/crm/isa/web/b2b" in variant "default"   OK
            STORE activation build results... started at 2009-04-08 15:54:15.972 GMT
                Update DC metadata... started at 2009-04-08 15:54:15.972 GMT
                    'sap.com/crm/isa/web/b2b' DC is CHANGED
                Update DC metadata... finished at 2009-04-08 15:54:16.276 GMT and took 304 ms
                STORE build results... started at 2009-04-08 15:54:16.276 GMT
                ===== Post-Processing =====  finished at 2009-04-08 15:54:17.849 GMT and took 1 s 881 ms
                Change request state from PROCESSING to FAILED
                Error! The following problem(s) occurred  during request processing:
                Error! The following error occurred during request processing:Database Error:Cannot store binary.
         Original Cause: DB2 SQL Error: SQLCODE=-968, SQLSTATE=57011, SQLERRMC=null, DRIVER=3.50.153
            REQUEST PROCESSING finished at 2009-04-08 15:54:17.855 GMT and took 1 m 6 s 42 ms

    I have done some more testing regarding the case with "Database Error:Cannot store binary."
    Unfortunately, the behaviour doesn't seem to be consitent or related to particular files. I had a successful activation with 79 of the files in one folder, but could'n add one single file in a new activity. When i removed one of the 79 files and added another file, one of those not possible to add before, it was successful.
    After this I tried to remove all 79 files again i one activity, and the add the original 79 files in another. The remove was successful while the adding was unsuccessful. All with the same error message in Request log.
    Does anybody have an idea of what is happening here? I don't have a clue.
    /Anders

  • Error Text in COGI  : Multiple assignment of a line ID.How to resolve this?

    Error Text in COGI  : Multiple assignment of a line ID.How to resolve this?

    Hi Sanchit
    first you should implement notes 1506789 and 1494393. If then the issue is not resolved you should open a message in SAP Service Marketplace and let the SAP Support check the issue.
    BR Sabine

  • Unable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Plea

    nable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Please!

    Hi skydivingsnowman,
    I'm sorry you're having such trouble using the ExportPDF service. What browser are you using?
    Please try clearing your browser cache, or using a different browser (here's a list of supported browsers:   http://www.adobe.com/acom/systemreqs/.
    Please let me know if that works.
    Best,
    Sara

  • Error message: One or multiple audio files changed in length!

    Hi
    I keep getting this error message:
    "One or multiple audio files changed in length!
    As a result one audio region changed in length or content position."
    But I can't really tell what effect it's having. Slightly worrying though. Any ideas?
    Thanks

    Hello.  No, I have not touched any of the files in the project package.  I don't even know how to access them.  Any ideas?  What triggers this?

  • Error Message: SWF contains multiple copies of a sound item

    When I test the movie I get this error. SWF contains multiple copies of a sound item
    This is the action code I am using:
    stop();
    var sndTrack:SoundTrack = new SoundTrack();
    var sndControl:SoundChannel;
    sndControl = sndTrack.play(0,999);
    on_btn.addEventListener(MouseEvent.CLICK, soundOn);
    off_btn.addEventListener(MouseEvent.CLICK, soundOff);
    function soundOn(event:MouseEvent):void
    sndControl = sndTrack.play(0,999);
    function soundOff(event:MouseEvent):void
    sndControl.stop();
    Everything I created before I added the code works fine. Everything after, doesn't work when published.
    Looking for any help!
    Thanks in advance.....

    This is the message that  up in the timeline area when I try to test the movie...
    SWF contains multiple copies of a sound item
    it does not publish the file.

  • HT1338 Error preparing Time Machine backup disc- size error usually not being multiples of 512, encryption

    Trying to encrypt Time Machine backup disc getting message  - Error preparing Time Machine backup disc- size error usually not being multiples of 512, encryption.

    I got the same problem.
    But I think it cannot be related to not being a multiple of 512.
    As when I devide the number of bytes 3.000.592.982.016 by 512 is equals 5860533168.
    3.000.592.982.016 / 512 = 5860533168.
    So what could be the real problem?
    With kind Regards

  • Error Base64-decoding binary attachment with ContentId: ''

    I am encountering this siebel soap response whenever I send an Insert request (Activity Result - CustomObject1Insert):
    <siebelf:error>
    <siebelf:errorcode>(SBL-EAI-04316)</siebelf:errorcode>
    <siebelf:errorsymbol/>
    <siebelf:errormsg>Error while processing argument urn:/crmondemand/xml/CustomObject1/Data:ListOfCustomObject1 for operation CustomObject1Insert(SBL-EAI-04316)</siebelf:errormsg>
    </siebelf:error>
    <siebelf:error>
    <siebelf:errorcode>(SBL-EAI-04120)</siebelf:errorcode>
    <siebelf:errorsymbol>IDS_EAI_ERR_INTOBJHIER_ATTACH_DECODE</siebelf:errorsymbol>
    <siebelf:errormsg>Error Base64-decoding binary attachment with ContentId: ''(SBL-EAI-04120)</siebelf:errormsg>
    </siebelf:error>
    With regard to session, the service returns a JSESSIONID as cookie together with this error message.
    Please feel free to provide any insight on this. Thank you.

    I also faced the same issue when I tried to attach file through soap UI.
    resolution: In my request there was one parameter <ins:ActivityFileBuffer>
    Which also be there for you so just encode your file using base 64 encoding and paste the content as below.
    <ins:ActivityFileBuffer>VGhpcyBpcyBhIHNhbXBsZSByZXF1ZXN0IHRvIGF0dGFjaCBhIGZpbGUgd2l0aCB0aGlzIGNvbnRl
    bnQu</ins:ActivityFileBuffer>
    By doing so my file got attached with the content I wanted in my file.
    Cheers,
    Saket

  • Parameter Formula Error: This array must be subscripted

    We are using Crystal XI.  I've tried searching the help files in Crystal and have tried to find similar posts in the forum.  This is the first time I've written a parameter formula that includes two different date field references.  Any help would be greatly appreciated.
    I am receiving the error "This array must be subscripted.  For example: Array <i>." in the following parameter formula:
    {TRACKING_FILE.f463#loan_status} <> "Z" and
    {TRACKING_FILE.REGION_ID} <> "CORRES" and
    {TRACKING_FILE.f415#approval_date} < {?Approval Date Less Than} and
    {TRACKING_FILE.f463#loan_status} in ["W","R"] and
    {TRACKING_FILE.f428#reject_withdrawn_date} > {?Rejected Withdrawn Date}

    I believe the curser was stopped right before the "Rejected Withdrawn Date" in the formula.  I've rewritten the entire formula as follows and I'm not receiving any errors. 
    {TRACKING_FILE.f415#approval_date} < {?Approval Date Less Than} and
    {TRACKING_FILE.f428#reject_withdrawn_date} > {?Rejected Withdrawn Date After } and
    {TRACKING_FILE.f426#disbursement_date} > {?Closed Date Greater Than }
    Thanks for your help.

  • Error: Non-array passed to JNI array operations

    Can anyone see what I am doing wrong? I am trying to go through the array of objects example in the online JNI text book "The Java Native Interface Programmer's Guide and Specification" by Sheng Liang. The book and pertinent chapter can be found here:
    http://java.sun.com/docs/books/jni/html/objtypes.html#27791
    The error I received on running the program with the -Xcheck:jni switch is this:
    FATAL ERROR in native method: Non-array passed to JNI array operations
         at petes.JNI.ObjectArrayTest.initInt2DArray(Native Method)
         at petes.JNI.ObjectArrayTest.main(ObjectArrayTest.java:14)Without the xcheck switch, I get a huge error log file that I can reproduce here if needed.
    My c code with #ifdef _Debug statements removed for readability is listed below.  The location of the error (I believe) is marked:
    #include <jni.h>
    #include <stdio.h>
    #include "petes_JNI_ObjectArrayTest.h"
    //#define _Debug
    // error found running the program with the -Xcheck:jni switch
    //page 38 and 39 of The Java Native Interface Guide by Sheng Liang
    JNIEXPORT jobjectArray JNICALL Java_petes_JNI_ObjectArrayTest_initInt2DArray
      (JNIEnv *env, jclass class, jint size)
         jobjectArray result;
         jint i;
         jclass intArrCls = (*env)->FindClass(env, "[I");
         if (intArrCls == NULL)
              return NULL;
         result = (*env)->NewObjectArray(env, size, intArrCls, NULL);
         if (result = NULL)
              return NULL; 
         for (i = 0; i < size; i++)
              jint tmp[256]; // make sure it is large enough
              jint j;
              jintArray iarr = (*env)->NewIntArray(env, size);
              if (iarr == NULL)
                   return NULL; 
              for (j = 0; j < size; j++)
                   tmp[j] = i + j;
              (*env)->SetIntArrayRegion(env, iarr, 0, size, tmp);
              (*env)->SetObjectArrayElement(env, result, i, iarr); // ***** ERROR:  Non-array passed to JNI array operations
              (*env)->DeleteLocalRef(env, iarr);
         return result;
    }Here is my java code
    package petes.JNI;
    public class ObjectArrayTest
        private static native int[][] initInt2DArray(int size);
        static
            System.loadLibrary("petes_JNI_ObjectArrayTest");
        public static void main(String[] args)
            int[][] i2arr = initInt2DArray(3);
            if (i2arr != null)
                for (int i = 0; i < i2arr.length; i++)
                    for (int j = 0; j < i2arr[0].length; j++)
                        System.out.println(" " + i2arr[i][j]);
                    System.out.println();
            else
                System.out.println("i2arr is null");
    }Thanks in advance!
    Pete

    Niceguy1: Thanks for the quick reply!
    So far, I mainly see the usual differences between C and C++ JNI calls. Also, in the example you gave, they use a lot of casts, but that doesn't seem to make much difference to my output. Also, in the example, they create a 0-initilized int array, and use this class to initialze the class type of the Object array. I get the class type by a call to FindClass for a class type of "[I".  I'll try this their way and see what happens...
    Edit:  Changing the way I find the array element Object type did not help.  I still get the same error as previous.  Any other ideas would be greatly appreciated.
    Message was edited by:
            petes1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Traceroute mac : Error: Mac found on multiple vlans

    That 6500 is our campus backbone. It routes between our vlans. It runs 12.2(18)SXF8. show catalyst6000 will list 000f.35ef.c400 as first mac address. I'm trying to L2 traceroute another mac address.
    Error is : Error: Mac found on multiple vlans.
    What mac address (of this 6500) should be specified as source to avoid this error message ?
    Thank you.

    The ethernet (MAC) addresses of other machines in the same layer two ethernet segment. but traffic for these hosts is
    broadcast to the local network, and as such I don?t think there would be any practical way to ascertain what layer two equipment was in between a pair of hosts other than by physically looking at it, or manually/automatically logging into equipment (say, via SNMP) in order to view MAC/CAM tables and port assignments.
    If you want to know more Please refer for complete syntax and usage information for the commands used in this chapter, refer to the Catalyst 6500 Series Switch Cisco IOS Command Reference, Release 12.2SX at this URL:
    :http://www.cisco.com/en/US/customer/products/hw/switches/ps708/products_command_reference_book09186a0080160cd0.html

  • Error in loading the multiple file loading

    hi,
    i am following this blog to load the multiple files into rdbms table.
    http://www.odigurus.com/2011/05/multiple-files-single-target-table.html
    the problem is that when i assign the source Flat file Datastore
    Model Resource Name #Project_Name.FILE_NAME
    But when i point the Single File in the  Resource Name:EMP.DMP. its working fine. loaded suceessfully.... But problem in Multiple loading???
    it gives me error
    SQL*Loader-500: Unable to open file (E:/File/#Project_Name.FILE_NAME)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: The system cannot find the file specified.
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    ********************Task Error Code In Loading**********************************************
    import java.lang.String
    import java.lang.Runtime as Runtime
    from jarray import array
    import java.io.File
    import os
    import re
    ctlfile = r"""E:/File/Med_CDR_File.ctl"""
    logfile = r"""E:/File/Med_CDR_File.log"""
    outfile = r"""E:/File/Med_CDR_File.out"""
    oracle_sid=''
    if len('')>0: oracle_sid = '@'+''
    loadcmd = r"""sqlldr 'test/<@=snpRef.getInfo("DEST_PASS") @>%s' control='%s' log='%s' > "%s" """ % (oracle_sid,ctlfile, logfile, outfile)
    rc = os.system(loadcmd)
    if rc <> 0 and rc <> 2:
         raise "Load Error", "See %s for details" % logfile
    # Init Vars
    nbIns = 0
    nbRej = 0
    nbNull = 0
    strprt = ""
    maxAllowedError = r"""0"""
    c = 0
    flag = 0
    # Open log file
    f = open(logfile, "r")
    try:
         lines = f.readlines()
         for line in lines:
              if line.rstrip().upper().endswith(r"""TEST.TC$_0MSC_SMS:""".upper()):
                   flag = 1
                   c = 0
              if flag == 1:
                   if c > 0 and c <= 4:
                        if c == 1 :
                             nbIns = int(re.findall("\d+", line)[0])
                        elif c == 2:
                             nbRej = int(re.findall("\d+", line)[0])
                        elif c == 4:
                             nbNull = int(re.findall("\d+", line)[0])
                             break
              c+=1
         strprt = "\n\tIns:\t%s\n\tReject:\t%s\n\tNullField:\t%s" % (nbIns, nbRej, nbNull)
    finally:
         f.close()
    # if some rows has been rejected due to invalide data, check KM option LOA_ERRORS
    if rc == 2:
         if nbRej > int(maxAllowedError):
              raise strprt
              break
    waiting
    Regards,
    Edited by: AMSI on Nov 10, 2012 1:40 AM

    Hi AMSI,
    Did you try to run only the interface? It might not work.
    Try executing your interface from within a package. A previous step should refresh / set the variable.
    Regards,
    Jerome Fr

  • Stale data error while opening a multiple OAF page .

    Dear Friends ,
    I have a OAF page developed and deployed in server , its basically a search page , it also has several links to
    go to create page and update page . when the user opens the multiple page using different tabs in the browser
    like for example
    ex :
    from search page click on create page open it as new tab . if such multiple table are being opened
    and do some operation like search a record , it gives and error (stale data : Developer's mode exception ) .
    How to over come this exception , could you please share you ideas
    Thanks in Advance,
    Keerthi.k

    Hi friend ,
    In Search page i didn't do any update. and also search page is not a problem it's working fine. create page only the problem. In this page only throwing Stale data error exception.
    Please give me more suggestion.
    Thanks in advance,

Maybe you are looking for

  • Error when creatibg a web service in  SAP r/3 ecc 5, WebAS 640

    We are trying to expose a BAPI  (BAPI_CUSTOMER_GETSALESAREAS) as a web service on SAP R/3 ECC 5. web AS 640.   We created the virtual interface (Z_VI_CUSTOMER_BAPI)and the web service definition (Z_WSD_CUSTOMER_BAPI)from SE80. When we try to release

  • Password Protected PDF Files in Elementary OS

    I have installed Acrobat 9.5.5 on my Elementary OS (Ubuntu base) system but when I try to open a password protected PDF file from my bank Acrobat fails with the error "There was an error opening this document. An updated version of Acrobat is needed

  • Payment Run in F110

    Hi Gurus, Is it possible to set a default GL account when we execute a payment run for the proposal that we made in t-code F110?  This will be for a specific company code and specific payment methods only. Thanks, Ellicec

  • How do I make a photo my desktop in iPhoto 9.2 Thanks

    Can anyone help with this - How to make a photo a desktop picture in iPhoto 9.2  Thanks

  • Not printing name2 in address line

    Hello All, I dont want to print the name2 in the shipper address. Is there any option in address window? If I change Number of Lines to be Used , then shall the name2 will not get printed? Or I need to take the text window and print there? rgds, Madh