Line and shape controls

Where can I can the line and shape tools that are missing from my list of controls. Using Google and Microsoft site, I see there are "Power Packs". I found and downloaded the PowerPack 3, and the next time I start VS 2013 I get a long list of
files flashing by on my screen, too fast to read. But I still don't have any reference to line or shape controls that I can find. I am uncomfortable about what this process has added to and changed on my system. Should I just re-install VS and try again?

Where can I can the line and shape tools that are missing from my list of controls. Using Google and Microsoft site, I see there are "Power Packs". I found and downloaded the PowerPack 3, and the next time I start VS 2013 I get a long
list of files flashing by on my screen, too fast to read. But I still don't have any reference to line or shape controls that I can find. I am uncomfortable about what this process has added to and changed on my system. Should I just re-install VS and try
again?
Possibly you didn't add shape tools from Choose ToolBox Items after you installed Visual Studio 2013 initially as all toolbox items are not automatically in the toolbox since they do not all need to be used commonly. Although you don't mention which VS 2013
you installed and I've seen issues where Express versions either do not appear to come with PowerPacks or did not appear to come with PowerPacks at some earlier point in time which may have been resolved. It's also possible earlier releases of other versions
of VS 2013 did not come with them. Because for some point in time people questioned about some VS 2013 Express versions as well as the Pro and I believe Ultimate versions not having powerpacks available so I used to provide links for version 12.0 for them
which were at Microsoft but you couldn't find that link by searching at Microsoft downloads for some reason. I just happened to find it in some thread once when assisting somebody with that issue.
Although as
Jack-Zhai mentions PowerPack versions should be provided to Visual Studio which are for the version of Visual Studio you are using. It's probably a good idea to remove powerpack 3 although trying to find powerpack 12.0 doesn't seem very easy without a great
deal of searching. And I'm not certain for a version of Visual Studio how to find out which rev of PowerPacks should be used with it.
La vida loca

