2D Graphics (I can't print thin line, point, etc.)

I created a program that draw and print
a graph.
I have used 2D Graphics.
But I have some problem:
I can't print thin line, point, etc.
Thanks in advance
Gali
null

I created a program that draw and print
a graph.
I have used 2D Graphics.
But I have some problem:
I can't print thin line, point, etc.
Thanks in advance
Gali
null

Similar Messages

  • Print Apps won't print with C510a eStation. Prints thin line at top of page.

    My C510a eStation printer will not print using the Print Apps.  It just prints a thin line at top of page.  Everything works fine until I print.
    All other print functions work.  It prints from computer via WiFi.  It prints when I send an email to it.  It copies via the Zeen.  It just won't print using the Print Apps.
    Does anyone else have this problem?  What is the solution?
    12/23/2010 3:00PM.  I just got off the phone with an HP engineer.  She said that the eStation is still in the TESTING phase and to call to report problems so they can improve the product.  (I would have thought the product would have been fully tested before being released to the public!)
    She had me reset the Zeen display by holding down the volume keys while powering up.  This erased everything that had been done on the Zeen by me and resulted in no HOME screens, which will have to be set up by me.  The only app at the bottom of the blank home page was Yahoo!.  Even the printer app was missing.  I had to move it from the app tray to the home page.  Now, I have to spend hours, again, setting up the Zeen.
    After the reset, the printer apps seem to work now.  The Zeen will copy using the printer app.  My computer still seems able to print and scan to/from the eStation.
    The eStation C510a eStation printer and Zeen display are very exciting.  However, they are not for someone not willing to spend the time to get it to work properly.  If you have a cell phone, be prepared to use up a lot of minutes while on support.
    The HP engineer said that it will soon have a new release of Android operating on the Zeen which will allow it to be faster.
    This question was solved.
    View Solution.

    I have decided to return this printer to the store as it just has too many problems.  HP has essentially told me they will not issue updates to solve the problems.  I hate this, as I really loved the product.

  • How can I print multiple lines in my All Day Events (month view)?

    Does anyone know if there is anyway to print multiple lines for all day events? When I print my iCal from a monthly view, my all day events (positioned as a header) only print the words that can fit into the daily box, instead of going into multiple lines and displaying the whole text.
    For example:
    Los Angeles County Fair, Don't forget to pick up John and Jen
    will print as:
    Los Angeles County Fa......Jen
    Anyone have any idea how to solve this?
    P.S. I have already tried meddling with fonts and page sizes to no avail.

    Welcome to Apple Discussions!
    So far as I know, an allday event only ever shows a single line of text regardless of view.
    Consequently, how much you can see is governed by the width of the day (or days) in that view.

  • How do I get print n share to work after upgrade to iOS 5.  I can print from this app thru wifi.  But it can,t print mail, web pages, etc..

    How do I get print n share to work after upgrade to iOS 5.  I can print from the app thru wifi and PC. However am unable to print mail, web pages, etc..
    In mail when I try to print it just says can,t find air printers.  It used to say print with print  n share.

    I sent e-mail to developer regarding this and they said that basically Apple has denied them access to the Airprint dialog in the new source code for iOS 5.  So, the only way to print to pdf is to capture the e-mail or webpage in the internal apps within Print n Share.  INHO, this really *****.  Apple should make printing to pdf files just a standard feature of all their apps.  If they don't do this, they are going to lose alot of business to the Adroid world as pdf file format is the business standard for all documents.

  • Can't print emails or notes etc..

    Hi there
    For some reason my Canon IP4700 has decided to stop properly printing emails from my MBP (with latest mountain lion).
    The printer itself works ok...it prints test pages not problem. It also prints PDFs without a hitch, and photos. However when I try and print an email (or note) it prints the header info and then absolutely nothing else.
    I've cleaned the printer head, checked the ink tanks and downloaded the latest driver. Still no joy...
    Can anyone help?!
    thanks
    Steve

    You have the latest driver:
    http://support.apple.com/kb/DL899?viewlocale=en_US&locale=en_US

  • How to print header lines at the top of every page with Alv list display?

    Dear all,
    I need a requirement with printing issue. A program list should be printed with the function reuse_alv_list_display.
    The list has several pages and then can be printed but the header lines appear only first page when they printed. The other pages don't have header lines, they continue with the next record of the list remaining from previous page. I use the alv parameters as below:
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
          i_callback_pf_status_set = 'ALV_PF_STATUS'
          is_layout                = ls_layo
          it_fieldcat              = lt_fcat
          i_default                = 'X'
          i_save                   = 'A'
          is_variant               = ls_variant
          it_events                = lt_events
        TABLES
          t_outtab                 = lt_data
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    and lt_events as below:
      ls_event-name = 'END_OF_LIST'.
      ls_event-form = 'ALV_END_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'END_OF_PAGE'.
      ls_event-form = 'ALV_END_OF_PAGE'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_LIST'.
      ls_event-form = 'ALV_TOP_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_PAGE'.
      ls_event-form = 'ALV_TOP_OF_PAGE'.
      APPEND ls_event TO lt_events.
    So, how can I print header lines for every page?
    Best Regards,

    Hello Saba,
    Your point might be very close to solution.
    Because in the selection screen of the program there are two radio buttons, one of them visits 'REUSE_ALV_COMMENTARY_WRITE' function and the other doesn't. The one which visits has a problem with header liens in every page when printing. But I couldn't find out the solution yet.
    reuse_alv_list_display uses 4 event and of course I call subroutine. There are end_of_list, end_of_page, top_of_list and top_of_page. I use in the subroutine for top_of_page:
      CALL FUNCTION 'LVC_TRANSFER_TO_SLIS'
        EXPORTING
          it_fieldcat_lvc         = gt_fcat
        IMPORTING
          et_fieldcat_alv         = lt_fcat
        EXCEPTIONS
          it_data_missing         = 1
          it_fieldcat_lvc_missing = 2
          OTHERS                  = 3.
      CALL FUNCTION 'REUSE_ALV_LIST_WIDTH_GET'
        EXPORTING
          it_fieldcat = lt_fcat
        IMPORTING
          e_width     = l_width.
    WRITE l_reptx TO l_reptx CENTERED.
      NEW-LINE.
      WRITE: AT (l_width) l_reptx CENTERED.
      SUBTRACT 10 FROM l_width.
      WRITE: AT l_width sy-pagno RIGHT-JUSTIFIED.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary       = lt_header
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    Do you have other suggestions ?

  • Gradient to transparent have thin line when stroke is 0 pt

    I have a simple rectangle with a gradient that fades to white and has an effect of multiply and opacity set to 85%. Where it fades to white the background image meets the gradient so in effect the rectangle color fades to transparent.
    However, even as I have no stroke, 0pt, and 0 opacity on stroke in the effects box there is still a thin line around the box, no matter what I do I can't seem to affect it.
    My text is in a separate text frame in a layer on top of this gradient rectangle. This gives me solid color on the text.
    How can I get rid of this line around the rectangle? What can give a thin line besides stroke?

    No, "Stitching" was not it. Exporting to later pdf-versions didn't help.
    When I revisited this problem as I resized the affected text box and the problem reappeared, I decided to cut out the text and delete the old box. Then I made a new empty text box and pasted the text into that. Problem gone!
    I still don't know what the problem was as I could find no stroke nor any effects related to this box. I'm going to open the original file later and delete everything but the affected box just to see if there is some setting somewhere not so obvious.

  • How can I print a document on my iphone to a printer if I do not have an air printer?

    How can I print a document/photo etc that is one my iphone to a printer which I use with my Windows computers?  My printer is a Lexmark X4550 Wi Fi

    Sorry based on this link IOS: air print 101 http://support.apple.com/kb/ht4356  your printer is not compatible.
    You can take email yourself the photos and then print it out that way.

  • I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.

    I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.  I've tried several USB connectors, and several different ports on my USB hub; same result.  I need to have the HP connected to the hub 'cause from there it's connected to our desktop Mac.

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I print the "number lines" with the code in Visual Studio?

    How can I print the "number lines" with the code in Visual Studio?

    Hi BillionaireMan,
    What about your issue now?
    If you have resolved it, you can share the solution here, which will be beneficial for other members with the same issue.
    If you did not, please tell us more information,we will try my best to help you.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PO will not print if line items are trash-canned

    Hello, 
    We have an instance where we had to cancel both line items on a PO. However, the system will not allow a printout, since there are no line items.  How can we get a printout to send to the vendor to confirm that both line items are cancelled?  Config looks right.  Deletion is a change relevant field, but the system displays a message when trying to print 'no print relevant information changed'. 
    Please advise.
    Thank you.

    Yes. We get change messages when qty or delivery date is changed, but for some reason, when you delete all line items, it doesn't generate any change. The checkbox is not checked therefore we can't print. If only 1 item is deleted, then it's OK, but if you delete all items, no printout.

  • How can I make a brush that starts and ends in a thin line?

    I am looking to make a brush that I can use for cartooning in CS6 that starts out thin, gets thicker with pressure (I have a cintiq), and ends in a thin line. Does anyone have the expertise to make one?
    Thank you.

    I watched the first half of the tutorial from your link and some parts of the rest. It is a good tutorial. He is using an art brush which profile was created from an elliptical shape with sharp corners which gives that ink kind of appearance which is good for this kind of style. Most of the time though I prefer the appearance of the rounded ends of the calligraphic brushes. Also one advantage of the calligraphic brushes is that it can change its size or the size of the selected strokes with the [ and ] keys on the keyboard while with the art brushes this is done by changing the stroke weight which also can change the weight of calligraphic brushes in addition to the [ and ] keys.
    Like in the tutorial I often use a similar workflow ending up with the brush strokes converted to filled paths but I simply use expand appearance then remove the unwanted parts with the Eraser brush which can be made pressure sensitive in the options that you get when double clicking the Eraser tool. This is less precise than the technique the guy is using in the video tutorial but it is quick, I like  the hand touch appearance of the imperfections, and it also allows me to paint the white (transparent) highlights like for example the highlights on the booths of my cowboy. The Blob brush is the tool above the Eraser in the Tool panel and works basically the same like the Eraser but it adds to the fill of a path and it also has these and more options when you double click it. I use it most of the time in a combination with the Eraser to add or remove final details of illustrations started initially with brush strokes and then expanded. And like in the video tutorial I also like to keep a copy with the stage before expanding the brush strokes in case I need some changes on brush stroke level.
    I also use a different technique for adding new color fills on the illustrations instead of cutting paths with the knife. I don't like the knife because I often do not like the first cut which I may realize later when undo is not the best workflow. What I do is copy paste in front the path and use the pencil tool set to edit the selected paths and change the shape of the selected path similar to using the knife but the pencil has to start and end on the path. The advantage of this for me is that the new fill with the different color is overlapping the original fill behind and when later I decide to change its shape I don't get gaps between the two colors which is what will happen if the knife was used.

  • Can't get rid of Thin line at bottom of images

      <a href="about.html"><img src="images/HOMEPAGE/homepage_title.png" alt="Get Started" class="columns" title="Get Started"/></a><br>
      <br>
    Hi, I can't figure out why my homepage images have a thin line at the bottom of the image. The image itself is not causing this but it must have something to do with the image tag or the CSS but I can't seem to get rid of it and it's driving me crazy. If anyone knows what may be causing this I would really appreciate it. Thanks.

    adninjastrator wrote:
    Looks like ALL your links, including images, have the text-decoration underline and since 3 or the 4 images are links, they are also underlined. Add
    text-decoration: none;
    to all your achors (a.):
    http://www.quackit.com/css/css_hyperlinks.cfm
    Best wishes,
    Adninjastrator
    Adninjastrator, thanks for the link. I looked it over and if I have an image as a link, I don't want there to be a visible link so according to the link here. http://www.quackit.com/css/css_hyperlinks.cfm
    I should need to add this code if I don't want a visible link.
    a:link { text-decoration: none }
    Can you please tell me "where" I would add the above code. The site has 11 styles. What I 've been doing is selecting the image and then looking at the style associated with it and the image seems too use the "clearfix.css" style.. Can you lease tell me if this is correct and where I would add the code to the clearfix style? Thanks.
    Here is the code for the "Clearfix" style.
    .clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    html[xmlns] .clearfix {
    display: block;
    * html .clearfix {
    height: 1%;
    Put this code at the end of your styles (remove the previous one so that it does not interfere with this one) and then post back.
    Good luck.
    img {
        display: block;
    Jtanna and Murray, thanks for the reply.
    Would I still need that code or would it be better to edit the current code than to just keep adding code? Just curious. Can I not edit the code's text decoration to fix or is your solution better. If you solution is better then would I just add your code to the bottom of the CSS style above? Thanks. 

  • Why can I not print from pages but can if I copy to text edit, I get "printer off line message " from pages ?

    Why can I not print from pages but can if I copy to text edit, I get "printer off line message " from pages ?  I use HP wireless printer .

    Are you sure you have the right printer?
    In UNIX/OSX printers are virtual links to devices and even with the same name can be trying to reach a printer via another network address, so it thinks it is another printer.
    Peter

  • Can i print a file using thunderbird with command line switch

    Trying to automate printing task. I have a folder with 1000's and 1000's of eml files that need to be printed using thunderbird.
    I am able to get the command line switch to open the file in thunderbird.
    But what i really want is to print these files directly using thunderbird without opening the file in GUI.
    Thanks
    Dennison

    ส่งจาก จดหมายของ Windows
    จาก: Pat Willener
    ส่งเมื่อ: จ. 5 มกราคม 2558 6:15
    ถึง: thang dinhvan
    How can I print a file with mixed page orientation in windows 8.1?
    reply from Pat Willener in Adobe Reader Touch for Windows 8 - View the full discussion 
    I have a win 7 and a win 8.1 computer.  I have a file which contains both landscape and portrait pages.  The file prints correctly with the mixed orientation from the win 7 pc, but will only print with either landscape or portrait on the win 8.1 pc. 
    I am using Adobe reader XI on the win 7 pc and adobe touch on the win 8.1 pc
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7064031#7064031 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7064031#7064031
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Reader Touch for Windows 8 by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

Maybe you are looking for