Posting and inserting at the same time

How do I post the values into a database and at the same time
get displayed on the next page using the post method. At the moment
the values just get inserted into the database, but do not get
displayed on the next page, what is the code behind doing this?
Thanks

>Opps, hang on. I'm trying to acheive your second option.
>Show the form variables on the next page as well as
inserting into the database.
First off, I don't do php so I won't be able to help with
script syntax, but I can give you an overview of the program flow.
Now I will assume that you have 2 pages; one that contains
the form and another that has the form processing script. You could
actually have a single form that self posts, but I'm guessing that
you are not doing that.
When you submit the form, the form fields get posted to the
php page that inserts them into the database. I don't know the php
syntax to retrieve the posted form elements, but I assume you do
since you already must be doing this to get your insert working.
Once the insert routine on the page has completed, you write
out html to the page that includes the form field values. If you
want, you can just copy the form from the previous page to use as
the basis for the display page. Just insert the form contents with
the php variables holding the posted field values.
If you're still not clear, it might be helpful to provide a
url so we can see exactly what you are trying to accomplish.

Similar Messages

  • Form POST and GET at the same time?

    I am trying to add an entry to a database so the form has to
    be set to POST.
    But I would also like to have the code from the form added to
    the URL so I can use this in the next page, but I would need to
    have a GET action in the form for this...
    How can I do both at once?
    I have done a work around by adding a time stamp on the new
    entry, then the next page just finds the most recent addition - it
    works but its a bit clunky.
    Any better alternatives?

    Thank you for all your efforts, but the problem for me is
    that there are so many possibilities of what to do I would never be
    able to get it right. Its like being given the ingredients for a
    soufflé but not the method. It would take a heck of a lot of
    guesses to find something that was like a soufflé.
    Below is the PHP for the page, I assume you mean to put the
    < mysql_insert_id() > somewhere amongst the part where it
    says this:
    $insertGoTo = "AdminProductNewCheck.php";
    if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
    But I still have no idea EXACLY where to put it. Nor how to
    actually insert it, as the script you have sent refers to "kossu"
    ???? and printf ???? is this the same as echo?
    I am beginning to think there is nothing wrong with how it is
    set up now!
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
    $editFormAction .= "?" .
    htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) &&
    ($_POST["MM_insert"] == "updateForm")) {
    $insertSQL = sprintf("INSERT INTO products (`Department`,
    `Section`, `Show`, `Code`, `ShowOrder`, `Name`, `Description`,
    `Dimensions1`, `Dimensions2`, `Dimensions3`, `Dimensions4`,
    `Dimensions5`, `Dimensions6`, `Price`, `Note`) VALUES (%s, %s, %s,
    %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
    GetSQLValueString($_POST['Department'], "text"),
    GetSQLValueString($_POST['Section'], "text"),
    GetSQLValueString($_POST['Show'], "int"),
    GetSQLValueString($_POST['Code'], "text"),
    GetSQLValueString($_POST['ShowOrder'], "int"),
    GetSQLValueString($_POST['Name'], "text"),
    GetSQLValueString($_POST['Description'], "text"),
    GetSQLValueString($_POST['Dimensions1'], "text"),
    GetSQLValueString($_POST['Dimensions2'], "text"),
    GetSQLValueString($_POST['Dimensions3'], "text"),
    GetSQLValueString($_POST['Dimensions4'], "text"),
    GetSQLValueString($_POST['Dimensions5'], "text"),
    GetSQLValueString($_POST['Dimensions6'], "text"),
    GetSQLValueString($_POST['Price'], "double"),
    GetSQLValueString($_POST['Note'], "text"));
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $Result1 = mysql_query($insertSQL, $chilstone_connection) or
    die(mysql_error());
    $insertGoTo = "AdminProductNewCheck.php";
    if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
    header(sprintf("Location: %s", $insertGoTo));
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $colname_ProductCode_RS = "-1";
    if (isset($_GET['Code'])) {
    $colname_ProductCode_RS = $_GET['Code'];
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $query_ProductCode_RS = sprintf("SELECT * FROM products WHERE
    Code = %s", GetSQLValueString($colname_ProductCode_RS, "text"));
    $ProductCode_RS = mysql_query($query_ProductCode_RS,
    $chilstone_connection) or die(mysql_error());
    $row_ProductCode_RS = mysql_fetch_assoc($ProductCode_RS);
    $totalRows_ProductCode_RS = mysql_num_rows($ProductCode_RS);
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $query_SectionHeadings_Recordset = "SELECT * FROM sections";
    $SectionHeadings_Recordset =
    mysql_query($query_SectionHeadings_Recordset,
    $chilstone_connection) or die(mysql_error());
    $row_SectionHeadings_Recordset =
    mysql_fetch_assoc($SectionHeadings_Recordset);
    $totalRows_SectionHeadings_Recordset =
    mysql_num_rows($SectionHeadings_Recordset);
    $currentPage = $_SERVER["PHP_SELF"];
    $queryString_ProductCode_RS = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
    $params = explode("&", $_SERVER['QUERY_STRING']);
    $newParams = array();
    foreach ($params as $param) {
    if (stristr($param, "pageNum_ProductCode_RS") == false
    stristr($param, "totalRows_ProductCode_RS") == false) {
    array_push($newParams, $param);
    if (count($newParams) != 0) {
    $queryString_ProductCode_RS = "&" .
    htmlentities(implode("&", $newParams));
    $queryString_ProductCode_RS =
    sprintf("&totalRows_ProductCode_RS=%d%s",
    $totalRows_ProductCode_RS, $queryString_ProductCode_RS);
    ?>
    Text
    Text

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • How to post aquisition and depriciation at the same time

    Hi Gurus,
    Could you please let me know how to post aquistion and depriciation at the same time.

    Hi
    What do you mean by postin at a time, is it uploading the balances to SAP
    if not there is no question of posting at a time
    Thanks
    Kameshwar Rao

  • How do i start video and audio at the same time in ios

    How do i start video and audio at the same time in ios?
    I have tried a lot of different ways but i cant figure it out?
    I can get the sound and animation (timeline) to start playing.
    There is no problem to start the video and the animation at the same time.
    But i cant get both the video and the audio to start playing when i press a button.
    It works great in OSX and on windows?
    Here is an example:
    // insert code for mouse click here
    // Play an audio track
    sym.$("_1")[0].play();
    // Play a video track
    sym.$("host")[0].play();
    // Play the timeline at a label or specific time. For example:
    // sym.play(500); or sym.play("myLabel");
    sym.play("marker1");

    If the game has sound in it (and possibly even if it doesn't) it may be overriding the Music app and causing it to stop playing - in which case there is nothing that you can do about it.

  • Problem with audio of my notebook. Audio works through pc speakers and earphones at the same time

    Hi all, 
    thanks in advance for your advices.
    I have a problem with my notebook (HP pavilion g6 2305 sl).
    The problem is that when I connect my earphones the audio of my pc don't stop, hence I can hear (music, film, ...) both by earphones and speakers at the same time.
    I tried to install again the latest driver audio, but nothing was changed.
    I tried to use another pair of earphones, but nothing.
    I have noted that if I connect the Jack at my pc, but not until the end, the audio stops from the speakers and goes through the earphones, but only if the jack is not completly inserted in the notebook.
    I read a lot of forum on the web but I'm not able to find a solution for my problem.
    (ps. the problem comes out suddenly, without any signal. I don't have installed any update or new software before the problem's start)

    Right click on speaker icon, lower right screen.
    Choose playback devices.
    Select "speakers and headphones" as your default.
    Disable "communications headphones".

  • Error Running Oracle Apps and Discoverer at the same time

    Hello,
    We are having trouble running Oracle Apps and Discoverer at the same time on certain user's machines. Here are the specifics:
    The user opens Oracle Apps in Internet Explorer. The user then opens Discoverer in another Internet Explorer windows and receives the following error: Runtime Error! Program: C:\Program Files\Internet Explorer\iexplore.exe abnormal program termination
    As a work around, I installed Firefox on those user's machines. These users run Oracle Apps in Internet Explorer and run Discoverer in FireFox. This has solved the problem in 99% of the cases. However, there is one user who is having FireFox using Discoverer freeze when running Oracle Apps in Internet Explorer.
    Can anyone provide any insight on how I can solve these conflict issues so users can run Oracle Apps and Discoverer at the same time?
    Thanks in advance for your help,
    Carlos

    Hi Michael,
    I agree with you completely. It is reccommended to run 10g on a separate physical server unless you have sufficient resources to run on the same server (which even most large clients do not) Even then, I would recommend a separate server.
    I should have put my comment in context :-)
    a.) I was only stating that it was possible
    and
    b.) whether 10g is installed on the same physical server or separate should not affect the client browser crashing issue that was posted.
    I do have an install with EBS11i and Discoverer 10g on the same physical server and it works fine (this is sandbox/ TEST). Most of my large customers have 10g installed on multiple physical servers due to load balancing (capacity).
    I do work for Oracle. I try to help out on the forum when I can, but it is hit or miss :-(
    I would be glad to discuss anything privately.
    As for the issue at hand, I can reproduce the problem and here is what is occuring.
    I have EBS 11i configured with Jiniator 1.3.24
    I have Discoverer 10g configured with Sun Java plugin 1.4.2_06
    1. If you launch EBS 11i apps and a form with MS IE, then the browser launches the form using Jiniator JRE 1.3.xx (whatever you have configured in AutoConfig for EBS11i)
    2. Next, the user navigates to EBS 11i SSWA and launches a Discoverer workbook.
    What occurs is a child IEXPLORE.exe process is spawned from the parent IEXPLORE.exe process and Discoveer Plus is launched. The parent iexplore.exe process will be attached to the Jiniator JVM. Now if Discoverer is configured with
    a.) Sun Java Plugin or
    b.)a version of Jinitiator that is a different version from what EBS 11i is configured with
    then you may get this conflict.
    It really is an MS IE/JRE conflict with Jinitiator and Sun Java Plugi and the way the broswers attaches to the JVM (IMHO) as this behaviour could be reproduced with other non-oracle java applets.
    You can workaround the situation by:
    a. configure EBS11i and Discoverer to use the same version of Jiniator 1.3.xx
    b. educate the users to open one MS IE browser to connect to EBS11i and then open a second MS IE browser to login to EBS11i SSWA or Discoverer 10g Plus directly to launch workbooks. They need to to this by clicking on the icon and not using File >> New browser. Clicking on the icon will spawn a new parent iexplore.exe process that can attach to a second/different JVM. File >> New Window will spawan a child of the parent.
    c. As you did use two browser versions. MS IE for EBS11 connection and FireFox for Disocverer 10g connection.
    I would choose optoin b, so that you can use Sun Java Plugin with Discoverer.
    Open to any comments. I hope that helps you workaround the problem. The ideal solution is to have EBS 11i use/cerified with the 1.4 or 1.5 JRE. In poking around, I see there is a related post to this on one of Oracle's EBS 11i Product Managers Blog.
    See:
    http://blogs.oracle.com/schan/2006/04/18#a23

  • Can I use Time Capsule and LaCie at the same time?

    Can I use Time Capsule and LaCie at the same time?

    stephaniefromarlington wrote:
    Before I answer your questions, let me first just say thank you so much for your amazing patience and helpfulness.  Whether or not we get to the bottom of this, I am very, very grateful to you. 
    We will get to the bottom of it, and you're quite welcome.  Don't feel you ought to know all this stuff -- none of us were born with it!
    By the way, in answer to your original question, yes, you can use the Time Capsule while backups are running. There's no conflict at all.
    1)  Estimated size of full backup:  205.94 GB
    2)  My LaCie has available:  11.04 GB of 359.95 GB
    That's part of the problem right there; 360 GB is a bit small to back up 206 GB.  Ordinarily, a Time Machine drive should be 2-3 times the size of the data it's backing-up, so Time Machine can keep a reasonable "depth" of old backups for you.
    It looks like Time Machine is trying to do a fairly large backup, and there just isn't enough room for it.
    But something doesn't quite add up.  Time Machine should have deleted all but your most recent backup, trying to make room for the new one.  But that would mean there should only be a bit less than 206 GB on the disk, not 360.
    A clue may be lurking in your logs.  Use the widget in #1 of Time Machine - Troubleshooting to display the backup messages from your logs.  Locate the backup in question, then copy and post all the messages here.

  • Wi-fi connection on HP Deskjet 2540 and network at the same time?

    Hello
    Please can you tell me how to keep my connection to my wi-fi printer whilst connected to my Virgin Media Broadband? Every time I want to print I have to switch off the Virgin network connection and connect to the HP Deskjet Wi-fi, and then switch it back again to Virgin to browse or send emails.
    Thank you for your help
    AC33 

    Hey there @AC33 Welcome back
    I understand you are looking to install your printer on your network, so you can use the internet and printer at the same time. By the sounds of it, you may be connecting the printer currently, using the Wireless Direct feature, which will only allow you to connect to the printer or the network at a time. Basically, the printer is acting like a network.
    Here is a link for you to check out. It will help you install the printer on your network:
    Setting Up the Printer for a Wireless network for the HP Deskjet 2540 and HP Deskjet Ink Advantage 2...
    I hope this helps you, let me know the outcome
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Recording vocals and guitar at the same time, using the Alesis IO dock!

    Hi there!
    I have an Ipad 2 with the newest OS installed etc. And I rea the other posts in here.
    I bought an IO dock from Alesis the other day and was full of exspectations, but I got a bit disappointed -> Garageband! When I bought the Ipad dock I exspected that I would be able to record (or just play and hear the inputsound from two devices) at the same time in my headphones! But I wasn't... Now I'm wondering if this is going to be fixed in an update or not? I think it would be a shame if this issue isnt adressed, due to the huge abilities the Ipad/garageband/Ipad docks withhold.
    So anyone know anything? I went to my musicstore and spent about an hour or so with the tech dude there trying dfferent setups, but unfortunatly without luck! Just to clarify that I didt just plugged in my guitar and got mad that it wasnt apple intuative!
    Hope someone can help :)

    I am wondering if I can record audio and midi at the
    same time in Logic 7 Express. I am running my guitar
    thrugh a Roland GR 33, and a line out and using the
    GR 33 to trigger sounds in the Logic's synth section
    but cant seem to record all three tracks at once. If
    any one knows how let me know. Oh and I am running
    the GR Synth and Guitar into the Prosonus Fire Fox
    and have the GR 33 out midi to the Fire Box as well.
    So I guss the question is how do I sent up two audo
    tracks and one midi track to record in real time.
    Thanks Victor
    Try arming the audio tracks, select one of the tracks, then while holding down the shift key, select the midi track you want to record, arming the "r" on the midi track. Press "record".....
    HL

  • Since upgrading to Mavericks, I can't run Mail and Safari at the same time.

    Since upgrading to Mavericks, I can't run Mail and Safari at the same time.
    Either Mail will crash or the iMac will run so slowly as to be unusable. With both running, the HDD spins constantly at a high rate of speed.

    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.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Hi Poindexter65,
    There is no setup involved to ePrint from a computer.  So, the answer is yes.  All you need to do in order to ePrint, is send an email (attaching whatever you wish to print) to the printer's email address.
    Here is a link with more information about ePrint and specifications for attachment types, file sizes, etc.:  https://h30495.www3.hp.com/help#eprint
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided.
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • WiFi x551 printnig from iphone and PC At the same time

    Hello all!
    HP Officejet Pro X551dw Printer (CV037A)
    if i connect printer to WIFI - 192.168.60.0 255.255.255.0 network
    and iphone connect this is wifi too
    then i connect to LAN my PC - 192.168.61.0 255.255.255.0 network
    Printer and PC can reached each other ( ping work \ routing )
    i can connect printer as network printer for my PC?
    Need printing FROM PC and IPHONE AT THE SAME TIME!!!!
    how i can achieve this

    Hi @Liks,
    To get your issue more exposure I would suggest posting it in the commercial forums since the Officejet Pro X551 Printer is a commercial product. You can do this at http://h30499.www3.hp.com/t5/Multifunction-and-All​-in-One/bd-p/bsc-420#.VCWbZoXEb8c.
    The support page for your product may be helpful in the meantime: http://ow.ly/BZrCb
    I hope this helps!
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Blinking green light and then orange and green at the same time...

    I have an Ipod shuffle that was working good before and I don't know why I let it one month and after when I connected it to the computer Windows and Itunes didn't recognized it. It seems to function good because I can listen the songs that were before in the Ipod, and when I don't have battery I connect it to the computer and it seems to charge because after I have battery. The only thing is that when I connect it I don't listen that windows recognize it (like when I connect my USB key) and Itunes neither. Moreover there is a green light blinking two seconds and after green and orange at the same time (little lights) during one second. I can't restore it because it doesn't appear in Itunes.
    Do you know what can do that???
    Thx

    Faites ceci:
    - Retirez le Shuffle du socle
    - Cliquez sur Démarrer, puis Bouton droit sur "Poste de Travail" et prenez "Gérer" puis double-cliquez sur "Services et applications", puis double-cliquez sur "Services"
    -Localisez "Ipod Service", double-cliquez dessus, et cliquez sur le gros bouton "Arrêter" (Statut de Service Smile
    -Rebranchez votre ipod, sur le socle.
    -Sous Windows, effacez l'intégralité de son contenu. Ou alors faites un bouton droit sur l'icone du "disque" puis formattez.
    -Lancez iTunes
    -Ce dernier va détecter l'ipod et va vous demander son nom, avec une case en dessous "Remplir automatiquement"
    -Laissez cette case validée !
    -Pendant que l'ipod se remplit (il convient d'avoir des morceaux dans la bibliothèque iTunes) allez dans longlet "Réglages" de l'ipod, sous iTunes
    -Cochez la case "activez l'utilisation comme disque dur"
    -Cliquez sur appliquer pour valider cette option !
    Vous pouvez maintenant éjecter votre ipod (ne le retirez pas du socle, cliquez sur le bouton approprié sous itunes !) et voilà, tout fonctionnera à merveille !

  • My Ipad mini does not see my printer. my wife's ipad2 does. We both use IOS8 and upgraded at the same time. How can I remedy this?

    My Ipad mini does not see my printer. my wife's ipad2 does. We both use IOS8 and upgraded at the same time. How can I remedy this?

    OK great info!
    I found 2 possible ethernet to USB adapters:
    By "Plugable":  USB 2.0 to ethernet LAN wired network adapter - seems this will work, but I'll contact Plugable.
    2. Apple USB Ethernet Adapter
    Easily connect your MacBook Air computer to an Ethernet network with the Apple USB Ethernet Adapter. Small and light, it connects to the USB 2.0 port of your MacBook Air and provides an RJ-45 connector that supports 10/100BASE-T performance.  BUT NOT SURE IF THIS WILL WORK ON ANYTHING BUT a MacBook Air…
    One person commented: 
    This little gem used to be the device of choice for adding a second Ethernet interface to a Mac Mini Server and I'd been using one that way for about a year. After doing a software update to 10.6.6 it stopped working. Forewarned is forearmed – it appears that Apple is finally enforcing the MacBook Air system requirement.
    Thanks for any additional comments.
    Best regards,
    Steve Schulte
    Sunday 6 January 2013

Maybe you are looking for

  • Binding node value from public var

    Hi, I am developing an interface between an axis web service and flex. I must create a custom soap message, so I have define: CDATA [Bindable] public var name:String = "PRUEBAS";     <mx:request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

  • Extracting JES 2005Q04, Or JES2005Q01 giving error

    hi downloaded JES 2005Q04 part-1 and part-2 from sun's website when extracted it gives(WINRAR) that some files are missing. These happens for both release, Please share me some links from where I can download either of these release

  • Cannot Access NWA using Internet Explorer 9.0

    If you are having trouble accessing the nwa and are using IE9,  it may be due to the browser.  Set the browser mode to compatibility mode. The error I received was:   Error: "Application error occurred during the request processing."   Troubleshootin

  • With login attempt wrong password -- User is not active

    All, During login on portal 6.2 with a wrong password we got a message that the user is not active. However iplanet-am-user-login-status is definitely "Active". Any suggestion how we can modify that to get the right notice. Regards, Arnout

  • Credit Memo without SD

    Hi Guru: We have A/R only and we want to introduce an approval process for all the credit memo greater than 7500$. My question is, is it possible to create a credit memo request without SD? If not, how to setup the workflow without credit memo reques