Similar Messages

  • Optimizer erases lines and shape boxes from PowerPoint pdf

    Hi,
    I am on a MacBook Pro running 10.5.8, using Powerpoint 12.2 for Mac, with Adobe Acrobat 9.
    I have saved a pdf of a PowerPoint file with many pictures for distribution.
    When I attempt to reduce file size or optimize the file, Optimizer erases all line art and outlines of box shapes. I have tried every setting under Images in Optimizer and run the optimizer on color, grayscale and monochrome in every combination and get the same result. I am only running the Image optimizer.
    Alternately, when I also check Transparency, it keeps the line art but changes all fonts in ever text box to gibberish.
    There appears to be no guidance anywhere on the web for this problem. Please help!
    Thanks!

    Try "Press Quality" Acrobat 5 compatable setting for "live" transparency.  You can also try PDF/X-4 2008 which maintains live transparency and, in CS4, maintain Acrobat 5 compatability.  PDF-X1 is a setting that "flattens" transparency which may limit your output options, depending on final output device.  Double check your raster settings and make sure it is set for 300ppi/2400dpi and not 72ppi/300dpi.  As suggested by Wade, your printer may not be a Postscript Level 3 output device with a RIP.  So, the driver may not be screening the artwork properly and the stitching shows up in output.  You may benefit from taking the file to a prepress shop and have them output a "contract" proof.  If the stitching shows up in the contract proof, then the PDF setup may be the problem or the original file itself.

  • Draw line and shapes

    I have a small problem...cos i have like one class that extends JFrame but i have one JPanel on which i would like to draw some shapes...but i dont know how...cos i tried to rewrite paint method but it does not work...if someone would please post me a simple example...on how to do that...thnx

    This is slightly barebones, but it should do. It also has some less relevant code. Here's my JFrame (or the interesting parts):
    public class MainWindow
         extends JFrame
         private PaintLayout layout;//My custom Layout, not required
         private Container c;
         public MainWindow()
              //Bind the layout and Container c for future use
         layout = new PaintLayout();
         c = getContentPane();
         c.setLayout(layout);
    //These are useful if you want to know what space is getting chopped out
         it = c.getInsets().top;
         ib = c.getInsets().bottom;
              il = c.getInsets().left;
              ir = c.getInsets().right;
         GameBoard board = new GameBoard();
    layout.addLayoutComponent(board, 0+il, 0+it, 720, 480);//Custom add function for my custom Layout
    c.add(board);//Very useful and important
    Followed by the code of interest in my JPanel:
    public class GameBoard
         extends JPanel
         implements MouseListener, MouseMotionListener
         public GameBoard()
              this.addMouseListener(this);
              this.addMouseMotionListener(this);
         public void paint(Graphics g)
    g.setColor(new Color(0, 127, 0));
    g.fillRect(0,0,this.getWidth(),this.getHeight());
         public void mouseClicked(MouseEvent arg0)
              int x = arg0.getX(), y = arg0.getY();
              System.out.print("X: "+x+" Y: "+y+"; X: "+x/10/12+"'"+(x/10)%12+"\" Y: "+y/10/12+"'"+(y/10)%12+"\";\n");
    Have fun with that.

  • Line and Rectangle shapes in VS 2013

    I am trying to move my VB.net application from Express 2010 to Express 2013 for Windows Desktop. I have installed the latest PowerPacks. When I run the application, the lines and rectangles appear as they should. However, in design mode I cannot
    see or select them. But if I add a line or rectangle, everything is fine. There must be some little thing I am missing.

    Here's some images.
    I created a new app and ended up calling it Test214.
    Image 1 - Dragging line shape onto form.
    Image 2 - ToolBox item manager showing I have both 9 and 10 rev powerpack items available.
    Image 3 - powerpacks 10 is referenced in Reference Manager.
    Image 4 - Solution explorer shows reference also.
    Image 5 - Ref is displayed in applications properties under references. NOTE that copy local is set to false.
    Image 6 - Explorer displaying Test214's debug folder. No .DLL's are displayed.
    Image 7 - Dragged copy of Test214's .exe from debug folder to desktop. Ran it. It is running below its executable and displays a powerpacks line shape.
    Image 8 - Back to apps properties in references. Selected reference for powerpacks.
    Image 9 - Selected properties tab. Note it displays properties for the powerpacks reference rather than a control or something on the form.
    Image 10 - Copy local set to true in properties tab for powerpacks reference. Rebuilt app.
    Image 11 - Powerpacks .DLL now resides in debug folder.
    So if I was to now install this app in some location on my PC I should copy that .DLL to the same location since the .Net CLR searches for .DLL's in a specific way. Although that may not be necessary as I didn't have to do that when I copied the apps .exe
    to my desktop then ran it. Regardless those .DLL's that a PC the app was to be installed on should be copied with the app onto that PC in the same location your .exe resides when it is installed. Or install powerpacks rev you use for your app onto
    that PC. I believe either method would work.
    For the majority of namespaces you would use in an app they are contained in the .Net framework rev you build your app to. So that .Net framework would normally need to be installed already onto the PC you would install your app on. Powerpacks are seperate
    from .Net Framework so they either need to be installed seperately or the .DLLs you use for whatever powerpack items you use need to be copied onto that PC in your apps folder that contains its .exe. Same as if you had third party .DLL's you were using with
    your app.
    Why your app wouldn't run from your x86 folder is beyond me. I created a folder called "Hello" in that folder and dragged, dropped a copy of Test214.exe from its debug folder into that folder then ran it from that folder and it displayed the line
    shape with no issue.
    In below link read Factors Affecting Search and Search Order for Desktop Applications I believe.
    Dynamic-Link Library Search Order
    La vida loca

  • Vector lines and control points stay onscreen

    Photoshop CS6 64bit WIndows 7 64 Bit.
    Using pen tool to create a mask.
    After de-selection of path (using pointer tool, paintbrush or anything else) the vector line including the control points does not disappear as normal.
    Deleting the layer removes it, but changing the visibility of the layer does not have any effect - it simply stays onscreen.
    Radeon HD4850 card with latest drivers.

    Photoshop CS6 64bit WIndows 7 64 Bit.
    Using pen tool to create a mask.
    After de-selection of path (using pointer tool, paintbrush or anything else) the vector line including the control points does not disappear as normal.
    Deleting the layer removes it, but changing the visibility of the layer does not have any effect - it simply stays onscreen.
    Radeon HD4850 card with latest drivers.

  • Inserting lines, images and shapes to clips...Needs Help

    I have created a timeline including only pictures. It is a sports clip where i am trying to insert lines depicting the proper position (or improper) for baseball athletes.
    Is it possible to insert lines or shapes onto the clips?
    Is so how?

    Is it possible to insert lines or shapes onto the clips?
    Yes.
    Is so how?
    Place the shapes or lines on the track above the clips (or still images). You can make the shpes or lines in Photoshop (or any graphics program) or in After Effects. There is also a Boris Shape generator that came bundled with FCE (I believe).
    -DH

  • Strokes of line and polyline behave different during zooming - why?

    Hello,
    I noticed a different behaviour between the a line an a polyline during zooming. The stroke of the line will not be increased while zooming. But the stroke of the polyline will be increased while zooming. I don't understand this behaviour. Is this a feature or a bug? For a better understanding you can execute the following demo:
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Slider;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Line;
    import javafx.scene.shape.Polyline;
    import javafx.stage.Stage;
    public class ScaleDemoLinePolyline extends Application {
         public static void main(String[] args) {
              launch(args);
         @Override
         public void start(Stage stage) throws Exception {
              final Group root = new Group();
              Scene scene = new Scene(root, 800, 600, Color.WHITE);
              stage.setScene(scene);
              //create a group with line and polyline
              final Group elements = new Group();
              Line line = new Line(100, 100, 400, 100);
              Polyline polyline = new Polyline(new double[] { 100, 200, 400, 200 });
              elements.getChildren().add(line);
              elements.getChildren().add(polyline);
              root.getChildren().add(elements);
              //init the slider for zooming
              Slider scale = new Slider();
              scale.setMin(1);
              scale.setMax(50);
              scale.setValue(1);
              scale.setLayoutX(100);
              scale.setLayoutY(500);
              root.getChildren().add(scale);
              scale.valueProperty().addListener(new ChangeListener<Number>() {
                   public void changed(ObservableValue<? extends Number> ov,
                             Number old_val, Number new_val) {
                        for (Node node : elements.getChildren()) {
                             node.setScaleX(new_val.doubleValue());
                             node.setScaleY(new_val.doubleValue());
              stage.show();
    }Thanks for your help!
    Best Regards

    Sorry for the thread. I regonized, that this is bug, which is fixed in version 2.1. see http://javafx-jira.kenai.com/browse/RT-13328

  • Unplugging all network devices from Fios router prevents DVR freezing and remote control lock ups.

    All,
    I recently had a Verizon tech visit my house due to constant DVR and remote control freezing. TV content was freezing whether it was locally recorded, pulled from another DVR in the house, or On Demand. On a hunch after the tech tested everything and was about to leave, he unplugged my gigabit switch from the Fios router. Lo and behold everything started running perfectly. Since to the tech, the problem was solved, he closed the case and was on his way. The probem is of course I have more devices than the built in router switch provides ports for. My network is compised of an 8 port Netgear gigabit switch downstream from the Fios router with two wireless access points (with their own built in gigbait switches) connecting to the Netgear gigabit switch. There are no loops in the switch topology. I've tried changing out the router, the gigabit switch, removing the wireless acces points individually as well as plugging the access points directly into the Fios router switch (one at a time with no Netgear switch in the middle) and all scenarious cause the DVR/remote control freeezing to come back. The only devices I can plug into the Fios router without causing freezes are PC's....anything with it's own switch essentially brings the network to it's knees. If anyone has an idea how to get my network back in one piece AND make the DVR's/remotes behave, I'd greatly appreciate the help!
    My Fios equipment:
    MI-424WR GEN-3I  rev I (eye) running firmware 40.19.36
    5 Motorola HD-DVRs all QIP 7232-2 running software release 1.9.1 platform build 25.39 (Oct. 22, 2012)
    Specific config:
    75/35 Fios connecting via ethernet from ONT. Set-top boxes connect to Fios router coax port via powered splitter.
    *All SNR/dB mesasurements taken by the tech from the set-top boxes and router are well within spec.
    Fios router provides DHCP addressing. Wireless N access points are configured for roaming with the same SSID and non-overlapping channels. Access points are not providing routing or IP adressing...all layer 3 and up services still provided by Fios router
    Diagram:
    ONT
      |
    Fios Router ---------Cable Splitter---------Set Top Boxes
      |
    Netgear Switch
      |           |
    WAP1    WAP2

    WayfarerII wrote:
    ... DVR ... remote ... freezing ... TV ... whether ... locally recorded, pulled from another DVR ... 
    ... tech ... unplugged my gigabit switch from the Fios router ... and ... everything started running perfectly ...   
    ... config:
    75/35 Fios ... via ethernet from ONT ... Set-top boxes connect to Fios router via powered splitter ...
    ONT
      |
      | cat5
      |
    Fios Router ---------Cable Splitter---------Set Top Boxes
      |
    Netgear Switch
      |           |
    WAP1    WAP2
    I am inclined to echo several of the "tns" comments, particularly with respect to your splitter.  My layout is based on a standard 8-port splitter of the type usually supplied in a VZ install.  In addition I do have a ChannelPlus device that functions as a powered splitter, but its use is limited to distribution of secondary TV signals to older analog TVs.  My first point then is that this may be an offender as "tns" has suggested.
    In addition, I'd describe your wiring as "non-standard" (red-colored items in the above diagram)  As you're no doubt aware, with 75/35 you don't really need Cat5e from the ONT (your original diagram).  It seems the highest tiers do require it, but in "standard" installations this run is coax directly to an 8-port non-powered splitter (below diagram), then from that splitter via coax to all STBs and CableCards, other TVs, et.), and also to the Actiontec.   Subsequent feeds from the Actiontec to wired devices (including WAPs) are via Ethernet (typically Cat 5e).
    In fact I don't immediately see how your STBs get additional services such as On Demand and IMG with the wiring shown in your diagram (perhaps someone can help me out here).  In "standard" installs the Actiontec must be connected via coax to the ONT to provide such services to other network clients.  I don't see that requirement being met here.
    For starters I'd recommend that you change your service from WAN Ethernet to WAN coax.  This can easily be accomplished over the telephone.  Then I'd run coax directly from the ONT to the Actiontec as in my revised diagram below (blue-colored items).  If your setup can manage with this arrangement, I think it will help greatly with the "freezing" issue.
    ONT - - - - - - coax - - - - -
                                             |
    Fios Router --- coax--- Standard 8-Port Splitter --- coax --- Set Top Boxes
    |cat5
    Netgear Switch
    |cat5           |cat5
    WAP1 WAP2
    Subsequent Note:  You provided additional info while I was composing a response, and I'd  like to offer another comment.  Structured wiring "panels" of the type usually available are pre-configured to provide data, phone and video.  This usually means that one is in certain respects limited by the ideas of the panel designer.  I have what can be called a structured wiring layout, but it really is composed of individual small custom networks for  each service (automation, security, video, data, telco, etc.), configured so that all wiring terminates in "home run" fashion at a central panel (a few details here: http://forums.verizon.com/t5/Home-Networking/Cmon-Show-Us-Your-Network/m-p/481733#M765 ).  This layout makes it easier to make adjustments (and there have been quite a few over the intervening years).  I'm thinking that in your case you may have to abandon the powered splitter (presumably) built into the panel in order to avoid your present fix.
    Subsequent Subsequent Note:   From your description it seems that you are using more than a single "whole house" DVR to supply programming to other devices.  This is a bit puzzling to me because somewhere along the line I recall reading that only a single whole house DVR was allowed on the network.  Can you elaborate a bit?

  • PO Report with lines and conditions matched

    Dear Experts,
    I need a report that controls the Invoice Verification in the following scenario:
    1- The  PO's have product lines and have on conditions there is excise duty
    2 -  The invoice verification due to the type of business, it is manual and happens in two different moments;
    2.a - on the first moment "day X"  - it is made the invoice verification regarding the product
    2.b - on the second moment  ("day X" plus 15 days) it is done the invoice verification of the excice duty (it is invoiced on a separate invoice
    We need a report that gives the invoices where excise duty was not yet matched , or still open just for excise duty invoice verification.
    Many thanks in advance for your help
    Best Regards
    Jose

    Dear,
    Better send Requirements & specification form to ABAPer and discuss the possibilities, since 2.a and 2.b are looks not achievable with standard.
    Regards,
    Syed Hussian.

  • How can i use in the same time input line and mic to recorder in several track whit SONAR

    I have beem recording only input line because SONAR 4 not recognized the mic in, Help me!!!.
    Thank you. Sorry for my english

    LIMACAR wrote:
    How can i use in the same time input line and mic to recorder in several track whit SONAR 4. I have beem recording only input line because SONAR 4 not recognized the mic in, Help me!!!.
    Thank you. Sorry for my english
    Depending on which soundcard you have there, but if your card is capable for
    ASIO -> activate I/O drivers on Sonar/Options/Audio/Drivers -tab (mic/line sources should be listed there --> activate) and select the mic or/and Line sources on tracks "I" - dialog
    WDM/KS -> use the Surround Mixer or windows recording controls for recording source selection (mic should be listed there)
    MME32 - > same w/ WDM/KS
    If you use Asio4All --> same w/ WDM/KS & MME32
    No mic and line source simultaenously w/ WDM/KS and MME32.
    You perhaps be able to do this w/ kX drivers.
    jutapa
    ADDED:
    You can also install modded version of Audigy 2 drivers/software but I have never done this w/ Li've! 5. so I can't be sure if you get ASIO support for your card.
    Here are the instruction --> http://www.tech-pc.co.uk/audigy-2.php
    jutapaMessage Edited by jutapa on 05-25-2006 02:48 PM

  • Issue with number of lines in Table control for an web transaction in ITS

    Hi,
    We have acustom web transaction ZC03 where we have used table controls. Recently a kernal patch has been installed and after that the number of lines appearing in table control has got changed. Earlier table control was coming with 5 lines and presently its coming with 3 lines. Can you please help me to fix the issue.
    The  code used in HTML template for table controi is given below:
    `SAP_DynproLayerBegin(005,013,067,006)`
      `SAP_TableControl("TC_TIME1")`
        `SAP_DynproLayerEnd()`
    I have tried other alternatives like  `SAP_DynproTableControl("TC_TIME1")`, `D_TableControl("TC_TIME1') but did n't get any fruitful result also.
    Thanks and Regards,
    Ranadev

    What where the precise Kernel updates? What where you on and what did you upgrade too?
    Did you apply any BASIS Support Pack corrections during the Kernel upgrade?
    If you applied a new BASIS support pack - check the following WIKI:
    [How to check the publishing Date of an Internet Service|http://wiki.sdn.sap.com/wiki/x/OYG8BQ ]
    if you need to republish - use the following WIKI:
    [How to activate, publish and test ITS services in the integrated ITS?|http://wiki.sdn.sap.com/wiki/x/kmE ]
    Regards,
    Oisin

  • Display has white and grey lines and blocks crisscrossing it and touch functions are not working properly on half the screen.

    I dropped my iPhone 5S and it landed flat on it's face (it was in a protective case).  Since then my touch screen display is not working properly. I have white and grey lines and/or blocks crisscrossing the screen both horizontally and vertically.  Screen responds to touch in odd random ways, but rarely does what I am trying to do.  Can't call or receive calls because can't dial or answer phone via swipe. Can't text or read incoming texts. All functions seem to be working except that I can't access them because the touch screen is acting up. If I move the phone around it randomly accesses different apps or functions, but I have no control over them once the appear on the screen.  Touching screen just causes phone to randomly choose something else to open.  What have I damaged?

    Shanegang77 wrote:
    What have I damaged?
    We cannot possibly tell. Obviously some hardware inside. Take it in to an Apple Store. They will offer you the opportunity to swap the phone for $269 in the US. Prices vary by country.

  • How do I set default colors for XY chart series (lines and legend)

    I am implementing a line chart and need to override the default (caspian style) colors for the line colors and the legend symbols. I'm not displaying the chart symbols themselves as that would make the chart look bad. I've been able to successfully set the default colors for the lines via the CSS below, but cannot find a way to do the same for the series symbols that appear in the chart legend. How do I do this? Thanks.
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    ...Update:
    Figured it out. Need to do the following:
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(R, G, B);
    }Edited by: 998038 on May 16, 2013 4:09 PM

    Here is some css to customize the line and legend colors in a line chart.
    /** file: chart.css
        place in same directory as LineChartWithCustomColors.java */
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(0, 102, 255), white;
    .default-color1.chart-line-symbol {
      -fx-background-color: rgb(0, 255, 102), white;
    }And a test harness to try it:
    import javafx.application.Application;
    import javafx.event.*;
    import javafx.scene.Scene;
    import javafx.scene.chart.*;
    import javafx.scene.control.*;
    import javafx.scene.input.*;
    import javafx.stage.Stage;
    public class LineChartWithCustomColors extends Application {
        @Override public void start(final Stage stage) {
            stage.setTitle("Line Chart Sample");
            //defining the axes
            final NumberAxis xAxis = new NumberAxis();
            xAxis.setLabel("Number of Month");
            final NumberAxis yAxis = new NumberAxis();
            //creating the chart
            final LineChart<Number,Number> lineChart =
                    new LineChart<>(xAxis,yAxis);
            lineChart.setTitle("Stock Monitoring, 2010");
            lineChart.setCreateSymbols(false);
            //defining a series
            XYChart.Series series = new XYChart.Series();
            series.setName("My portfolio");
            //populating the series with data
            series.getData().setAll(
              new XYChart.Data(1, 23),
              new XYChart.Data(2, 14),
              new XYChart.Data(3, 15),
              new XYChart.Data(4, 24),
              new XYChart.Data(5, 34),
              new XYChart.Data(6, 36),
              new XYChart.Data(7, 22),
              new XYChart.Data(8, 45),
              new XYChart.Data(9, 43),
              new XYChart.Data(10, 17),
              new XYChart.Data(11, 29),
              new XYChart.Data(12, 25)
            lineChart.getData().add(series);
            //adding a context menu item to the chart
            final MenuItem resizeItem = new MenuItem("Resize");
            resizeItem.setOnAction(new EventHandler<ActionEvent>() {
              @Override public void handle(ActionEvent event) {
                System.out.println("Resize requested");
            final ContextMenu menu = new ContextMenu(
              resizeItem
            lineChart.setOnMouseClicked(new EventHandler<MouseEvent>() {
              @Override public void handle(MouseEvent event) {
                if (MouseButton.SECONDARY.equals(event.getButton())) {
                  menu.show(stage, event.getScreenX(), event.getScreenY());
            Scene scene =
              new Scene(
                lineChart,800,600
            stage.setScene(
              scene
            stage.show();
            scene.getStylesheets().add(
              getClass().getResource("chart.css").toExternalForm()
        public static void main(String[] args) {
            launch(args);
    }

  • I need two header line in table control

    Hi all,
    I am using table control. The requirement is to have 2 headers in the table control. for example., if their is field name ' Vendor Comments', I need to display 'Vendor' in one line and 'Comments' in next line. Is it possible to have such 2 headers for 1 field?
    If have answer please reply me.
    Thanks in advance,
    Kaarthick

    You cannot do this in table control in dynpro environment. Maybe you can check the ALV to get more flexibility about header titles.

  • Not able to view more than two line in table control

    Hi all,
    I am not able to see more than two lines in table control. Although my table control height is 21...
    Please see attached pic and suggest me what to do.

    hi,
    You have to set the LINES property of the table control In the PBO of your screen, to the number of entries in the internal table.
    data: lv_line type i.
    DESCRIBE TABLE  gt_table LINES lv_line.
    table_control-lines = lv_line + 1.
    or else
    You can do two thing in table control properties check horizontal and vertical scroll options plus in PBO you can based on number of lines in internal table assign it to TC_ABC-LINES if no lines are there then add by default 20..10.. any number of lines as you want.

Maybe you are looking for