Help, my chart-problem columns

hello.
i used adobe flex build 3.0. Now i had problem about my chart
i want to create LineChart. I have date. And my date update  minute by minute. My chart  have 16 spaces
: (8h-9h), (9h-10h)....(22h-23h).
I want my chart show as the picture blow:
Or
But Now i don't know how i can like.
i only created as the picture blow:
The columns are not standar, not same Identical.Pls See clear the Picture above and blow and Help me
Now my Code
<?xml version="1.0"?>
<!-- http://blog.flexexamples.com/2007/11/19 … ick-marks/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">
    <mx:Script>
        <![CDATA[
            import mx.charts.HitData;
            import mx.charts.CategoryAxis;
            import mx.charts.chartClasses.IAxis;
            import  mx.charts.GridLines;
            import mx.collections.ArrayCollection;
            import mx.graphics.Stroke;
            import mx.events.ColorPickerEvent;           
            private function linearAxis_labelFunc(item:Object, prevValue:Object, axis:IAxis):String
                return currFormatter.format(item);               
            private function categoryAxis_labelFunc(item:Object, prevValue:Object, axis:CategoryAxis, categoryItem:Object):String
                return item.valueOf().toString();            
            private function renderTips(hd:HitData):String
              return "aaaaaaaaaaaaaa bbbbbbbbbbb";
        ]]>
    </mx:Script>
    <mx:CurrencyFormatter id="currFormatter" precision="2" />  
    <mx:XMLListCollection id="dp12">
        <mx:source>
            <mx:XMLList>
                <quote date="8h" open="90.1" />
                <quote open="90.1" /> 
                <quote open="90.1" />                                
                <quote date="9h"  open="45.5" /> 
                <quote open="90.1" /> 
                <quote open="90.1" />         
                <quote date="10h" open="40.82" />                                           
                <quote date="11h" open="21.4"  />                
                <quote date="12h" open="40.41"  />              
                <quote date="13h" open="40.55"  />
                <quote date="14h" open="40.18" />             
                <quote date="15h" open="39.83"  />               
                <quote date="16h" open="40.22" /> 
                <quote open="90.1" /> 
                <quote open="90.1" />                
                <quote date="17h" open="41.01" /> 
                <quote date="18h" open="41.21"   />                
                <quote date="19h" open="32.00" />                 
                <quote date="20h" open="45.00" />               
                <quote date="21h" open="29"/>              
                <quote date="22h" open="30.00" />              
                <quote date="23h" open="40" />                             
                </mx:XMLList>
        </mx:source>
    </mx:XMLListCollection>     
    <mx:LineChart id="lineChart" showDataTips="true" color="black"
        dataProvider="{dp12}"  width="100%" height="100%" alpha="1.0"
         >
        <!-- background elements -->
        <mx:backgroundElements>
            <mx:GridLines id="gridLines" toolTip="Tony adam" direction="both"
                horizontalTickAligned="true" themeColor="red" alpha="5">                              
                <mx:horizontalFill>
                    <mx:SolidColor color="white" alpha="5.0"  />
                </mx:horizontalFill>               
                <mx:horizontalAlternateFill>
                    <mx:SolidColor color="white" alpha="5.0" />
                </mx:horizontalAlternateFill>                                             
            </mx:GridLines>
        </mx:backgroundElements>
        <!-- vertical axis -->
        <mx:verticalAxis>
            <mx:LinearAxis baseAtZero="true"
                    title="Price"
                     />
        </mx:verticalAxis>
        <!-- horizontal axis -->
        <mx:horizontalAxis>
            <mx:CategoryAxis id="ca"
                    categoryField="@date"
                    title="Tháng 6 Năm 2009"
                    />
        </mx:horizontalAxis>
        <!-- horizontal axis renderer -->
       <mx:horizontalAxisRenderers>
            <!--<mx:AxisRenderer axis="{ca}" canDropLabels="false" />-->
            <mx:AxisRenderer canDropLabels="true" placement="bottom"
            axis="{ca}" tickPlacement="inside"
            tickLength="100" minorTickPlacement="inside"
            minorTickLength="15"      
            />   
        </mx:horizontalAxisRenderers>
        <!-- series -->
        <mx:series>                              
             <mx:LineSeries yField="@open" displayName="open" xField="@date"
                 interpolateValues="true" form="curve" themeColor="black">
              <mx:lineStroke>
                    <mx:Stroke color="#3333FF" weight="1" alpha="3.1" scaleMode="vertical"/>               
             </mx:lineStroke>
             </mx:LineSeries>     
        </mx:series>      
        <!-- series filters -->
        <mx:seriesFilters>
            <mx:Array />
        </mx:seriesFilters>
    </mx:LineChart>   
