Binary image to color jpeg

I am manipulating (B/W) ICCD images with Vision.  Unfortunately, I have to cut the images down to I8, but that is not the issue.  My question is this-  Labview allows me to visualize the I8 data with a "rainbow" color map.  I would like to get it to automatically create a color JPEG file (or other image file type) that I can open in powerpoint.  I am aware of the IMAQ write file2.vi, but that only writes a grayscale file.  How do I go about interpreting the I8 values to color data?  Sorry, I am a newbie to image manipulation.  J

Use something like this.  Fill in the array constant with the colors that you want.
Attachments:
Raw_data_to_Jpg.vi ‏14 KB

Similar Messages

  • Retain color to foreground in binary image

    hi
    i need some help in the java.
    I have binary image whose foreground is white nad background is black by the following code
    BufferedImage image = ImageIO.read(new File("f:/123.JPG"));
    BufferedImage bwImage = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_BYTE_GRAY);
    BufferedImage fgImage = //foreground image
    new BufferedImage(bwImage.getWidth(),bwImage.getHeight(),
    BufferedImage.TYPE_BINARY_IMAGE);
    now i want to retain color to the foreground only..
    can anyone help me..pleaseeeeeee

    Here is my idea to display the pic on the webpage:
    The pic is stored in DB as binary, after retrieving it, the binary data will be converted to JPEG pic. Then, the pic will be saved to the local machine automaticly. After that, I get the pic's SRC, and use html display it.
    My code is as follow (not completed), some errors in it.     public static String getPayoffSRC(Services serv, long fileId)
                                                                    throws FileNotFoundException,
                                                                  DBException,
                                                                  DbFileNotFoundException,
                                                              IOException {
            BufferedImage buffy = new BufferedImage(300, 400,
                                                        java.awt.image.BufferedImage.TYPE_INT_RGB);   
            FileOutputStream out = new FileOutputStream(serv.getFileManager().getFileDb(fileId).getFileName());
            JPEGImageEncoder jencoder = JPEGCodec.createJPEGEncoder(out);
            JPEGEncodeParam enParam = jencoder.getDefaultJPEGEncodeParam(buffy);
            enParam.setQuality(1.0F, true);
            jencoder.setJPEGEncodeParam(enParam);
            jencoder.encode(buffy);
            out.close();
            return Pic's SRC,
        }

  • Converting a binary string into a JPEG image in Crystal Reports 2008

    Hi Gang
    Iu2019m having problems converting a binary string into an image in Crystal Reports 2008
    I have JPEG images stored in ECC.  ECC stores the data in binary format.
    Iu2019m using the ECC function module SKWF_PHIO_CONTENT_ACCESS_GET to retrieve the data.  This function module has an export table, FILE_CONTENT_BINARY, which returns several lines of data.  Each line contains a maximum of 1,024 characters.
    When I drop the T_ FILE_CONTENT_BINARY.LINE field into my Crystal Report detail section, I wind up with a report that displays all the lines in FILE_CONTENT_BINARY table.  (in my case, 19 lines are displayed.)
    I created a formula to collect all the data into a single string.
    whileprintingrecords;
    stringvar data:= data & {SKWF_PHIO_CONTENT_ACCESS_GET.T_FILE_CONTENT_BINARY.LINE}
    I added the formula to the detail section and itu2019s doing a great job collecting the data.
    I then inserted a picture object in the report footer, opened the format editor, navigated to the u201Cpictureu201D tab, and inserted a formula for the u201Cgraphics locationu201D.
    whileprintingrecords;
    stringvar data:=data;
    data
    My clever idea turned out to be a disappointment . . . . my picture object is blank.
    Does anyone have a solution for converting a binary string into a JPEG image?

    Save the JPEG in a format CR supports. Refer to the help file for the file types.

  • How to export binary images

    I am a neuroscientist developing a brain atlas and am using illustrator to produce the images needed.
    Basically I need to open up an .ai file that contains the brain image. I need to fill that with black, remove parts of it
    (haven't figured out how to do that yet) and export it at a specific location within the canvas and make the canvas a specific size.
    I need to export that as a .jpeg or .gif with only 2 colors. I then need to repeat this process 700 times.
    Is there a way to remove a part of an image quickly?
    Is there any way to export with only 2 colors? (binary image)
    Any ideas would be greatly appriciated.

    1- The images are in vector format
    2- I am using version 14 but will be using version 15 when my lab gets it.
    3- I don't have photoshop, though I have used it and fireworks a long time ago
    4-
    http://books.google.ca/books?id=0prYfdDbh58C&printsec=frontcover&dq=paxinos+watson&source= bl&ots=-5jsGV_LAk&sig=fV18n7RLuPTgv9Y7rpHJ93cyi2I&hl=en&ei=ttcGTIrvCoW0lQeh0Yi-Cg&sa=X&oi= book_result&ct=result&resnum=4&ved=0CCkQ6AEwAw#v=onepage&q&f=false
    or try brainmaps.org
    A brain atlas is an atlas of the brain. In my case a rat brain. Not much different than an atlas you would be familiar with. It contains images and coordinates showing where areas and structures are. Since the brain is 3D a brain atlas is also in 3D. It is usually organized by having slices (think loaf of bread) placed one after another on separate pages of a book. We get the pictures in the atlas by staining the brain with chemicals that make it change colors. Then we cut it into sections on a braincutting machine and put it on a microscope slide to take a picture.
    In our lab we use electrodes to listen in on what brain cells are doing. This brain atlas will allow us to show where our electrode tips were in the brain and what areas we were targeting. It is mainly for presentations and teaching.
    I will be using illustrator to produce binary images of the essential stuff in exactly the right places. Once I have those I have some computer code that will stack those images together to make a 3D brain.
    My biggest problem is exporting with only 2 colors in the entire image. I should be able to use my programming knowledge to take care of everything else.
    I have never used any graphic vector software before so any help I can get is greatly appreciated.

  • How to display a binary image in a webpage?

    Hi,
    I want to display a binary image in a webage. The image has been stored in a DB as binary format. I am using servlet. How could I retrieve it and display it on a webpage? Could you give me some suggestions?
    I have read some metrial about JAI, the method 'createImageEncoder( )', which seems very helpful! I am on the right way, right? Thanks for your any comments!
    Best Regards,
    Hai

    Here is my idea to display the pic on the webpage:
    The pic is stored in DB as binary, after retrieving it, the binary data will be converted to JPEG pic. Then, the pic will be saved to the local machine automaticly. After that, I get the pic's SRC, and use html display it.
    My code is as follow (not completed), some errors in it.     public static String getPayoffSRC(Services serv, long fileId)
                                                                    throws FileNotFoundException,
                                                                  DBException,
                                                                  DbFileNotFoundException,
                                                              IOException {
            BufferedImage buffy = new BufferedImage(300, 400,
                                                        java.awt.image.BufferedImage.TYPE_INT_RGB);   
            FileOutputStream out = new FileOutputStream(serv.getFileManager().getFileDb(fileId).getFileName());
            JPEGImageEncoder jencoder = JPEGCodec.createJPEGEncoder(out);
            JPEGEncodeParam enParam = jencoder.getDefaultJPEGEncodeParam(buffy);
            enParam.setQuality(1.0F, true);
            jencoder.setJPEGEncodeParam(enParam);
            jencoder.encode(buffy);
            out.close();
            return Pic's SRC,
        }

  • Binary image

    I want to convert a image to a binary image(only black& white)
    I use this code to convert a color image to a grayscale image:
    public static BufferedImage applyGrayscaleFilter(BufferedImage aImage)
    BufferedImage tmpBufImage = aImage;
    try
    for (int i = 0; i < aImage.getWidth(); i++) {
    for (int j = 0; j < aImage.getHeight(); j++) {
    Color c = new Color(aImage.getRGB(i, j));
    int r = c.getRed();
    int g = c.getGreen();
    int b = c.getBlue();
    //formula for grayscale
    int gray = (int) (0.2989 * r + 0.5870 * g + 0.1140 * b);
    c = new Color(gray, gray, gray);
    tmpBufImage.setRGB(i, j, c.getRGB());
    catch(Exception ex)
    return null;
    return tmpBufImage;
    I need help for convertin this image(grayscale) to binary image (b&w - only 1 and 0).

    No need to do it yourself, BufferedImage will do it for you:
    Image oldImage= ...;
    BufferedImage newImage=new BufferedImage(oldImage.getWidth(null),
        oldImage.getHeight(null), BufferedImage.TYPE_BYTE_BINARY);
    newImage.getGraphics().drawImage(image, 0, 0, null);

  • Canon RAW images displaying color borders at contrast edges

    I noticed annoying color borders in RAW images taken from my Canon PowerShot S120. They look like the color planes are misaligned. Around high contrast areas (between light and dark grey) I can notice magenta borders in one direction and cyan borders in the opposite direction, both approximately 5 pixels wide.
    I record and store images as RAW+JPEG pairs. In Aperture I set RAW as master.
    In the original JPEG of the image pair from the camera this error is absent, the color is neutral on both contrast edges.
    The error in the RAW image can also be seen when the file is opened directly in Preview or if the RAW image is exported to a TIFF using Aperture and then opened with Preview.
    I compared this to older RAW+JPEG image pairs I took with the previous model, a Canon PowerShot S90. There I see yellow and blue borders in opposite directions in Aperture or Preview, also approximately 5 pixels wide. In the camera's original JPEG image from the image pair this is still a bit visible, but far less pronounced.
    My oldest RAW images taken with a Nikon E8800 (.NEF) don't show such artifacts when viewed in Aperture.
    Since the JPEG from the pair does not have these artefacts my guess is that the RAW converter is not optimal or some metadata in the Canon RAW files (.CR2) is either missing (worst case) or not used correctly.
    My hope is that I just have to adjust some presets to correct this. Else it is probably up to Canon or Apple.
    Does anyone know how to fix this issue (without going through the individual files, if possible)?

    Hi Keith
    Thanks for the infos.
    Just to clarify:
    I didn't ask for RAW, I just use raw formats because there's curretly no better alternative. I would like to see what came into the lens - like an ideal hole camera . Ordinary JPEG is way too limited (8bit resolution per color channel plus really ugly compression artefacts).
    For archiving I would much prefer the JPEG2000 format with lossless encoding and as many bits per pixel as the camera's analog to digital converters provide, linearly encoded (above the noise background but including one bit of noise, to be precise). But, alas, when I did my last experiments (Snow Leopard) the image framework in Mac OS X did still not support more than 8bit resolution per color channel in JPEG2000.
    One good thing about raw formats is that the corrections could actually be better than what is always done by the camera's firmware for JPEG or standard TIFF at the time of the shot. Another good thing is that various sensor and color patterns can be handled directly.
    If Canon can do it in DPP, then I strongly hope they will also provide a better converter for Mac OS X. On some pictures this aberrations are really obvious and irritating.

  • CSE3 - Making images in color for print

    I am only used to one color printing. I'm using CSE3 and I'm supplying something in 2 colors. When the printers output, they will use certain color inks, and they told me I could use any 2 colors in my file.
    1) How to I make the image a color? I have a .tif and I'm trying to colorize it, and ... nothing. The image is greyscale. I seem to only be able to colorize the border, not the image itself (which is just a black image).
    2) Can I make an inserted pdf file a color?
    The only thing I can seem to make a 2nd color is text.
    Thank you.
    Cyndy

    PDF files  are a "container format" -- they can contain a lot of different kinds of image data, and the challenge is extracting the data without damaging it. That is, extracting the data without lowering the quality.
    PDF files can contain TIFFs. They can contain JPEGs. They can contain CCITT fax images. They can contain straight-up 1bpp bitmaps. And of course they can contain text and lines and all sorts of vector art.
    If the PDF file is vector, ideally you use a vector tool to set its color. That would be Adobe Illustrator, most likely.
    If the PDF file contains a raster image, you will want to extract the raster image without lowering its quality, potentially manipulate it in Photoshop, and then place it in InDesign.
    In Acrobat Pro, Save As is not a good choice. That will save the entire PDF file, not just images, and it will rasterize any vector components. It will also change the resolution, which can potentially lose information, and often just give you a bigger file with the same effective resolution.
    Best choice in Acrobat Pro is to go to Tools > Advanced Editing > Touchup Object Tool, then right-click and Edit Image. That'll open it in Photoshop. Then you can proceed to save it.
    In order to tint an image in InDesign, you'll need to have a monochrome (photoshop: Image > Mode > Bitmap) or grayscale image saved in PSD, TIFF, BMP, or JPEG.
    In short: tell us what produced the PDF file and what kind of file it is.

  • Extract foreground from binary image

    hi
    i need help in java programming in java.
    i have a binary image
    by the code
    BufferedImage image = ImageIO.read(new File("f:/123.JPG"));
    BufferedImage bwImage = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_BYTE_GRAY);
    //bwImage.createGraphics().drawImage(image, 0, 0, null);
    BufferedImage bwImage1 = new BufferedImage(bwImage.getWidth(), bwImage.getHeight(), BufferedImage.TYPE_BYTE_BINARY);
    //bwImage1.createGraphics().drawImage(image, 0, 0, null);
    i need only foreground in color..can u give me the code for that..its urgent..

    If you want any color whatsoever, then you need to use a BufferedImage type that supports color. BufferedImage.TYPE_BYTE_BINARY wont do. In the example below I use BufferedImage.TYPE_INT_RGB. The foreground remains in color, while everthing else turns white.
    BufferedImage image = ImageIO.read(...);
            BufferedImage fgImage =                     //foreground image
                    new BufferedImage(image.getWidth(),image.getHeight(),
                    BufferedImage.TYPE_INT_RGB);
            for(int x = 0; x < fgImage.getWidth(); x++) {
                for(int y = 0; y < fgImage.getHeight(); y++) {
                    int rgbSrc = image.getRGB(x, y);
                    if(rgbSrc == rgbForeground) {
                        fgImage.setRGB(x,y,rgbForeground); //remain in color
                    }else{
                        fgImage.setRGB(x,y,-1);  //set white
            }Or are you looking for more of a Sin City effect where one thing remains in color and everything else is in grayscale?
    BufferedImage image = ImageIO.read(...);
            BufferedImage fgImage =                     //foreground image
                    new BufferedImage(image.getWidth(),image.getHeight(),
                    BufferedImage.TYPE_INT_RGB);
            for(int x = 0; x < fgImage.getWidth(); x++) {
                for(int y = 0; y < fgImage.getHeight(); y++) {
                    int rgbSrc = image.getRGB(x, y);
                    if(rgbSrc == rgbForeground) {
                        fgImage.setRGB(x,y,rgbForeground); //remain in color
                    }else{
                        int r = (rgbSrc>>16)&0xff;
                        int g = (rgbSrc>> 8)&0xff;
                        int b = (rgbSrc    )&0xff;
                        int lum = (int) (.299 * r + .587 * g + .144 * b);
                        //set to grayscale
                        fgImage.setRGB(x,y,(255<<24)|(lum<<16)|(lum<<8)|lum);
            }

  • How do I change an image border color to another color - Dreamweaver CS5?

    Good day,
    I have just learned how to add a border to an image with Dreamweaver CS5 within the Properties Inspector.
    After typing the width in pixels in the Border Text Field and pressing the Enter key, Dreamweaver created a black border.
    How do I change the image border color to another color?

    I added your suggested rule to the Style Sheet "in any order" as you explained. See the image below.
    However this did not change the image border from black to light blue. In fact, nothing changed.
    Nothing changed because the CSS that has been written into DW is incorrectly written.
    You want the following (exactly as written below)
    img {border: 4px solid #0062C8;}
    You've inadvertently wrapped the rule inside a #main_image container rendering it meaningless.
    It's easiest to go into Code View and change
    #main_image {
         img {border: 4px solid #0062C8;
    to
    img { border: 4px solid #0062C8; }
    The Property Inspector added a border exactly as I wanted it, other than the color I wanted the border to be. What is the use of this function in Property Inspector if it can add a border within Property Inspector but not let me change the COLOR of the black border that Property Inspector added, to another color?
    That's a deceptively simple, yet valid, question with a long answer.
    Back in the dark old days of web design web designers were restricted to inline HTML formatting which offered  border properties but no colors.
    CSS styling offers colors and more but has to be written differently.
    These days. it's best to avoid HTML formatting. Unfortunately border="4px" in the PI still allows it. But does not permit color.
    Does anyone else out there ever add color borders to their IMAGES (not the containing box for the image) ?
    Yes, using CSS.

  • When I upload photos from my Canon Rebel 1000D to iphoto the images are labelled JPEG, yet I shoot in RAW.How do I get iphoto 11 vers9.1.3 to not convert the photos to jpeg.

    HI,
    When I upload photos from my Canon Rebel 1000D to iphoto the images are labelled JPEG, yet I shoot in RAW.How do I get iphoto 11 vers9.1.3 to not convert the photos to jpeg. I seem to have tried and read so much but just can't figure it out.  How do I get iphoto 11 vers9.1.3 to not convert the photos to jpeg. Or do a have to use a different system? I have Adobe Bridge. Or can I upload directly into photoshop?
    Also how do you install dmg's properly I am having problems installing them?
    I have a Mac OS X 13 inch Version 10.6.7
    Advice desperately needed
    Thanks
    Nlouis

    Do you have Aperture installed? I found your model on a compatibility list; however, there was a note that it requires Aperture 2 to be installed:
    http://www.apple.com/aperture/specs/raw.html
    According to this excerpt:
    To see a list of digital cameras with RAW-format support that are compatible with iPhoto, visit this Aperture webpage (any camera compatible with Aperture, Apple’s advanced photo editing and management program, is compatible with iPhoto as well)
    which is at the bottom of this page:
    http://docs.info.apple.com/article.html?path=iPhoto/9.0/en/pht41627265.html
    I may be wrong, but I interpret that info to mean you need Aperture 2 before iPhoto will work with RAW?

  • Why is it so difficult to convert a Raw image to a jpeg in Photoshop Elements?!  I have version 12. Once i realised to change the tickbox in Camera Raw to 8 instead of 16 i did. Having spent time working on my Raw images i save them as a jpeg and rename t

    Why is it so difficult to convert a Raw image to a jpeg in Photoshop Elements ?! I have version 12. Once i realized to change the tick box in Camera Raw to 8 bit instead of 16 bit and Flatten image ( sometimes can flatten image if the flatten option isn't greyed out) hey presto i thought i was up and running. However after saving the photograph as a jpeg and renaming it e, after the word edit. I switched off/on my computer only for all the images i had spent time working on to have disappeared. Feeling very upset as there is no Technical Help to telephone at adobe and i don't know what to do.

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • PDF binary image display on smartforms?

    Hi guys,
    I'm very new to this but i hope i can explain it correctly.
    Lets say right now l have some pdf stored in SAP(Service Contract for example) and we're reading them as binary image files right?
    Is it possible to retrieve such binary image and display them in an existing smartform?
    I hope i'm explaining the right way...this has something to do with DMS ??
    Below are some codes to further help in my questions.
    ALL FUNCTION 'SCMS_UPLOAD'
        EXPORTING
          filename       =  '/usr/sap/XXXX/XXXXXX/test.pdf'
          binary         = 'X'
          frontend       = ' '
    *   MIMETYPE       =
        IMPORTING
          filesize       = size
        TABLES
          data           = file_data
    * EXCEPTIONS
    *   ERROR          = 1
    *   OTHERS         = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA: BEGIN OF content_bin OCCURS 1,
              line TYPE SDOK_SDATX,
            END   OF content_bin.
      DATA: BEGIN OF content_txt OCCURS 1,
              line TYPE sdokcntasc,
            END   OF content_txt.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
          mandt                       = sy-mandt
          stor_cat                    = ' '
          crep_id                     = crep_id
          doc_id                      = doc_id
        TABLES
    *   ACCESS_INFO                 =
          content_txt                 = content_txt
          content_bin                 = content_bin
    * EXCEPTIONS
    *   BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    *   COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    *   INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    *   ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    *   ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

    Anyone? Please its kinda urgent.
    Basically, If I understand correctly, what I have now is are converted binary data from the PDF document?
    Is there a way to take these data and displaying it meaningfully(may be through some other processes like conversion again) in a smartform? Is this possible?

  • Image sequence of jpegs import into Premiere Pro CC 2014 out of sync!

    Ever since I left CS6 to CC 2014, image sequences as jpeg files do not properly import into Premiere in sync anymore.  I use Blender 3d to export render scenes as jpegs then convert them to h.264 mpeg4 video clips in Premiere.  What happens is that the images upload into Premiere's project tab out of order, even though they are correctly ordered in my hard drive.  Improper naming conventions are probably ruled out since their files extensions are _000 types, and I never had a problem importing sequences in CS6 anyways.  Still image default duration is set to 1 in the general preferences.  Does anyone know what is suggest?  Thanks.

    Good point, I am importing as separate jpegs each set to one frame, so it's not an image sequence as I thought.
    My indeterminate media timebase and sequence are the same (29.97fps), though I have to say that even if they were different I don't see why that would be a problem.
    Here is a screen shot of my images just after uploading them into the project tab, it is seen from first to last that file numbers appear out of order such as 066, 054, 072, 058...ect:
    Is there anything else I could try?

  • Can we load generic binary image in Oracle spatial database

    hi i am new to this topic. so kindly help me out.
    can we store generic binary image in Oracle 10g spatial database?
    generic i mean there is no header information.

    hi everybody,
    thanks in advance. i am in little bit confusion. actually i am new to oracle 10g spatial db concept and image processing. i have to decide whether to store DEM & ORTHO image in Oracle 10g spatial database. or using BLOB to store these images. i have to design physical as well as logical database to store both above mentioned images.
    i don't have much knowledge about DEM & ORTHO image.
    i don't know what to do. even though i have started some of the Oracle 10g spatial concepts. i would like to know can i also use oracle intermedia for storing these images (ORTHO & DEM images).
    looking for help
    thanks
    Ajay

Maybe you are looking for

  • ADF:How to use NavigationHandler in Phase-Listener with adfc-config.xml

    Hi, in our application a user should be navigated to the login-page, when he tries to navigate directly to a page where he has no right for or if the session is expired. Our navigation is complete in the adfc-config.xml. So I created a phase-listener

  • Firefox sync on F4B10 stopped working after first sync of Firefox mobile B3

    I run Firefox 4 beta 10 on a Mac OS X 64-bit system and Windows XP 32-bit. I installed Firefox 4 mobile beta 3 on my Nexus S and did my first sync. Since then I have received "Unknown error" from Sync 1.6.1 on both desktop systems, and bookmark sync

  • My site can be viewed in IE, but not Firefox. WHY!?

    I'm using Dreamweaver to develope my site. I've used the 'Check Compatibility' option to see if it is compatible with the different browsers out there. No errors returned. When I go to view it in Firefox, all that shows up is the code. What could be

  • Return date of Security Deposit blank on move out bill

    Dear All, When a move out is done on a contract account, if no final bill is issued, the security deposit is released and the return date of the security deposit is filled with the move out date. Else if a final invoice is issued, the the security de

  • NetBeans - Creating TreeNodes in design view

    Not 100% sure if this is the right spot... I've always enjoyed netbeans for creating Java applications not only for it's syntax highlighting, and auto-completion, but for it's design view. It's a lovely area where you can design the GUI instead of co