How can I make watch thread disable to a single user

How can I make  "watch thread" disable to a single user in the fourm administrator.

If you have iWork Pages can be used to do what you want.
OT

Similar Messages

  • How can I make expanded threads the default view?

    Whenever I go to my usenet account, I have to press Shift-* to expand all the threads. In the past, I never needed to do this. I would really like to be able to make "all threads expanded" my default view. Can anybody tell me if this is possible and if so, how to do it? TIA.

    ''Matt [[#answer-703229|said]]''
    <blockquote>
    I would of answered you, but I can not remember how I did it. I have a folder set that way. So it was something simple. It is the hard stuff I tend to remember.
    Almost all compose issues can be "cured" using the workaround of pressing enter 3 or 4 times and then moving the cursor back to the start. The composer has the annoying ability to go past the end of the document by one character and pick up the defaults used in developing the program.
    Simply Typing your name and then returning to the beginning to type will bypass that.
    This add-on https://freeshell.de/~kaosmos/quoteandcomposemanager-en.html with it's stabilize fonts setting has been a big help to some.
    Not pasting from Word is also a big help.
    </blockquote>
    Matt, thanks very much for replying. I'll give the trick you mention a try. However, the extension you recommend isn't approved by Mozilla and I'm very reluctant to install something which isn't.
    Anyway, pretty sad when extensions have to be created to deal with bugs the developers should find solutions for. Maybe they're trying to convince people to give up TB so that they can totally drop it like they want.

  • How can I make this thread

    I want to make a thread that keeps runing while my GUI's screen still open I want that the class Reader keeps running.
    Any ideas??
    Thanks

    Implement Runnable in your class to be run on a separate thread (Reader), then instantiate a new Thread object with your Reader instance and start it.
    When your Reader class exits its run() method the background thread will terminate. If it never leaves run(), then the background thread will never terminate, and may prevent your application from exiting. If you want the background task to be forcibly killed when the main application exits, call setDaemon(true) on the thread object (when the only threads running are daemon threads the application will terminate).
    // Example class
    public class ThreadExample
       // Your mainline code
       public static void main(String[] argv) {
          Thread t = new Thread(new Reader());
          t.start();
          // Reader is running now do something else
          for(int i = 0; i < 100; i++ ) {
             System.out.println("FOREGROUND TASK");
       // Class to instantiate and run in background     
       public class Reader
          implements Runnable
          public void run() {
             for(int i = 0; i < 100; i++ ) {
                System.out.println("BACKGROUND TASK");
    }

  • How can I make a panelTab disable?

    Hi to everybody!!
    I�m new to jsf and I'm trying to figure out a way to dynamically disable panelTabs in a panelTabbedPane. I know there is a disableOnUserRole, but this only relates to users and I don�t know how to use it.(If anyone could explain me)
    In addition, I'd so much would like an enable attribute that takes e.g. a true or false whether the panelTab should be enabled or not.
    Does someone have an idea how I can handle this? I need to dynamically decide from the bean whether the panelTab should be enabled.
    If there isn't a way...why isn't there??? :(
    Thanks for any help

    As a student, you might be able to get Office for Mac from the college bookstore at a substantial discount. Otherwise, I think your best option for documents that need to be shared with Office users is to get one of the free Office clones such as LibreOffice.

  • How can i make a video call to non iPhone users like Noika etc in India they dont have Face time software on the devices

    hi
    i bought new iPhone 4 after long association with Nokia mobiles but one thing is puzzling me how to make a video call from my iPhone to my other friends who use Nokia E 5/6/7 and make video calls easily
    I have 3G connection even my iPhone is not recieving or making any video call
    can some one already using this facility help me out
    sanjay from jaipur

    I havn't got it, but have you tried the Skype for iPad app ? - http://itunes.apple.com/us/app/skype-for-ipad/id442012681?mt=8#

  • How can I make two separate photos into a single photo.

    I wpuld like to put together two photos into one.
    I will appreciate your help.
    Thanks.
    Vernon

    If you have iWork Pages can be used to do what you want.
    OT

  • How can i make the bash promt for the root user red ?

    After an Epic battle with Gnome3 and FGLRX i finnaly gave up and installed openbox instead :-)
    I use the xterm terminal and i would like to change the color of the root bash to red but i cannot get this done for some reason.
    I tried several suggestion in /etc/bash.bashrc but none work properly.
    I can change the prompt just fine i just can't get it to recognize the root user and give him a diffirent color.
    All i am looking todo is change the prompt from "dennis@hostname ~]$" to "Dennis" or "Root" and i wish root to be in red.
    Does anyone have this setup down and can ya share the bashrc file with me ? does anyone have suggestion for me ?

    Dennis Beekman wrote:is there no way todo it from /etc/bash.bashrc ? this would apply to all users at once... wich would be much nicer.
    I source this from my /etc/bash.bashrc: http://paste.xinu.at/5KkTu/bash Not exactly what you want, but you get the idea. (I just noticed though that the 'export' statements in all lines are probably incorrect and should be omitted.)
    EDIT: Yes, just tested, sed -i 's|export ||g' prompt.sh, please.
    EDIT2: Also, EXTRAPROMPT is not used in this simplified example, omit that too.
    Last edited by brain0 (2011-08-04 15:44:15)

  • How can we make disable a Field of a FORM at run-time?

    Hi to everybody,
    I want to know that how can we make a filed DISABLE at runtime <whenever we run a FORM>.
    I know about SET-ITEM-INSTANCE-PROPERTY but don't know how to use it,
    please make it clear.
    I will be gratefull to all of you
    Thanking you in advance.

    There's no property values for enabled or disabled in SET_ITEM_INSTANCE_PROPERTY.
    Instead what you can do is set INSERT_ALLOWED, UPDATE_ALLOWED and NAVIGABLE to FALSE which basically what a disabled item behaves like.
    Regards,
    Tony

  • How can I close core thread in ThreadPoolExecutor?

    If I use unbounded LinkedBlockingQueue in ThreadPoolExecutor and set the core pool size to 5. When more than 5 tasks are submitted, there will be 5 threads created to handle the request. After finish, these threads will not be closed. How can I make the threads in core pool be closed when finishing their job? I couldn't use maximum pool for that I do need an unbounded queue.

    If you really want that functionality, set the core pool size to 0, the maximum pool size to 5 or greater, and the keepAliveTime to 0L. This will remove excess threads as soon as their tasks have completed.
    It's very wasteful though if you plan on executing the tasks repeatedly to create new threads everytime you submit a task. One of the benefits of using a thread executor is not having to construct and start a Thread object everytime you run a task.
    Brushfire,

  • How can I make a "property node" for a VI?

    Hello!
    If I add a boolean button on the FP then I am able to make a property node for that button in the Block Diagram. But how can I make a property node for a VI? I have several VI:s an that together is one program. What I need to do is to verify what kind of VI some of my VI:s is. I need to verify if it is .exe or .vi-file, and if it is .exe then I want to disable run, abort, run continuously bottons otherwise not. I have hard that this is possible to do programmaticaly but I can´t figure out how. I am aware that I could do that manually in the File->vi properties->customize->windows appearance but theese choises makes it last forever.
    I want to be able to stop and run and everything if it is a .vi file, but if it is .exe-file then all those buttons should be disabled.
    Anyone have an example on this?
    In an other message at this Forum I read "You can use the `Front Panel Window. Allow Runtime PopUp`" property to disable run-time shortcuts menues programmaticaly, but still I dont know how to create this property node.
    /Amir

    You really shouldn't open a new thread. If you don't understand something, ask and we will explain it.
    Like I said in the other thread, you can check if you are running in LV or an EXE by using the Application>>Kind property. To get it, place a property node (from the Application Control palette) on the diagram, click it and find the property.
    To set the properties for the VI, place another property node, right click it and select Select Class>>VI Server>>VI. You should have the properties you want under Front Panel Window.
    To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf). I believe chapter 17 of the user manual explains about programmatic control of VIs.
    Try to take over the world!

  • Nokia C3 How can I make sure it only connects thro...

    Ive just got this phone for my daughter on Vodaphone contract, I am really worried however that it is going to randomly connect itself to the internet like my old Nokia 5800 used to! How can I make sure it doesn't, I don't want it to end up costing me a fortune. Many thanks

    Only the website (server or domain) that sets a cookie can read that cookie, but there can be an iframe embedded with a different domain that sets so called third-party cookies.
    You can disable third-party cookies.
    *https://support.mozilla.org/kb/Disabling+third+party+cookies

  • How can I make my Apple TV more reliable? It takes a day to download a HD movie on a T1 to play later, but when I try to play the movies, Apple TV can't, and says try again later. Doesn't the day download time put the HD movie on the Apple TV device?

    How can I make my Apple TV work? I downloaded two movies, to play later, on April 4, 2014. I tried to watch them this evening only to get a message they are not available and to try later. How long can it take Apple to download the movies? I encourage anyone thinking about buying an Apple TV to get a different media player that is reliable. Apple TV is not worth the money, nor the time it takes to download movies, nor the effort trying to get your money back when Apple TV fails,and it failsl oftern.. Apple never seems to have a problem charging for the movies, but it frequently has a provlem delivering what people pay for.

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router.
    Reset the Apple TV (Settings > General > Reset > Reset all settings)
    Restore the Apple TV (Settings > General > Reset > Restore)

  • How can I make (automatic) accounts for users of my adobe muse site?

    Adobe, google, facebook and more site haves accounts for his users, but how can I make a system with accounts for users of my adobe muse site?

    Hi,
    Try some suggestion given in this thread
    http://forums.adobe.com/message/5362643#5362643

  • I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    Yes I know what you mean about it cluttering the thread and for personal emails it is better without the signature. However this relates to sending business emails from an iPhone so I need the signature present on every email.
    I can't find anything in Settings so I was hoping someone may have some knowledge/information/experience regarding this problem.

  • How can I make OSX index a network share for spotlight?

    How can I make OSX index a network share for spotlight?
    I am using a QNAP NAS with SMB network shares, which I mount with OS X Mavericks. They are not searchable, as far as I know because of the indexing of network share is by default not activated.
    To force the OS to index them I activated this via mdutils. But this is no solutions. This makes spotlight to index the share once. But I want spotlight to index it always and keep it up to date. I have a huge amount of documents & fotographs, which is very difficult to manage without being searchable.
    Unfortunately the only solution I found in the www was the mdutils-way, which seems not to work, maybe only works not for me.
    I would appreciate any assistance,
    Thank you,
    Stefan

    My thanks to everyone who has contributed to solving this problem here.
    It appears that there still is NOT a good, reliable solution.  Please correct me if I'm wrong.
    I did find this on http://jonathansblog.co.uk/how-to-enable-spotlight-indexing-on-a-network-drive:
    ===================================
    To enable spotlight indexing on a network drive:
    # mdutil /Volumes/name -i on
    To disable the indexing of a connected network drive:
    # mdutil /Volumes/name -i off
    To check the status of indexing on a connected network drive:
    # mdutil /Volumes/name -s
    ===================================
    And, I found this on the Synology NAS forums:
    cd /Volumes
    mdutil shareName -i on
    mdimport -Vp ./shareName
    where shareName = name of your share
    I have used the mdutil /Volumes/name -i on, and it seems to work.
    But, if I understand it correctly, it is a one-time indexing -- the index is NOT keep up-to-date with changes.
    So, how can we keep the index up-to-date?
    My thought was to schedule a Terminal file to execute each night with the mdutil code.
    Would this work?  If so, how would you setup a scheduled run?
    Would it have to be done on each Mac that accesses the Share?

Maybe you are looking for

  • Problem in creating 1 image using differnt images

    Dear Fellows I want to create an image by using different images in byte array format. Images may be transparent or normal images. I want final result in byte array. I am using the following technique which is working fine but the problem with this t

  • Add buddy does not appear on the list

    I have a grandson in Iraq. On occasion we get to iChat with him. Why doesn't his name come up on iChat AIM Buddy list when I "Add Buddy" shouldn't the added buddy appear on the list dimmed if offline? This is the only one I have had trouble with. He

  • ABAP development namespace prefix and XI naming

    Hi, while going to establish company wide SAP XI naming conventions the question arised, if there should be any relationship between naming for XI design and configuration objects and the so called "reserved development namespace prefix" known from A

  • How to convert databases into schemas

    Hi i have got 3 small size databases P1, P2 and P3 on 3 different servers. I have got another database SUPER in a different server. Now I want the 3 databases to incorporated into SUPER as schemas. Thus after transfer, SUPER will have 3 additional sc

  • Conky upgrade - missing dep.

    Hi. After upgrading to new conky (1.4.4-1) it refuses to run. The problem is missing dep. - libxdamage. The previous conky worked just fine, so either maintainer forgot about adding the dep. or commpiled the conky differently or sth. Just wanted to t