</mx:Application>

altenbach, Thanks a ton for your assistance. I have gained serious insight by examining how you approached this. I am able to see how my thinking was somewhat flawed. Here is the vi I used to write the file. I have also included another sample .bin file (which needs to be renamed to .bin), and a subvi I built to generate filenames based on time stamps.
This is part of a system we are trying to build to monitor some of our equipment 24/7. The plan is to use this data to monitor long term degradation of the equipment in order to perform preventive maintenance, before problems occur. I work in a Nuclear plant, so problems can be serious...
In the final application the "Trigger" will be set by a physical input. For example, when a fuelling machine component is commanded to move we will start the data acquisition and when the machine is commanded to stop, the acqusition stops. The plan is to archive all of the data, and any analysis would be done by the system engineers later.
We would like to able to examine the entire data file which would be captured. A typical movement of our machine might last for as long as 2 minutes. We want to capture all of this time period, but we might need to examine only a couple of seconds anywhere within this window.
Thanks again for your insight. 5 Stars across the board....
technomage
Attachments:
12-09-2006-074635.txt ‏766 KB
write.vi ‏82 KB
Filename Generator.vi ‏20 KB

Similar Messages

  • Need help with chart problem

    I have built the attached vi to read a binary file. It has two problems which I have not been able to figure out. The way it works is as follows: Reads the entire file, and grabs the trace names from the file. Populates the list box with these names. Select the traces you want to see and then the legend display will size itself and populate with the selected names. The selected traces will also display on the chart.
    1. Sometimes, when picking a SINGLE trace it won't display on the chart. Instead I see a blank chart and the X-Axis shows Dec. 31 1903 @ 7pm. Usually If I select more than one it displays correctly. A probe shows me the data is in the wire going to the chart, but the chart doesn't seem to update.
    2. Presently I am using a loop to read the file in its entirety. However the chart only displays 1 second worth of data. This is one segment of the original file. By reading the whole file I am seeing the LAST second of my data. Previously I removed the loop and then I only see the first second of data. Is there an easy way to select a different segment of the file to display?
    I have been fighting with these two issues for several days now and I don't seem to be any closer....
    Here is my vi and a sample binary file. (Note that I couldn't attach it as .bin so it needs to be re-named back to .bin from .txt)
    technomage
    Attachments:
    Read-bin.vi ‏56 KB
    23-08-2006-080252.txt ‏128 KB

    altenbach, Thanks a ton for your assistance. I have gained serious insight by examining how you approached this. I am able to see how my thinking was somewhat flawed. Here is the vi I used to write the file. I have also included another sample .bin file (which needs to be renamed to .bin), and a subvi I built to generate filenames based on time stamps.
    This is part of a system we are trying to build to monitor some of our equipment 24/7. The plan is to use this data to monitor long term degradation of the equipment in order to perform preventive maintenance, before problems occur. I work in a Nuclear plant, so problems can be serious...
    In the final application the "Trigger" will be set by a physical input. For example, when a fuelling machine component is commanded to move we will start the data acquisition and when the machine is commanded to stop, the acqusition stops. The plan is to archive all of the data, and any analysis would be done by the system engineers later.
    We would like to able to examine the entire data file which would be captured. A typical movement of our machine might last for as long as 2 minutes. We want to capture all of this time period, but we might need to examine only a couple of seconds anywhere within this window.
    Thanks again for your insight. 5 Stars across the board....
    technomage
    Attachments:
    12-09-2006-074635.txt ‏766 KB
    write.vi ‏82 KB
    Filename Generator.vi ‏20 KB

  • Business Graphics - Chart Type - Columns, and Simple Scatter Type

    Hi,
        I am interested to know more about Business Graphics Specially Chart types Columns and
    Scatter type ( and Time Scatter).  I am facing problem in producing X and Y Co-ordinate values for Charts. (Specially Date Values in X Axis.). I tried with Time Scatter type and need more documents.
    Expecting Good Documents and suggestions.
    Thanks, 
             Vinod V

    Hi
    Check this link
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/86/243f403f0a9354e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/0b/79553b066d9414e10000000a114084/frameset.htm
    https://help.sap.com/saphelp_nw04/helpdata/en/0c/95c83956852b51e10000000a114084/frameset.htm
    thanks

  • Powershell Excel Chart: want to plot chart by columns

    I have the following Powershell code to create a chart:
    $range = $wb.ActiveSheet.usedRange
    $range.EntireColumn.AutoFit() | Out-Null
    $chartType = "microsoft.office.interop.excel.xlChartType" -as [type]
    $wb.charts.add() | Out-Null
    $wb.ActiveChart.chartType = $chartType::xlColumnClustered
    $wb.ActiveChart.SetSourceData($range)
    $wb.ActiveChart.HasTitle = $true
    $wb.ActiveChart.ChartTitle.Text = "Chart"
    The code creates the chart but it plots it by rows instead of columns (see
    Office KB ). I can change this in Excel manually but is there a way with Powershell to output the chart in columns by default?

    Hi,
    Perhaps setting xlColumns for the PlotBy property will be helpful:
    http://msdn.microsoft.com/en-us/library/office/microsoft.office.interop.excel.chartclass.plotby%28v=office.14%29.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,420+ strong and growing)

  • My Itunes is no longer allowing me to manage my music on my phone i can no longer select on my iphone to make playlists and delete music. Please help fix my problem.

    My Itunes is no longer allowing me to manage my music on my phone i can no longer select on my iphone to make playlists and delete music. Please help fix my problem. Iphone4s, 32gigs, IOS 7.1.2
    I don't know why it stopped working but it happened a month or two ago but the option on this phone that's usually all the way to the left when you select your device but now its not and I don't know what caused it. ive already tried troubleshooting my problem but have found no help.

    Hello Salmomma,
    Thank you for the details of the issue you are experiencing when trying to connect your iPhone to your Mac.  I recommend following the steps in the tutorial below for an issue like this:
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/
    Additionally, you can delete music directly from the iPhone by swiping the song:
    Delete a song from iPhone: In Songs, swipe the song, then tap Delete.
    iPhone User Guide
    http://manuals.info.apple.com/MANUALS/1000/MA1658/en_US/iphone_ios6_user_guide.p df
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • How do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    how do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    Welcome to Apple Support Communities
    When you try to copy data to the external drive, what happens? If you don't see any error, the external drive is formatted in NTFS, and OS X can't write in it.
    To be able to write on this external drive, you have to use an app like Paragon NTFS. Another solution would be to format the external drive in FAT32 or exFAT with Disk Utility > http://pondini.org/OSX/DU1.html Make sure you copied all the files of the external disk to the internal disk before doing it

  • I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    Is this happing because the external is formatted to PC and not mac?
    Yes that is correct.
    Will I need to get a mac external hard drive if I wish to continue to save my documents like this?
    If you no longer use a PC you could format this drive for the Mac. However be aware that formatting a drive will erase all the data on it. So you would need someplace to copy the data off this drive to while you did the re-format and then you could copy the data back.
    You could get another drive, format it for the Mac and copy the data to it. Then re-format the original drive and use it as a backup drive. Always good to have backups.
    Post back with the drive type and size of the current drive, if you are doing backups now and how and if you still need to access this drive from a PC.
    regards

  • Adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem

    Hi,
      I got this message after importing about ten or so H.264 files that I encoded from Adobe media encoder.  "adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem."
    The files we're shot with HD cameras.  Edited in Premiere Pro CS3.  I installed the update 3.0.1 with still the same error.
    I also tried a brand new project and after about ten or so files being imported into a timeline, the system crash.  I tried this twice....
        Thanks in Advance

    Hi Hunt,
           Here is the skinny.  A window base PC.  footage shot with HD sony HD cameras,  Project imported to Premiere CS3.  Once completed sent file to Adobe media encoder and render them as H.264 widescreen high Quality.  Imported them to Adobe Encore CS3.  After about ten files or so.  I got the error message.  Did all the basic trouble shoot like restarting the computer, got latest patch.  Even build a new test project with the same problem.
        Something else I read in the forums, is the encore will transcoded the project to Mpeg 2 anyway, after looking at my project I realized those few files were indeed untranscoded.  So it will be a double compression and I dont want that.  So, my new question is, what is H.264 good for ?????????? I was research that Mpeg 2 is a faster render but H.264 is a slower render but better quality.....
       what do you think ????
       Peter

  • Stacked 100% bar chart - Problem with datatips for zero value data points

    I have a stacked 100% bar chart that shows datatips in Flex 4.   However, I don't want it to show datatips for
    data points with zero values.   Flex 4 shows the datatip for a zero value data point on the left side of a bar if the data point is not the first in the series.
    Here's the code that illustrates this problem.    Of particular concern is the July bar.    Because of the zero value data point problem, it's not possible to see the datatip for "aaa".
    Any ideas on how we can hide/remove the datatips for zero value data points ?        Thanks.
    <?xml version="1.0"?>
    <s:Application
    xmlns:fx="
    http://ns.adobe.com/mxml/2009"xmlns:mx="
    library://ns.adobe.com/flex/mx"xmlns:s="
    library://ns.adobe.com/flex/spark"creationComplete="initApp()"
    height="
    1050" width="600">
    <s:layout>
    <s:VerticalLayout/>
    </s:layout>
    <fx:Script><![CDATA[ 
    import mx.collections.ArrayCollection;[
    Bindable] 
    private var yearlyData:ArrayCollection = new ArrayCollection([{month:
    "Aug", a:1, b:10, c:1, d:10, e:0},{month:
    "July", a:1, b:10, c:10, d:10, e:0},{month:
    "June", a:10, b:10, c:10, d:10, e:0},{month:
    "May", a:10, b:10, c:10, d:0, e:10},{month:
    "April", a:10, b:10, c:0, d:10, e:10},{month:
    "March", a:10, b:0, c:10, d:10, e:10},{month:
    "February", a:0, b:10, c:10, d:10, e:10},{month:
    "January", a:10, b:10, c:10, d:10, e:10}]);
    private function initApp():void {}
    ]]>
    </fx:Script>
    <s:Panel title="Stacked Bar Chart - Problems with DataTips for Zero Value Items" id="panel1">
    <s:layout>
    <s:HorizontalLayout/>
    </s:layout>
    <mx:BarChart id="myChart" type="stacked"dataProvider="
    {yearlyData}" showDataTips="true">
    <mx:verticalAxis>
     <mx:CategoryAxis categoryField="month"/>
     </mx:verticalAxis>
     <mx:series>
     <mx:BarSeries
    xField="a"displayName="
    aaa"/>
     <mx:BarSeries
    xField="b"displayName="
    bbb"/>
     <mx:BarSeries
    xField="c"displayName="
    ccc"/>
     <mx:BarSeries
    xField="d"displayName="
    ddd"/>
     <mx:BarSeries
    xField="e"displayName="
    eee"/>
     </mx:series>
     </mx:BarChart>
     <mx:Legend dataProvider="{myChart}"/>
     </s:Panel>
     <s:RichText width="700">
     <s:br></s:br>
     <s:p fontWeight="bold">The problem:</s:p>
     <s:p>Datatips for zero value data points appear on left side of bar (if data point is not the first point in series).</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">For example:</s:p>
     <s:p>1) For "June", eee = 0, mouse over the left side of the bar to see a datatip for "eee". Not good.</s:p>
     <s:br></s:br>
     <s:p>2) For "July", eee = 0 and aaa = 1, can't see the datatip for "aaa", instead "eee" shows. Real bad.</s:p>
     <s:br></s:br>
     <s:p>3) For "Feb", aaa = 0, datatip for "aaa" (first point) does not show. This is good.</s:p>
     <s:br></s:br>
     <s:p>4) For "Mar", bbb = 0, datatip for "bbb" shows on the left side of the bar. Not good.</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">Challenge:</s:p>
     <s:p>How can we hide/remove datatips for zero value data points?</s:p>
     <s:br></s:br>
     </s:RichText></s:Application>

    FYI.
    Still have the issue after upgrading to the latest Flex Builder 4.0.1 with SDK 4.1.0 build 16076.   
    Posted this as a bug in the Adobe Flex Bug and Issue Management system.     JIRA
    http://bugs.adobe.com/jira/browse/FLEXDMV-2478
    Which is a clone of a similar issue with Flex 3 ...
    http://bugs.adobe.com/jira/browse/FLEXDMV-1984

  • Help with systemd problems/reply to closed thread

    @Everyone; as the previopus topic was closed, I am opening a new one here, partly to reply to some things that was said to me in the previous thread/topic (and I do not like to leave people hanging), but mainly to try and get some help with my systemd config (that I was not able to find help with in the wiki or manpages).
    @czubek; eww, that sounds rather similiar to some other operating systems I've heard of (not just, but obviously including, windows)... For me, subjectively, that is not very attractive, as being able to have a single application do a single thing, and then mixing and matching as I personally see fit is a great thing.
    @tomegun: I can indeed see your point, but if I made direct quotes on all the things I reply too, my posts would reach biblical proportions.
    Mmm-hmm, I do indeed know of "the Arch Way"; however, the system that you expose can be of varying complexity as well, and I found that the system that was presented to me by way of Sysvinit/initscripts was a way simpler system than that presented to me by systemd.
    Indeed, and I do like that; I enjoy knowing how my system works and learning more about it; however, the truth is that reading manpages and the wiki isn't always enough. And I use the numbers instead of letters in certain places as a jest, please, do not get offended by that; if you have to, get offended by my opinions.
    Ah, I have now scanned the wiki, the manpages, and have already faced problems. While part of me is saddened by this fact (as I was hoping for a smooth transition to systemd), part of me is glad that I can at least prove that everything isn't quite as simple as some people would make it out to be. More on this later in this post, as I do need help with the problems I have faced.
    And I wouldn't say that the new and old way are equally trivial, as I immediatley faced problems with "the new way". More on this later.
    Ok, I find that if the debate is polarized, then there is nothing wrong with describing it as such. I spell what I see.
    Oh my... Ignored as a matter of principle? I would say that that is an excellent way to stagnate; by that logic, moviemakers, gamemakers etcetera should ignore any and all criticism they recieve, as the critics are not contributing.... Wouldn't that lead to a complete halt in development? Isn't criticism (so long as it is constructive, obviously) a key component of (media/software) evolution?
    Ah, I see, then I  misunderstood the current state of the install media
    "Some adjustements"... Well, I guess we'll have to see how that goes, then. Hopefully it'll be smooth.
    @Everyone; Awebb possesses stunning accuracy as far as his observations go.
    @zb3; My point exactly.
    @tomegun; I believe you to be wrong; complaining (but not whining) is the first step towards improvement, as I think that I and zb3 has shown.
    Further, your last point (where you talk about "deep understanding of Y" and whatnot) is basically saying that only devs and programmers can contribute, so zb3's observation would be correct.
    Also, making suggestions is part of constructive criticism; you can do that even if you can't code, e.g. by saying "X works badly because it makes Y crash; couldn't we replace X with something akin to Z?". This is a valid point even if you have no intricate understanding of X, Y or Z, and if it is impossible to replace X for one reason or the other, it's not hard to reply with "Replacing X is impossible because of reason Q", and then see if someone can solve reason Q etcetera.
    zb3's example is obviously helping; for one, it would allow people to know taht they can't boot with systemd in certain cases, or that installing/runing systemd can break their system. I would consider that rather important information.
    @Everyone; Now then, to see if I can (or rather, if I can get help to) shed some light on some problems I've been having.
    My transition to systemd went pretty smooth (besides the fact that I couldn't use 'systemctl' to set anything, and neither duckduckgo nor any posts in the forums could help me (the error I continously got was "Failed to issue method call: Launch helper exited with unknown return code 1") and that there are no manpages/tips on how to configure the files for "localtime" and "adjtime", which would've been good considering some syntax have changed) to about halfway through, to the point where I was supposed to start using systemd for my daemons.
    Now then, to the main problem; first, I tried running
    "systemctl enable syslog-ng.service"
    and got the following message;
    "ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/syslog.service'
    ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/multi-user.target.wants/syslog-ng.service'"
    Since it doesn't exclusively say that something went wrong (at least as far as I can understand), I pondered the message a bit, but moved on to try and start dbus by issuing
    "systemctl enable dbus.service",
    to which I got the reply
    "The unit files have no [Install] section. They are not meant to be enabled using systemctl."
    This I can only assume is an error message of some sort, especially seeing as it says "not meant to be enabled using systemctl", but the wiki rather explicitly states that that is what I am supposed to do.
    I dare not move on (or attempt to start other daemons) without further advice, as I fear I might break my system. Any ideas as to how to solve this would be greatly appreciated.

    tcmdvm wrote:
    The message;
    "ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/syslog.service'
    ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/multi-user.target.wants/syslog-ng.service'"
    indicates that running "systemctl enable syslog.service" is now enabled.
    If you try running sytemtctl enable <whatever>.service and get
    "The unit files have no [Install] section. They are not meant to be enabled using systemctl." means there is no <whatever>.service file available to enable.
    The dbus.service as far as I know is already enabled when installing systemd and doesn't require any action.
    Ah, right, systemd is chatty (I'm of the old skool; if nothing is/goes wrong, a program should keep quiet).
    Oh ok, then I should dare more on.
    ZekeSulastin wrote:To be a bit more precise, it means the service is there but it's only used as a dependency for something else; the [Install] section of the file is what tells systemctl where to link it and such.  Also, where exactly in the wiki were you told explicitly to 'systemctl enable dbus.service'?  I can easily point you to the sections in both installation guides that tell you how to set things like /etc/localtime et. al (also `man 7 archlinux`), but not the one that said to manually enable dbus.
    Ah, I see; and well, I was told right here, going from the top, to "Enable Daemons formerly listed in rc.conf [...] For a translation of the daemons from /etc/rc.conf to systemd services, see: List of Daemons and Services.", and, using the list, dbus is mentioned there, as you can see. Since I started from the top, I did not know that you didn't need to enable that service. Perhaps it could be added to the descriptions of the relevant services in the Wiki which ones are autostarted?
    ZekeSulastin wrote:Lastly, I don't think trying to continue conversations from a closed thread is a very good idea, let alone doing it in a giant undivided wall of text that makes it quite difficult to pick out much any single topic.
    Meh, I directly refer to the relevant people, they can easily see their own old posts in the previous thread, etcetera... I think te ones who have something to say will be able to find my replies to their previous statements (or so I hope). For now, as everyone can see, I quote stuff (but man might I make some huge posts if I ever post again in the future, if I quote what I reply to).
    fsckd wrote:This is not really a technical support subforum. Moving from Arch Discussion to Newbie Corner.
    Ah ok, thanks (or perhaps a cautious thanks? Moving it to "newbie corner" might, after all, be a subtle insult...).
    tomegun wrote:It is not really possible to follow your message as you don't quote what you are replying to. Moreover, as the thread was closed I think that means we should stop the discussion ;-)
    Hmm, I think it means cop-out for lack or proper arguments/responses... But ok, I'll let it slide, for now (mainly as I can't do much else).
    tomegun wrote:You are not meant to enable dbus.service as it is enabled unconditionally. To check the enabled/disabled state of your services try "systemctl list-unit-files". "static" means that you are not supposed to enabled/disable it.
    Ah ok, thank you. Now, having abandoned all hope, I'll start configuring again and see how it goes... May the void protect me. If I die, grieve not for me, but remember me in the fight against hard-to-configure applications.
    (edit/addon)
    Actually, what am I supposed to do with "hwclock"? the List of Daemons only says that I shouldn't run that in tandem with ntpd, but I'm not running ntpd, so... How do I get hwclock with systemd?
    Edited for additional question.
    Last edited by incassum (2012-11-07 08:44:42)

  • [ETL]Could you please help with a problem accessing UML stereotype attributes ?

    Hi all,
    Could you please help with a problem accessing UML stereotype attributes and their values ?
    Here is the description :
    -I created a UML model with Papyrus tool and I applied MARTE profile to this UML model.
    -Then, I applied <<PaStep>> stereotype to an AcceptEventAction ( which is one of the element that I created in this model ), and set the extOpDemand property of the stereotype to 2.7 with Papyrus.
    -Now In the ETL file, I can find the stereotype property of extOpDemand as follows :
    s.attribute.selectOne(a|a.name="extOpDemand") , where s is a variable of type Stereotype.
    -However I can't access the value 2.7 of the extOpDemand attribute of the <<PaStep>> Stereotype. How do I do that ?
    Please help
    Thank you

    Hi Dimitris,
    Thank you , a minimal example is provided now.
    Version of the Epsilon that I am using is : ( Epsilon Core 1.2.0.201408251031 org.eclipse.epsilon.core.feature.feature.group Eclipse.org)
    Instructions for reproducing the problem :
    1-Run the uml2etl.etl transformation with the supplied launch configuration.
    2-Open lqn.model.
    There are two folders inside MinimalExample folder, the one which is called MinimalExample has 4 files, model.uml , lqn.model, uml2lqn.etl and MinimalExampleTransformation.launch.
    The other folder which is LQN has four files. (.project),LQN.emf,LQN.ecore and untitled.model which is an example model conforming to the LQN metamodel to see how the model looks like.
    Thank you
    Mana

  • Standard Input Help on a table column.

    Hello,
    Requirement is to provide a Standard Input Help on a Table Column in Web UI. The Context node is a Value node and that column should be in editable mode.
    And how can I get standard search in Web UI that is available in GUI for searching the Transaction No. in T- Code CRMD_ORDER.
    Pl. help.
    Thanks & Regards
    Ankit

    Hi Ankit,
    If you are asking about DDIC search help, then you need to use method GETV_XYZ of the context node attribute.
    Have a look on below written code:
    data:
    ls_map type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING,
    lt_inmap type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING_TAB,
    lt_outmap type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING_TAB.
    ls_map-context_attr = 'struct.countryorigin'.
    ls_map-f4_attr = 'LAND1'.    ( Search help Parameter, in your case it will be Transcation no.)
    append ls_map to: lt_inmap, lt_outmap.
    create object rv_valuehelp_descriptor type
    CL_BSP_WD_VALUEHELP_F4DESCR
    exporting
        iv_help_id = 'H_T005_LAND'
        iv_help_id_kind = IF_BSP_WD_VALUEHELP_F4DESCR=>HELP_ID_KIND_NAME
        iv_input_mapping = lt_inmap
        iv_output_mapping = lt_outmap.
    Regards,
    Saurabh

  • Powerpoint presentation I have stored in icloud until recently were syncing to Keynote on my iPad with no problem.  Now when I open Keynote on my iPad there is nothing.  I could use some help with this problem.

    powerpoint presentation I have stored in icloud until recently were syncing to Keynote on my iPad with no problem.  Now when I open Keynote on my iPad there is nothing.  I could use some help with this problem.

    Morning AndreD86,
    Thanks for using Apple Support Communities.
    These articles explain exactly what is backed up by using their method.
    iTunes: About iOS backups
    http://support.apple.com/kb/ht4946
    and
    iCloud: Backup and restore overview
    http://support.apple.com/kb/ht4859
    Also we want to double-click the Home button and swipe the Task Bar to the right.
    Then make sure the button on the far left of Task Bar is not muted.
    Best of luck,
    Mario

  • "Skype can't connect. Get help fixing this problem...

    Well, I downloaded Skype. Then, i sign in to my account. And an error pops up on my computer screen that said "Skype can't connect. Get help fixing this problem". Someone help me fix this?
    Solved!
    Go to Solution.

    Make sure you are running the latest updates both for Windows and Skype. See here for help on getting those: https://support.skype.com/en/faq/FA34438/why-should-i-update-my-skype-version-what-do-i-need-to-do-t...
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

