Editing a message, splitting into several parts, adding attachment to a part

I feel stupid.
I just started a discussion with the intention of splitting my post into several parts, but it seems that I can't do that unless I "comment" on my first post. This would be OK, except that I cannot seem to be able to insert anything to these comments but images and urls. I want to attach a zip file, but I have no button to do so. The "Add Attachment" button at the bottom of the message window is appearing only for NEW POSTS (such as this one)!
Third, I can't seem to be able to edit my post which was submitted a minute ago.
Help, Help, Help!
Thanks,
X. 
Solved!
Go to Solution.

X-) wrote:
- No attachment for comments
This is a very recent change and hopefully we get that functionality back.
X-) wrote:
- Ridiculously short Edit window
I would recommend composing and refining the idea/reply offline.
Personally, I think the edit time window should be extended, but I am not sure how long it should be. It probably should not be infinite to avoid race conditions. For example if there is already an extensive discussion of the current versiont and then the idea suddenly changes 180 degrees, none of the replies would make sense anymore and people even might want to revoke their kudos. Note that I often quote the existing post (as above!) to (1) make it clear what I am replying to and (2) to keep the answer clear even if you would have edited the above sentences into something completely different in the meantime.
Historically, I think the edit window was forced to be very short to allow reasonable syncing with the newsgroup mirrors (e.g. LabVIEW forum vs. comp.lang.labview), but this is no longer an issue. What would be reasonable? 1 hour? 1 day?
Should existing repliers be notified of edit changes?
For longer edit windows, we might also need an versioning control mechanism (e.g. like in wikipedia). where older version can be inspected by the public.
Minor edits can be done by the moderator at any time. This should be reserved for simple mistakes (e.g. forgetting a "not", inverting the actual meaning, or changes in the title to make it clearer.)
In general, I agree that things can be improved. We just need to find the sweet spot.
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • ['Solved'] xorg-server 1.9.0-1 split into several xorg servers

    So what's up with the [Testing]'s xorg-server 1.9(.0-1) being split into xorg-server/-common/-devel/-xdmx/-xephyr/-xnest/-xvfb?
    Last edited by algorythm (2010-08-24 16:24:35)

    nvidia doesn't get built, just repackaged, so it doesn't require any xorg-server-* stuff to build. The -devel package is required to build drivers from source. The xorg-server and xorg-server-common packages are the usual packages that will become installed on all desktop systems.

  • When I send an SMS message from my Text Message Forwarding enabled Macbook to an Android, it breaks the message up into several out of order chunks. Is there a solution to this?

    I have a 2012 Macbook Air and an iPhone 5, both with up-to-date software. When I set up Text Message Forwarding, everything went according to plan, until I sent a relatively wordy text to a friend (from my Macbook) to a friend on an Android phone. It chopped the text up into several 2 line fragments, and delivered them in seemingly random order. The fragments were specifically 2 lines, and not 160 characters, which is the "limit" you used to get on old SMS messages. It continues to happen.

    Are you using any emoji, or accented characters? If so, try not to. Also, I recall something about a double space at the very end of the text. Unfortunately, I don't remember if you should use them or avoid them.. Beyond that, there's not much you can do. How the text is delivered is under control of the carrier.

  • Group Messages Split Into Seperate Group Messages

    Problem:
    Somehow my group messages are being split into seperate group messages.  What is causing this?
    Examples:
    Example #1: I sent a message to my Mom, Dad, & Sister, which shows in my phone as a single group message. Mom & Dad have android, Sister has Iphone.  When they reply, a new group message appears, which includes all of them, and each of their replys, but not my original message.  So I end up with two seperate group messages.
    Example #2: My friend Alex sends out a group text to me, and eight other people and it shows as one group message in my phone (Mix of Iphones and others).  My friend Drew then replys and in my phone I now see two seperate group messages, but he does not.  I then reply to Drews new group message, and now he sees two group messages.
    Note: In each of these examples, all the same people appear in the message, so it is still a group message, BUT when looking at the different group messages that are created, the names of the people are in a different order.
    Phone:
    Iphone 6 Plus, Version 8.0, Network: AT&T,
    Note: It also would do this with my old Iphone 4S, unfortunately I can't remember when it started to do this, whether it was after an upgrade etc...
    Message Settings:
    iMessage = On,
    Send Read Receipts = Off,
    Send as SMS (when MMS not available) = On,
    Send & Receive = 3 Addresses, My Phone & 2 x Emails
    MMS Messaging = On,
    Group Messaging = On,
    Show Subject Field = Off
    Character Count = Off
    Please Help! Thanks!

    Same thing happens to me. So annoying. Most we can do is submit a bug at http://bugreport.apple.com so please do!

  • Source message split into 2 orders - 2nd order populating wrong values

    Hi Friends,
    I have an issue related to X12 to Orders, X12 file is processed and split into 2 orders/idocs,
    1 idoc is outputing the right values, however the 2nd idoc is extracting all wrong values.
    According to my observation, there are no values coming in for couple of E1EDKT1 segments (for the second idoc,  fyi, there are multiple E1EDKT1 segments with different values).
    it seems that values coming after these segments are extracted and filled to these segments. i can see 2 upward shifts in the output.
    Any idea how to resolve this issue, i have tried using map with default, split by value, collapse context, remove contexts etc.
    Thanks in advance,
    Regards,

    Use mapwithdefault function with a blank character for all the target nodes which ever you think might not get a value from the source. You will see the right results.
    VJ

  • Writing main class (All in one method or split into several?)

    Hello,
    How is the common practice to write a main method?
    I use to write one method if nothing repeats it self then I make a private method for it.
    Like this
    public static void main(String[] args) {
    foo();
    foo();
    private void foo(){
    }But I have read a lot of main methods where there is private methods which is only executed ones.
    And the main method calls a new private method like this
    public static void main(String[] args) {
    foo(args);
    private void foo(String[] args){
    foo2();
    foo3();
    foo4()
    private void foo2(){
    private void foo3(){
    private void foo4(){
    }

    I think its better to do the second example
    but it does not really make a difference
    Example 1 you have to say xyzClass.foo();
    Example 2 you call the methods directly
    public class XYZ{
      public XYZ(){
      public void method1(String s){ 
      public void method2(){ 
      public void method3(String s){ 
      public void method4(String s){
      public void method5(String s){ 
      public method(String[] args){
        method1(args[0]);
        method2(args[1]);
        method3(args[2]);
        method4(args[3]);
        method5(args[4]);
      }main methods
    public static void main(String[] args){
      XYZ xyz = new XYZ();
      xyz.method1(args[0]);
      xyz.method2(args[1]);
      xyz.method3(args[2]);
      xyz.method4(args[3]);
      xyz.method5(args[4]);
    //vs.
    public static void main(String[] args){
      XYZ xyz = new XYZ();
      xyz.method(args);
    }Edited by: gtRpr on 2008/07/22 01:42

  • When i connect my mac book pro to an external display using a VGA cable and adaptor, the external display splits into several different columns of the same screen overlapping one another. Does anybody have any ideas as to why this happens?

    I have used different VGA to mini port adaptors, different VGA cables and connected them to different external monitors and prjectors but the same thing happens. I am starting to think there may be a problem with the macbook itself however, when i have used a HDMI lead and adaptor to external monitors the external display is fine.

    Hi there LDIMERY,
    You may find the troubleshooting steps in the article below helpful.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    -Griff W. 

  • Songs out of order and split into several "albums". Only in Grid view upon clicking on album.

    Ok this is getting ridiculous! Until two days ago, all was well in my itunes universe. Not so anymore. All tracks on ALL albums are all jumbled, but only when I use Grid view. List view, OK, as are all the others. All the sorting info seems to check out and nothing seems amiss. When I have 10 songs shy of 7000, going album-by-album through the whole library doesn't quite seem viable as an option. Could there be a corrupted plist or preference file somewhere I could trash? I downloaded the latest version, then spent 5 hours restoring Itunes from my last backup and that was before the problem occurred. What gives? I've tried everything I've been able to find on the internet so far and nothing has worked. I've yet to attempt a reinstall as I'm afraid this bother is hiding somewhere in a file that wouldn't be touched by a reinstall. And I'm not willing to live with it as this is my preferred way of interacting with itunes. I have better things to do with my day off than scour the web for a solution that never should have happened in the first place. ANY help would be greatly appreciated. Thanks for your time in advance.

    Nevermind, somehow it's magically back in order.

  • Captured clips split in several short segments

    During capturing the clips split into several segments, some very short. What could be the cause?

    This is an HDV camera isn't it? Did you shoot DV on it or HDV? What is it set to output?
    The camera should split clips at every shot change, and there will be some loss when that happens, so if the shots are short to start, they will be even shorter.

  • FCP Splits QT movie file into several files... problem and solution.

    Hi All,
    I was having problems exporting a QT movie (Video Only) of a 20 min Reel within a Feature Film I edited. The Database was quite large - the film was 2Hrs and Footage was about 12X.
    FCP would split the QT movie file into several files - only one of which was openable (either in FCP or the QT player). To my surprise, I also found that even though the file opened fine, I would get an error message when trying to copy it or its associated files over to another HD (Tiger would abort, after giving me an error No. and saying that there was an error while copying). The problem was repeatable and specific to this sequence.
    After some testing, I found that copying the clips (Video Only) to another sequence and re-exporting, seemed to solve the problem. My take on this is that too many ( > 12? ) Audio tracks causes problems in FCP when the database is large.
    But I do need these additional tracks. Any work arounds?
    Thanks,
    RD

    First, look in System Settings, and see if you've checked the box to limit file size to 2GB. Uncheck that box. See if that helps.
    Or it could just be a corrupt project causing the problem.

  • In the itunes library, a single album appears to be split into two separate parts, how do i combine them?

    my itunes library has several albums that are split into two parts. one contains half of the album's songs and the other the other half. how do i combine these so the album only appears once in it's entirety?

    Generally setting a common Album Artist will fix things.
    For deeper problems see Grouping tracks into albums.
    tt2

  • Split a Shipment costs document into several MM document by carrier

    Hi gurus,
    I am trying to split a Shipment costs document into several MM document by carrier. We need the system to search for an existing MM order if not found create a new one (the system is set to do it by V_TVFT-BESER value “A”).
    I have a route with different stages. These stages/steps have associated different carriers (or partners).
    When these data is transferred to MM purchase order the system gives an error with the message no. M7107:
    Enter goods receipts for vendor 103962 only
    Message no. M7107
    The system does the purchase orders but not the 101 movement.
    Does someone met this problem before?
    I am in 700 SAP version with package 12
    Regards.
    Mikel

    Hi,
    Check out BADI BADI_SCD_PO_SELECT. This allows you to control which purchase order is used for shipment costing.

  • Invoice A/R Payment Split Transaction into Several GL Accounts

    Hi,
    I got following message from SAP Support:
    The SplitTransaction property is not included in product develop plan by now.
    By SAP Note 1028874, we would like to ask you to post your requirement in our SAP Business One Product Development Collaboration forum and not via message:
    /community [original link is broken]
    Please refer to Note 1028874 for more information.
    ISSUE
    Sample 2, Bank transaction:
    I have build a Payment routine in Invoice A/R.
    I am doing a Bank transfer in Payments regarding payment with Interact (direct Payment from Bank
    account)
    Here in Canada you have the possibility to withdraw money: Sample invoice cost $100, you can pay
    $200 and receive $100 in cash.
    Sample I like to do:
    GL Account A $200 (Account Number, Debit )
    GL Account B $100 (Account Number, Credit)
    GL Account C $100 (Business Partner, Credit)
    Any suggestion?
    In the Payment describtion I can do a  vPay.SplitTransaction = 0; but this is not working according to SAP Support.
    SUMMARY
    I like to do a payment and Split the Transaction into several accounts; like Journal Entry with reconciliation of the Journal Entry and the Invoice.
    Thank you,
    Rune

    Hi Peter,
    I do not want you to promote the future code; but the code in SDK as today.
    Sample, it would look something like the code below from SDK help code; but please change the code to work as your sample.
    Thank you,
    Rune
    vPay.Invoices.AppliedFC = 0
    vPay.Invoices.AppliedSys = 0
    vPay.Invoices.DocEntry = 8
    vPay.Invoices.DocLine = 0
    vPay.Invoices.DocRate = 0
    vPay.Invoices.InvoiceType = 13
    vPay.Invoices.LineNum = 0
    vPay.Invoices.SumApplied = 5031.2
    Call vPay.Invoices.Add
    vPay.CardCode = vmp_CardCode_string;
    vPay.DocDate = DateTime.Now;
    vPay.JournalRemarks = "Incoming - Payment Bank Transfer";
    vPay.TaxDate = DateTime.Now;
    vPay.TransferAccount = vmp_BankAccount_string;// "_SYS00000000343";
    vPay.TransferDate = DateTime.Now;
    vPay.TransferReference = vmp_CardCode_string;
    vPay.TransferSum = vmp_Amount_double;
    vc_Message_Result_Int32 = vPay.Add();

  • Speedgrade crashes every time I use split into clips function as part of scene detection.

    Speedgrade CC (latest version) crashes every time I use split into clips function as part of scene detection.
    I can use the keyframe function fine, but if i split it into clips it crashes 9 out of 10 times... so to get the job done i simply keep reopening the project, cliping and praying it works, then it crashes.... and i repeat this until it doesnt crash!
    File format im using is a 22min long Prores422 HQ 1080 25P file.
    Any ideas?.... im guessing im going to get the old "reinstall the software" one first... anything else?
    also have issues with Speedgrade just crashing for no good reason at random times while im grading too but ive come to expect that from the buggy software.

    I've got several 1080p mov's that have multiple sequences with 20 to 40 minutes a sequence I've regularly run over to Sg from PrPro. Granted, they're pretty straight forward, mostly simple cuts with a few transitions/wipes, no more than 3 video layers a sequence. Only one has any Ae stuff on it, and again, pretty simple.
    But as noted, there are those who do programs for broadcast with it ... I'm wishing one would chime in. Maybe shooternz ... I think he does b-cast work. Vastly more experienced than I am, PrPro, Ae, Sg, Audition ... the "suite". There's several others around here, though they tend to 'hang' in the PrPro forum more than here.
    Neil

  • One idoc that needs to split into three messages

    Hi,
    I get an idoc from sap through change pointers.  The IDOC needs to be mapped via a mapping program which splits into three different messages.
    Let me know how to achieve it.
    Some notable info are that the the three messages have different flat structures. 
    Your suggestions are well rewarded.
    Regards,
    B.Anandh

    Hi,
    Try these
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3115---- [original link is broken] [original link is broken] [original link is broken] Multi Map With out BPM
    /people/narendra.jain/blog/2005/12/30/various-multi-mappings-and-optimizing-their-implementation-in-integration-processes-bpm-in-xi Various multi-mappings and
    Optimizing their Implementation in Integration Processes (BPM) in XI.
    /people/sudharshan.aravamudan/blog/2005/12/01/illustration-of-multi-mapping-and-message-split-using-bpm-in-sap-exchange-infrastructure --- Illustration of Multi-Mapping
    and Message Split using BPM in SAP Exchange Infrastructure
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm (N:1 Mapping )
    Regards
    Seshagiri

Maybe you are looking for

  • How can i get my n97 back to work properly?

    Hi everybody! I need some help, i don't know what to do with my n97... I have updated its firmware every time was needed, i've done a lot of hard resets, i've free a lot of space in C, a lot of RAM memory and....it keeps randomly freezing!! After six

  • Oracle Connectivity in JSP using Tomcat 4

    Dear friends, After installing and configuring the Tomcat 4 I am able to run JSP and Servlats. But I am unable to connect to Oracle database (oracle 8i) using thin driver. Sample code is : <html> <head><title>Test JSP-JDBC</title></head><body> <%@ pa

  • ITunes 10.5.0.142 Crashes Whenever Music Added to Library

    This has been pestering me for a few weeks now and so now I'm taking it to you, random cloud of internet people. Whenever I attempt to load music files into my iTunes library it crashes more or less immediately. The error message reads as such: Probl

  • HELP:  cannot insert images

    When I try to insert an image, I get a pop up message reading: "You won't see this element unless View < Visual Aids < Visible Elements is checked, and the preference setting for this setting is on." I've made sure that Visible Elements has been chec

  • Saving Message!

    Hi, I'm Having a control Block with some items on it... i take some parameter from that form & shows a another control blocked canvas. but when i close the form it always asks me for do you want save the changes ? I've some idea about this if the for