PLEASE put nature of problem in thread title

I can't believe how many of you put thread titles like "AAARRGH" or "GRRRR" or "Help" or "Songs"....please briefly put the nature of your problem or comment in the title. It makes it a lot easier for folks who actually CAN help you find your thread. There, I've said it...I suddenly fee LOTS better!

Nor only that.... how many times do we need to anwe the same "how do I put DVD's on my ipod" threads? There has to be some type of "sticky" that we can have newcomers read before the post the same questiosn over and over and over.

Similar Messages

  • About forum thread title

    Just a though, on the current forum list of thread, there are a lot of threads with a title which means... almost nothing for other members :
    Query Help Needed
    sql help needed
    I need a query
    Query Help Needed
    pl/sql program erros
    Can one solve it in SQL?
    Query Help
    Query help
    Query help
    Help with query
    Since all these threads have been post inside the SQL and PL/SQL forum, it is obvious each of the OP need help regarding SQL and PL/SQL, then all the titles above are bad and describe nothing more than SQL and PL/SQL help is needed.
    So, please, for eachone who post a thread, it could be very nice to choose a significant title for your thread, which describe in short what your problem is, at least for two reasons :
    1. that will help you, as thread owner, to write in words your problem and clarify in your mind, and it's the first step of help
    2. that will help other members to define in brief your problem, and to choose and define what threads they are able to give help.
    Thanks for your cooperation.
    Nicolas.

    Unfortunately...
    nobody seems to read or follow the instructions of:
    http://forums.oracle.com/forums/ann.jspa?annID=719
    Greetings...
    Sim

  • Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.

    Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.
    I have had to erase my disk since then with trouble with Apple Store not recognising my machine and the reload from Time Machine has given complications . Can you please cancel my trial and return my Trial money.

    If you paid for what you used then it was not a trial.
    Look thru the following links and use the chat option if required for your situation:
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    https://forums.adobe.com/thread/1703848
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Please put "Skype Credit" back on the main page.

    Skype
    Please put the "skype credit" back on the main page.
    This post was transferred from its previous location to create its own new topic here; its subject and/or title has been edited to differentiate the post from other inquiries and to reflect the post's content.

    Skype
    Please put the "skype credit" back on the main page.
    This post was transferred from its previous location to create its own new topic here; its subject and/or title has been edited to differentiate the post from other inquiries and to reflect the post's content.

  • 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.

  • Problem with Thread and InputStream

    Hi,
    I am having a problem with threads and InputStreams. I have a class which
    extends Thread. I have created and started four instances of this class. But
    only one instance finishes its' work. When I check the state of other three
    threads their state remains Runnable.
    What I want to do is to open four InputStreams which are running in four
    threads, which reads from the same url.
    This is what I have written in my thread class's run method,
    public void run()
         URL url = new URL("http://localhost/test/myFile.exe");
    URLConnection conn = url.openConnection();
    InputStream istream = conn.getInputStream();
    System.out.println("input stream taken");
    If I close the input stream at the end of the run method, then other threads
    also works fine. But I do not want to close it becuase I have to read data
    from it later.
    The file(myFile.exe) I am trying to read is about 35 MB in size.
    When I try to read a file which is about 10 KB all the threads work well.
    Plz teach me how to solve this problem.
    I am using JDK 1.5 and Win XP home edition.
    Thanks in advance,
    Chamal.

    I dunno if we should be doing such things as this code does, but it works fine for me. All threads get completed.
    public class ThreadURL implements Runnable
        /* (non-Javadoc)
         * @see java.lang.Runnable#run()
        public void run()
            try
                URL url = new URL("http://localhost:7777/java/install/");
                URLConnection conn = url.openConnection();
                InputStream istream = conn.getInputStream();
                System.out.println("input stream taken by "+Thread.currentThread().getName());
                istream.close();
                System.out.println("input stream closed by "+Thread.currentThread().getName());
            catch (MalformedURLException e)
                System.out.println(e);
                //TODO Handle exception.
            catch (IOException e)
                System.out.println(e);
                //TODO Handle exception.
        public static void main(String[] args)
            ThreadURL u = new ThreadURL();
            Thread t = new Thread(u,"1");
            Thread t1 = new Thread(u,"2");
            Thread t2 = new Thread(u,"3");
            Thread t3 = new Thread(u,"4");
            t.start();
            t1.start();
            t2.start();
            t3.start();
    }And this is the o/p i got
    input stream taken by 2
    input stream closed by 2
    input stream taken by 4
    input stream closed by 4
    input stream taken by 3
    input stream closed by 3
    input stream taken by 1
    input stream closed by 1
    can u paste your whole code ?
    ram.

  • Hi,I'm having problems with Lightroom CC,as when I go to the Develop section on Lightroom it keeps coming up that this section is disabled and that I need to renew my membership.Can you please advise what the problem is as I have the student subscription

    Hello,
    I'm having problems on the Lightroom CC App,as it seem's that when I open the Develop heading at the top of the screen,there is message that comes,which says this section is disabled and I need to renew my membership.My membership is up to date regarding payments etc.I use the student/ teacher version of the CC as I'm a student.Can anybody please advise what the problems seem's to be and what can i do to access the develop and other facilities on Lightroom?
    Many Thank's
    J:)
    Ps Is this a common problem on the Student/teaching version of CC?

    This is an indication that Lightroom is not connected to your subscription. Verify that your are logged into the Creative Cloud desktop app, or try logging out and back in again to refresh your subscription information: Sign out, Sign in | Creative Cloud Desktop app.
    Also, verify that your student subscription is still current and active.

  • Hello , please am having a problem with my iphone 5 , the battery runs out quickly , also if i turn on 3G it will run faster , 15 minutes and the iphone battery will be out , and my final problem is that is "no service " appears a lot can you help ?

    Hello , please am having a problem with my iphone 5 , the battery runs out quickly ,another problem also if i turn on 3G it will run faster , 15 minutes and the iphone battery will be out . My final problem is that  "no service " appears a lot  especially when opening wifi or 3G , can you help ?

    Your battery is running quickly because your cellular data connection is weak.
    Is your phone carrier a supported carrier:   Wireless carrier support and features for iPhone in the United States and Canada - Apple Support
    For your no service issues:  If you see No Service in the status bar of your iPhone or iPad - Apple Support

  • When I try to use the Submit Form button on the Interactive PDF I created (IN Design CS6) I get this message. "There is no value in form field 'Program.' Please put in it before proceeding. What can I do to fix this and make the Submit button work?

    When I try to use the Submit Form button on the Interactive PDF I created (In Design CS6), I get this message:
    There is no value in form field "Program." Please put in it before proceeding.
    How can I fix this and make the Submit Form button work?

    Are you running modified software on your phone?  This error seems to be common if the firmware has been modified and you're trying to restore the phone again. 

  • [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

  • HT1541 Can you please put the 40,000 chips i bought for $4.99 on my account for the game called BIG FISH CASINO. I was charged but did not received the chips that i purchased :-(

    Can you please put the 40,000 chips i bought for $4.99 on my account for the game called BIG FISH CASINO. I was charged but did not received the chips that i purchased :-(

    You need to contact iTuens store support of teh game developers:
    http://www.apple.com/support/itunes/contact/

  • Itunes please put these two movies on itunes.  Saving Private Ryan and Se7en. Thank you

    i am begging you they are 2 amazing movies and i never get the chance to watch them on DVD due to 3 younger brothers all at least 10 years younger than me
    please put them on itunes so i can get the chance to watch them on my ipad and have an amazing veiwing session of the 2 best movies ever made

    The people reading and responding in this forum are just other Apple product users like you, not Apple itself. Apple uses its feedback pages (not this support forum) for garnering product feedback or suggestions. Apple Support Communities is an end-user to end-user (i.e., users like you helping other users) technical issue support feature. You should send feedback via:
    http://www.apple.com/feedback/ - Apple products feedback links
    I am sure if Apple could sell those movies and make money off you they would (are you positive they are not there?)  Distribution is controlled by the movie studios.

  • Please put a cost object with valid JV data for GL accoutnt (line 001)

    Dear All,
    When the user is trying to post ASKBN, They are getting an error saying "Please put a cost object with valid JV data for GL accoutnt (line 001)"
    So we tried to look up the error, and the WBS, Cost center, profit center and JVA details are all available in place. Still cant understand why this error comes. And why the system is asking to put JV details when they are available.
    On checking, WBS has an AUC and AUC has the cost center which has the JV details and PC details. So I think everything is in place.
    Can someone help please and let us know if we are missing anything else that needs to be checked ?
    Thanks,
    Hari Dharen

    Dear Hari Dharen,
    if something else in missung you'll get a error message if you run ASKBN in testmodus.
    regards Bernhard
    Edited by: Bernhard Kirchner on Oct 5, 2010 8:55 AM

  • When viewing forums the cursor placed over the thread title would let me see the first sentence in the thread, now it is just a small blank box........any ideas?? Thx

    When viewing forums the cursor placed over the thread title would let me see the first sentence in the thread, now it is just a small blank box........any ideas?? Thx

    Yassssss...................that did it............................thank you!!!

  • Could you please put a fast shortcut in the toolbar to un/check "Allow pages to choose their own colors,..." from Options Content Colors

    could you please put a fast shortcut in the toolbar to un/check "Allow pages to choose their own colors,..." from Options> Content> Colors>

    hello bygabyga, i think this will be a too specific use-case to be added as a general feature into the browser. you can make use of an extension though to get this kind of functionality: https://addons.mozilla.org/firefox/addon/toggledocumentcolors-198916

Maybe you are looking for

  • HT1212 my iphone is disabled and it wont give me a chance to do the passcode and its not synced how do i fix it

    My phone is disabled for a long time and its not synced how can i change the passcode

  • Some photos are missing on IPhone 6

    I reset my iphone 6 and restored the backup from my iphone 5s. A problem appeared in some photos, whereas their space in Collections is still there, their location is still saved but the photos do not show! Any explanation or possibility of recovery?

  • CM issue

    we have a vision server on windows. The issue is with CM. i can start them from component services.However all the requests shows "Inactive manager" Only the Internal manager shows 1,1 as actual and target while other managers are not running.They sh

  • Telnet Read VI and variable length response

    I am trying out Internet Toolkit's Telnet VIs. It seems that the Telnet Read VI defaults to 60 bytes. I am not sure what is the best way to deal with the situation of a variable length response. Some responses are 3 lines; others can be 50 lines.

  • Unable to delete project from BCC

    Hi all, I unable to remove project in BCC. while doing this I'm found exception in server log. I'm pasting the exception stack trace here. Please suggest me to resolve this issue. 18:03:48,984 ERROR [DynamoServlet] javax.ejb.EJBException: CONTAINER:a