Maybe you are looking for

  • Adobe Acrobat 6.0 CE Standard edited forms do not display fields

    I have a user who has Adobe Acrobat 6.0 CE Standard, she uses it to fill out an editable form created with Adobe and send it to clients. When this form is saved and attached to an e-mail, anyone who recieves it and opens it in Reader 9.0 the fields t

  • Downloading pictures from a cell phone to iPhoto 5

    I just bought a Motorola V551 camera phone and was told by the sales person that if I bought a USB cable for it (which I did) that I would be able to directly down load pictures to my Mac. I have a iMac G5 with OS 10.4.2 and iPhoto 5.0.4 and assumed

  • Making non-standard size pdfs from Microsoft Word 2003 on pc

    I have Acrobat 8 Professional (pc, Windows XP op system), and want to know how to make a pdf from Microsoft Word (2003) where the dimensions of my document remain as they are, a non-standard size, such as 5.5" x 8.5". All the choices of "paper size"

  • T420 - External Micrphone (headphone) stopped working

    Hi, I´ve been using my headphones with an incorporated microphone  (as the ones you use on your cellphone) as both headphone and microphone for the last two years, Suddenly, the microphone stopped working (the sound still works). - I´ve tried with tw

  • JAXB Unmarshalling and namespace

    Hi All , Im using jaxb to marshall and unmarshall xml messages.Every thing seems to work fine expect for one small part ...... the namespace is removed form the xml .For example <RECORD xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noName