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

Similar Messages

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

  • How to get the sine wave sample of the input and output in the same time?

    I discovered that the samples were acquired did not in the same time in my vi.Could you tell me how to get the sine wave sample of the input and output in the same time?
    Output:9263;
    Input:9201
    Attachments:
    singal requency.vi ‏104 KB

    Hello Yun_Zhu,
    Your VI looks like you started from an example, and you are on the right track. 
    To clarify are you trying to synchronize the input and the output waveforms?  If you you will need to share a time base and a start trigger.  Check out the synchronization examples from LabVIEW
    Anthony F.
    Product Marketing Engineer
    National Instruments
    Attachments:
    HIODAQmxSyncMultiDev.png ‏70 KB

  • 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

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

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

  • 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

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

  • My SB Audigy 2 card can't use headset and musicamplifier at the same time

    Hi, i just bought a SB Audigy 2 [D400] and i have downloaded drivers and programs. I run Windows XP SP2.
    The soundcard works fine but it is very very annoying that i physically have to change the jack in the green=line out jack from headset to musicamplifier when i want to use my musicamplifier and change back the jack in the green=line out from musicamplifier to headset when i just want to use the headset/headphones .
    In the shop they told my that i can connect both amplifier and headset at the same time and then with creative software control whether there is sound in the headset or in the amplifier. But i can't simple get it work.
    I tried to use the green to the amplifier and the headset/speakers in the black (line out 2) and then with creative speaker settings softeware choose headphones but still the ampliefier receive the sound and no sound in the headphones. Why? In fact no matter what configuration i try the headphones doesn't work.
    But if i change the jacks so headset is in the green line out then only headset is working and the amplifier doesn't work no matter i put it in sort=line out 2 jack or orange=line out 3 jack.
    Can somebody here tell me if it is possible or not to connect both headset and external amplifier and control by software which to play? and how?
    please help, thx.
    Michael

    If you can have an ASIO compatible music playing system, then it might be possible to have system like you wish when using Creative Audigy 2 card. Since ASIO bypasses Windows Audio System, you can use both 'drivers' (ASIO - WDM/MME/DS) side by side.
    Say you want to play a game (using headset /w mic) and someone other like to listen music at the same time. With ASIO capable system you can output your music for example to "center L/R (stereo) channels" and same time output sounds from other source (using MME/DS/WDM drivers) to normal output channel (Front L/R). Only thing is, you need to set your speakersystem to 4 or 6 (depending which other channel you're using) (and for better 'balance' to adjust "angle" on THX console. You get the THX console by installing Audigy 2 Zs software).
    Try for example http://img332.imageshack.us/img332/463/djs9mo.jpg[/img] width="406" alt="Image Hosted by ImageShack.us" >
    Another option:
    Say you want to play music through external amplifier and play game online with your headset + microphone (eg. others but you listen the music, you play games)
    --> try free http://img332.imageshack.us/img332/4589/tbp7rz.jpg[/img] width="406" alt="Image Hosted by ImageShack.us" >
    If you use ASIO on BeatPort Player you can select L/R individually from the list(s). Same rules as described earlier.
    = You can play from 2 different sources simultaoneusly (ASIO + WDM/MME/DS) to two different outputs without disturbance. The other (WDM/MME/DS) source is set 'automatically' output to (Audigy) "green" port, and the other (ASIO) to "black" or "orange" port (as set).
    .jtpMessage Edited by jutapa on 09-5-2005 05:30 AM

  • 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

  • Surf and Talk at the same time (AT&T Commercials)

    So I see all these commercials saying AT&T has the fastest 3G network. I also see the commercials about being able to surf and talk at the same time.
    Now I was almost positive that was crap but figured let me test this out again just to be sure. Sure enough, on the Edge network (which might be the issue, might actually work on 3G which is very limited with AT&T it appears), the iPhone won't talk and do surfing at the same time. You get "Cellular data connections are not available during this call" as the message on your screen.
    So is this just an issue with the iPhone specific or is this just bad marketing on AT&T's part?

    This is possible when connected to AT&T's 3G network, which is not available in most rural areas. I do this often.
    http://www.wireless.att.com/coverageviewer/popUp_3g.jsp
    Verizon's 3G network has better coverage, but it is fast as AT&T's EDGE network.

  • [Solved] Sound with ALSA and PulseAudio at the same time?

    Hi, I am using arch linux to play Counter Strike on.
    While it works fine and all, I just don't get any sound in CS because I am using Mangler, which only seems to work with my microphone if I use PulseAudio.
    I hope this is a rather simple issue, basicly, I just want to enable sound in PulseAudio and ALSA at the same time, is this possible?
    Last edited by Paaskehare (2010-08-12 15:39:09)

    I have read that PulseAudio decreases sound quality, and therefore I would not like to use this as a systemwide driver, but rather only where it is needed.
    Please correct me if I am wrong
    Edit:
    Ok, sound quality isn't noticeably worse, so this will do. HOWEVER, while I am in Counter Strike my sound is delayed by ~1 second, and it is therefore useless, any thoughts on that matter?
    Edit again .. Solved this time:
    I set my ALSA plugin in winecfg to "Hardware Acceleration: Emulation" - that seemed to do the trick.
    Last edited by Paaskehare (2010-08-12 15:38:56)

  • Can't recording  Midi  and Audio at the same time

    I'm in GREAT need of help. I can't record midi and audio at the same time. I'm using an M AUDIO project mix I/O. I know this is VERY basic stuff but I can't seem to get it to work.I can record multiple audio at once. ANd I can record midi but not at the same time. PLEASE help . Is there a setting somewhere I need to change ? Thanks
    Tracy

    Hi!
    Enable all audio tracks (R) you wish to record. Then make sure you select the audio instrument you are using on the left of the arrange page (track list). If you here your input, hold shift, then highlight (gray) the mentioned audio tracks you wish to record on. When R is red, and the proper tracks are grey, you can record. Hope that made sense!

Maybe you are looking for

  • SecurityException: Cannot set up certs for trusted CAs

    I'm pressed for a solution to meet a delivery deadline - any help would be appreciated. I have a method that requests an instance of a SecretKeyFactory. The method works in a standalone application and in JRun which we use for development but when i

  • Incompletion procedure for specific distribution channel

    Dear SD Gurus, I created a sales orders and debugged the system. It is giving an message: u2018Pricing error: Mandatory condition Z900 is missingu2019 and order is considered to be as incomplete. Below is the detail for this message: Pricing error: M

  • Picture array to video

    I have picture images (in labview picture data format) being queued and I am interested in creatiung a movie (any standard format is fine) out of them, IE ca I deque images and append into some video format.  I AM NOT USING IMAQ IN THIS APPLICATION. 

  • Can a behavior affect the individual points of a vector line?

    Hi All, I've drawn a vector line in Motion using the pen tool, and would love to apply a random motion or wiggle so that the points of the line themselves would shake, as opposed to the entire line shaking as one solid object. Is this possible? I've

  • Mon ipod suffle de 4ème génération ne se recharge plus.

    Mon ipod suffle de 4ème génération ne se recharge plus. Mon ordinateur ne le détecte plus, il ne fait qu'un signe lumineux de deux secondes rouge. Plus aucun signe lumineux quand je le branche avec un cable Apple et un adaptateur secteur Apple. J'ai