Allow user to take survey multiple times, but do not allow the same response

I have a requirement to allow users to take a survey multiple times, however, the answers to the survey can not be the same.
So when a user takes the survey the first time they can take a second and a third but not have the same response.
Using SharePoint 2007
Thanks in advance

As you denied yourself the Administration rights you cannot get it back in this account of course. Look to the right on this page and check the threads in "More like this".

Similar Messages

  • Dear sir/madame,I have tried to use the inbrowser editing capability for Adobe Muse to login to my CMS. To login I have use the exact same FTP details I have used to upload my website, I even checked the page url multiple times but I keep getting the same

    Dear sir/madame,I have tried to use the inbrowser editing capability for Adobe Muse to login to my CMS. To login I have use the exact same FTP details I have used to upload my website, I even checked the page url multiple times but I keep getting the same error (the username and password are invalid for your FTP server. Please check them and try again). The hosting website (Yourhosting.nl) only has this one FTP user, which I cannot expand to more users. Can you please tell me if I am doing something wrong? The url to this page is http://e-divecollege.be/index.html or www.e-divecollege.be

    Dear sir/madame,I have tried to use the inbrowser editing capability for Adobe Muse to login to my CMS. To login I have use the exact same FTP details I have used to upload my website, I even checked the page url multiple times but I keep getting the same error (the username and password are invalid for your FTP server. Please check them and try again). The hosting website (Yourhosting.nl) only has this one FTP user, which I cannot expand to more users. Can you please tell me if I am doing something wrong? The url to this page is http://e-divecollege.be/index.html or www.e-divecollege.be

  • Hi..I purchased a Pantum p2000 printer and I cannot use it. It gives me an error ( Stopped, Filter failure) I tried to re-install the driver several times but I still get the same message. I'm using OS X Yosemite 10.10.1

    Hi..I purchased a Pantum p2000 printer and I cannot use it. It gives me an error ( Stopped, Filter failure) I tried to re-install the driver several times but I still get the same message. I'm using OS X Yosemite 10.10.1

    If you haven't done so already, try resetting the printing system.
    OS X Mavericks: Reset the printing system  also Yosemite

  • Macbook pro beeps multiple times but will not start. Unit is two years old.

    two year old MacBook Pro won't start. Beeps multiple times and black screen.

    On startup, are you hearing three beeps, then a pause, and repeating three beeps?
    If so, that indicates a problem with loose or bad RAM sticks.

  • SMC Firmware Update 1.7 "Installed Successfully" Multiple Times, But Still Not Installed

    MacBook Pro, 15", Early 2011
    OS X 10.8.2
    Software Update keeps telling me that I have the MacBook Pro SMC Firmware Update 1.7 available for my machine.  I have run this update several times, both through Software Update and through directly downloading it from http://support.apple.com/kb/HT1237
    Through either method, running the update yields the same result:  it runs, reports that the update is installed, restarts the machine, and all seems good.  However, if I run Software Update again or check the SMC version, I still have the old SMC version 1.69f3 and the same update is still available in Software Update.
    This thread -- https://discussions.apple.com/message/20649193 -- suggests running Disk Utility to find errors.  I have already run Disk Utility to check for errors (multiple times) and no errors have been reported.
    This thread -- https://discussions.apple.com/message/21320561 -- suggested running a clean installation of the OS.  The other thread's solution ultimately also was a clean installation of the OS.  Having just done that barely a month ago on this machine, I really would prefer to not do that again so soon!
    Has anyone else run into this issue and found a (hopefully less drastic) solution?  Thanks.

    I guess I just fixed it.  Do you bootcamp to windows?  Once I changed my startup disk from the windows to the mac partition, rebooted, then dd the system update, the firmware update installed and took hold. 

  • Multiple threads but they are using the same thread ID

    I'm a newbie in Java programming. I have the following codes, please take a look and tell me what wrong with my codes: server side written in Java, client side written in C. Please help me out, thanks for your time.
    Here is my problem: why my server program assigns the same thread ID for both threads???
    .Server side: start server program
    .Client side: set auto startup in /etc/rc.local file in a different machine, so whenever this machine boots up, the client program will start automatically.
    ==> here is the result with 2 clients, why they always come up the same thread ID ????????
    Waiting for client ...
    Server thread 1024 running
    Waiting for client ...
    Server thread 1024 running
    But if I do like this, they all work fine:
    .Server side: start server program
    .Client side: telnet or ssh to each machine, start the client program
    ==> here is the result:
    Waiting for client ...
    Server thread 1024 running
    Waiting for client ...
    Server thread 1025 running
    server.java file:
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import java.util.Hashtable;
    import java.util.Enumeration;
    import java.util.regex.Pattern;
    import java.util.Date;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class Server extends Frame implements Runnable
    private ServerThread clients[] = new ServerThread[50];
    private ServerSocket server = null;
    private Thread thread = null;
    private int clientCount = 0;
    //some variables over here
    public Server(int port)
    //GUI stuffs here
    //network stuff
    try
    System.out.println("Binding to port " + port + ", please wait ...");
    server = new ServerSocket(port);
    System.out.println("Server started: " + server);
    start();
    catch(IOException ioe)
    System.out.println("Can not bind to port " + port + ": " + ioe.getMessage());
    public boolean action(Event e, Object arg)
    //do something
    return true;
    public synchronized void handle(int ID, String input)
    //do something
    public synchronized void remove(int ID)
    int pos = findClient(ID);
    if (pos >= 0)
    //remove a client
    ServerThread toTerminate = clients[pos];
    System.out.println("Removing client thread " + ID + " at " + pos);
    if (pos < clientCount-1)
    for (int i = pos+1; i < clientCount; i++)
    clients[i-1] = clients;
    clientCount--;
    try
    {  toTerminate.close(); }
    catch(IOException ioe)
    {  System.out.println("Error closing thread: " + ioe); }
    toTerminate.stop();
    private void addThread(Socket socket)
    if (clientCount < clients.length)
    clients[clientCount] = new ServerThread(this, socket);
    try
    clients[clientCount].open();
    clients[clientCount].start();
    clientCount++;
    catch(IOException ioe)
    System.out.println("Error opening thread: " + ioe);
    else
    System.out.println("Client refused: maximum " + clients.length + " reached.");
    public void run()
    while (thread != null)
    try
    {       System.out.println("Waiting for a client ...");
    addThread(server.accept());
    catch(IOException ioe)
    System.out.println("Server accept error: " + ioe); stop();
    public void start()
    if(thread == null)
    thread = new Thread(this);
    thread.start();
    public void stop()
    if(thread != null)
    thread.stop();
    thread = null;
    private int findClient(int ID)
    for (int i = 0; i < clientCount; i++)
    if (clients[i].getID() == ID)
    return i;
    return -1;
    public static void main(String args[])
    Frame server = new Server(1500);
    server.setSize(650,400);
    server.setLocation(100,100);
    server.setVisible(true);
    ServerThread.java file
    import java.net.*;
    import java.io.*;
    import java.lang.*;
    public class ServerThread extends Thread
    private Server server = null;
    private Socket socket = null;
    private int ID = -1;
    InputStreamReader objInStreamReader = null;
    BufferedReader objInBuffer = null;
    PrintWriter objOutStream = null;
    public ServerThread(Server server, Socket socket)
    super();
    server = _server;
    socket = _socket;
    ID = socket.getPort();
    public void send(String msg)
    objOutStream.write(msg);
    objOutStream.flush();
    public int getID()
    return ID;
    public void run()
    System.out.println("Server thread " + ID + " running");
    while(true)
    try{
    server.handle(ID,objInBuffer.readLine());
    catch(IOException ioe)
    System.out.println(ID + "Error reading: " + ioe.getMessage());
    //remove a thread ID
    server.remove(ID);
    stop();
    public void open() throws IOException
    //---Set up streams---
    objInStreamReader = new InputStreamReader(socket.getInputStream());
    objInBuffer = new BufferedReader(objInStreamReader);
    objOutStream = new PrintWriter(socket.getOutputStream(), true);
    public void close() throws IOException
    if(socket != null) socket.close();
    if(objInStreamReader != null) objInStreamReader.close();
    if(objOutStream !=null) objOutStream.close();
    if(objInBuffer !=null) objInBuffer.close();
    And client.c file
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <netdb.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h> /* close */
    #include <time.h>
    #define SERVER_PORT 1500
    #define MAX_MSG 100
    //global variables
    long lines = 0;
    int sd = 0;
    char command[100];
    time_t t1,t2;
    double timetest = 0.00;
    int main (int argc, char *argv[])
    int rc, i = 0, j = 0;
    struct sockaddr_in localAddr, servAddr;
    struct hostent *h;
    char buf[100];
    FILE *fp;
    h = gethostbyname(argv[1]);
    if(h==NULL) {
    printf("unknown host '%s'\n",argv[1]);
    exit(1);
    servAddr.sin_family = h->h_addrtype;
    memcpy((char *) &servAddr.sin_addr.s_addr, h->h_addr_list[0], h->h_length);
    servAddr.sin_port = htons(SERVER_PORT);
    /* create socket */
    sd = socket(AF_INET, SOCK_STREAM, 0);
    if(sd<0) {
    perror("cannot open socket ");
    exit(1);
    /* bind any port number */
    localAddr.sin_family = AF_INET;
    localAddr.sin_addr.s_addr = htonl(INADDR_ANY);
    localAddr.sin_port = htons(0);
    rc = bind(sd, (struct sockaddr *) &localAddr, sizeof(localAddr));
    if(rc<0) {
    printf("%s: cannot bind port TCP %u\n",argv[1],SERVER_PORT);
    perror("error ");
    exit(1);
    /* connect to server */
    rc = connect(sd, (struct sockaddr *) &servAddr, sizeof(servAddr));
    if(rc<0) {
    perror("cannot connect ");
    exit(1);
    //send register message
    rc = send(sd, "register\n", strlen("register\n"), 0);
    //if can't send
    if(rc < 0)
    close(sd);
    exit(1);
    //wait here until get the flag from server
    while(1)
    buf[0] = '\0';
    rc = recv(sd,buf,MAX_MSG-1,0);
    if(rc < 0)
    perror("receive error\n");
    close(sd);
    exit(1);
    buf[rc] = '\0';
    if(strcmp(buf,"autoplay")==0)
    //do something here
    else if(strcmp(buf,"exit")==0)
    printf("exiting now ....\n");
    close(sd);
    exit(1);
    return 0;

    Yes......I do so all the time.

  • Time machine takes very long time and does not finish the backup

    Hi,
    Time machine is unable to backup my 2014 Mackbook Air 128 GB Drive anymore.
    I have tried numerously to initiate a backup but it could only backup a very small volume, less than 1KB, then stall for hours without any progress.
    I tries to repair my volume, using the Disk Utility, but it still does not backup, except for the 1K progress.
    I have noticed that "Spot Light" indexing is also taking forever.  It has been indexing for days without any pogress.
    What is going on.
    What should I do to fix it.
    My latest successful backup was on Jul 25.
    Please help.
    Thanks.
    Tareq

    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the word "Starting" (without the quotes.) You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard."
    Each message in the log begins with the date and time when it was entered. Note the timestamp of the last "Starting" message that corresponds to the beginning of an an abnormal backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showing, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ If all you see are messages that contain the word "Starting," you didn't clear the text field.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. Don't post more than is requested.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.

  • AIR+JS Application in multiple clients, but all must have the same data

    Grettings.
    After googling, reading docs, and everything i cant find a solution to my problem.
    The thing is that i must create a adobe air app that must work in 4 clients. All the data from all the clients must be available to all the of them. If Number One makes a change, Number 3 must see that change.
    Of course, this could be done with a client-server model, but, the problem is, that if client 3 loose connection with the server, i must be possible for him to keep working locally and then when the connection with the server is restored, send all the data for replication with others clients.
    I don't know which aproach will be better for this problem, so any ideas or help will be appreciated.
    Thanks in advance.

    You'll need to use something like BlazeDS to do the polling and pushing
    of data and make use of SQLite to persist data on the client's user 
    computer when someone goes off line and then synchronize the data when 
    the user goes on line again.
    Sincerely,
    Michael
    El 20/05/2009, a las 9:17, alexbariv <[email protected]> escribió:
    >
    Grettings.
    >
    After googling, reading docs, and everything i cant find a solution 
    to my problem.
    >
    The thing is that i must create a adobe air app that must work in 4 
    clients. All the data from all the clients must be available to all 
    the of them. If Number One makes a change, Number 3 must see that 
    change.
    >
    Of course, this could be done with a client-server model, but, the 
    problem is, that if client 3 loose connection with the server, i 
    must be possible for him to keep working locally and then when the 
    connection with the server is restored, send all the data for 
    replication with others clients.
    >
    I don't know which aproach will be better for this problem, so any 
    ideas or help will be appreciated.
    >
    Thanks in advance.
    >

  • If a form is distributed multiple times does it count as the same form?

    We are considering purchasing Froms Central to handle our post-conference participant questionnaires but have a query regarding the forms. If we use the same form for each of our 12 conferences per year, will this count as one form or 12? 

    If its the same form file being used then its just one form. If you made 12 copies of the form (one for each conference) then it would be 12.

  • My Itunes continues to have an error when trying to open and Windows closes the program. I have uninstalled and re-installed several times but continue to get the same error. HELP?

    Windows shuts down my itunes evrytime I try to open it because of an error. I have unistalled and re-installed several times with the same results. HELP???

    what's the error specifically
    or does it say itunes has encountered a problem and needs to close because if that's the case then try these steps
    -download and install quicktime at the apple website
    or
    http://support.apple.com/kb/TS1717

  • Question being asked multiple times but need to sort the questions into the report

    question needs to be placed 150 times on the form, but needs to be sorted as if it were one question on the report

    Hello seaturtles24
    Check out the article below for repeated requests for authorizations in iTunes.
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/ts1389
    Regards,
    -Norm G.

  • I have tried to install Windows 7 Beta multiple times, but I always get the following error statement while copying temporary files or just as "Setup is starting" is displayed: "Windows Setup experienced an unexpected error. To install Windows, restart t

    Restarting the installation results in the same error message. Any ideas on what's wrong? Here are some details:
    my computer is lenovo g585.
    I am running windows8. It's licence will be closed in one week.
    I have windows7 OS genune.
    While installing this (with sandisk pendrive ) the unexpected error occurs.
    I am using avast antivirus, I have turned off this while installing.
     So any help or suggestions would be greatly appreciated!
    Thanks in advance!

    Is OS already installed on your HDD?
    Check this link : http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/windows-setup-experienced-an-unexpected-error-to/e28d6f6e-7afc-4ad8-ae99-a92f90cf9083
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • My MacBook Pro will receive emails showing the sender, subject and date/time, but will not show the text.  Any ideas? d

    My MacBook Pro will receive emails, yet the text is missing in all of them.  Any ideas?

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox

  • When I go to a signin page of a website the remember passwrd button will not allow me to click on it in Firefox 11, the button pops up but is not active. the same site works fine in chrome. Is there a fix for this?

    am running win 7 64 pro - tried going back to firefox 10 with same results. all the tools options are set to remember passwords

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    It is possible that there is a problem with the files key3.db and signons.sqlite that store the encrypted names and passwords in Firefox.<br />
    Rename the files key3.db and signons.sqlite in the Firefox profile folder.<br />
    You can add .old to the file names (key3.db.old and signons.sqlite.old) or move them to another folder to make it possible to undo the action.<br />
    You need to set a new Master Password after renaming or deleting key3.db and all currently saved passwords are lost.<br />
    If that has worked then you can remove the renamed files that are no longer needed.<br />
    See:
    * "Troubleshooting" in http://kb.mozillazine.org/Password_Manager
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • My Gmail appearance, Theme, is OK on one Desktop using XP, but does not have the same appearance on the Desktop running on Windows 7. The Theme chosen does not install on Windows 7

    If I choose a Theme for the appearance of my Gmail Inbox, using my Dell Inspiron computer running on Windows 7, the new Theme appears on my other computer running on XP, but not on my Dell!
    On my Dell, all the messages in the Inbox are separated by a black line, in fact yjere are many black lines and no colors shown on the Windows 7 Dell. This was not there from the beginning, but came about z week ago.

    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

Maybe you are looking for

  • HT203421 How do I get iphone apps in the mac app store? Also, my apps from my iphone will not sync to my mac. Why is this?

    I've had my iphone 4 for a couple years, but I've recently purchased a new macbook air. For some reason, I do not have the option of syncing my apps from my iphone to itunes. I am currently running ios 6 on my phone, but I don't want to update until

  • How do I combine double accounts after migration from eMac to iMac?

    After using migration assistant I have two accounts, one for my old eMac and one for my new iMac. Both were running Mac OS (10.5.7) Also, the Mailboxes in the old eMac account are not in Mail any longer. Can they be found and restored? Floyd

  • HT4890 how can I remove all photos from my iPhone?

    I am trying to delete all the photos on my iPhone but it deletes only the Camera roll folder but there is some other folders couldnt be deleted as it is not responding to edit. I updated my itunes photo library and reset my iCloud photos but still co

  • Java Error While Running Upgrade Assistant

    Hi, We are in process of upgrading SAP from 4.7 EX 2 to ECC 6.0 in I5/V6R1M0 on AS400.When running the statup of the UA server we are running into error saying that" Unable to start Java shell, reason code 3006". Any Idea what could be the problem. R

  • Widowed Fotter

    I have this master detail report with summary of details. When I let Report to make default layout it creates 3 group frames. First one is for header labels of columns (M_G_ORD_ITEM_HDR) Second one is repeating frame for Items (R_G_ORD_ITEM) And thir