Here's the command I'm typing in a Terminal window:
afconvert -f caff -d LEI16@44100 -c 1 buzzer.wav buzzer.caf
Error: ExtAudioFileOpenURL failed ('dta?')
Notice that buzzer.wav is my sound file.
What's wrong? How should I do the conversion?
...
Hi
As the title suggests I'm having a problem compiling MFC based applications, this problem started immediately after installing the windows server 2003 platform SDK and now even when I try to compile a new MFC project I get the following errors:
c:\program files\microsoft platform
sdk\include\zmouse.h(141) : error
C2146: synta...
I'm using a memory table. It has several ids and counter all data is integers.
My code updates the counter by 1 if the data exists or creates a line with counter=1 if not.
The query I use is:
INSERT INTO linked_mem
( id1, id2, id31, id4 cnt)
VALUES (31316, 0, 557158967, 261470594, 1)
ON DUPLICATE KEY UPDATE cnt= cnt+1
...
Hello,
I have a html select box. And a search field (input type)
When i Search for something new a javascript function first clears the selectfield
But Javascript gives the following error:
gs.options.remove is not a function
This is the function
function clearScholen()
{
for (var i=gs.options.length;i>=0;i--)
{
gs...
Hi all,
For a C# regression test simulation of some hardware we're using log4net to trace the execution of the simulation. Errors are logged every time something goes wrong, and there should be zero errors, of course. We use the error count to determine pass/fail of the test, currently we search the log for ERROR to determine this.
I...
I have an iFrame that shows external web pages through one of my proxies that I control. But this proxy doesn't handle javascript properly most of the time, the external pages throws javascript errors. Javascript doesn't need to work as it's not important.
What can i do to hide these javascript errors? They are annoying and I may have ...
I keep getting this message (in the title). Just take a quick look at my code if you want to see what I'm doing. I've just started implementing the Peer Picker, so I'm not completely done yet. I just need some advice/help in the first part. The error shows up in the .m file between the two #import statements, which means it has to be som...
I'm writing an Outlook COM addin using C++/ATL.
I'm getting a rather odd set of errors and results back from Outlook when I call _PostItem::SaveAs. This only occurs in Outlook 2002 (Outlook XP) and only when the _PostItem is an embedded item (an attachment of some other outlook item).
If the Post is an HTML type, it fails with E_INVALI...
This is for an assignment...
I am to
Write SQL out to display Customer's Last name, order date, product ID, fabric of the product, quantity ordered, and unit price. This must be a 4-table join and must user INNERJOIN even if where can be used.
These are the tables involved.
Cus (CID, Last, First, Phone)
Orders (OrdID, OrdDate, ShipD...
Final query that I have to do and I'm getting an error stating
that I have not specified OrdID's table:
Here's what I have:
SELECT Last, OrderLine.OrdID, OrdDate, SUM(Price*Qty)
FROM ((Cus INNER JOIN Orders ON Cus.CID=Orders.CID) INNER JOIN OrderLine ON Orders.OrdID=OrderLine.OrdID) INNER JOIN ProdFabric ON OrderLine.PrID=ProdFabric...
Hello all,
What I want to do is this: I have a pom.xml that depends on some property that the user will have to type as he calls mvn by an -D property.
The problem is, if the user don't give me this option, the mvn should fail with an custom error message, as "This program won't compile because you must define this property..."
Does ...
This is the code:
struct comp
{
bool operator()(Reputation *one, Reputation *two)
{
if (one->Amount < 0 && two->Amount >= 0)
return false;
if (one->Amount >= 0 && two->Amount < 0)
return true;
if (one->Amount >= 0)
return one->Amount <= two->Amount;
else
return one->Amount >= two->Amount;
}
};
And this is the p...
I have a working copy of asp.net mvc site locally. I just uploaded the whole site to my web hosting server. everything looks fine at first but when i login, i get the following error:
System.ArgumentException: Keyword not supported: 'provider'.
[ArgumentException: Keyword not supported: 'provider'.]
System.Data.Common.DbConnection...
I have setup and configured to SubSonic to work with a C# application I am writing. I can generate the data wrapper classes and use them perfectly in my code, but whenever I get ready to script the schema out via the subcommander tool using the arguments "version \out FileLocation", I am getting an error (see error message below).
It ...
I am trying to setup a basic error checking system where it will catch shell errors run by a system call. execute_command is a webmin function that runs a system call and then sets an error message to its 4th parameter. I basically call execute_command_error("adduser test"), knowing that I already have a user called test created and base...
Hi great folks!
I'm using Firefox: 3.5 and Firebug: 1.4.0.b3
On my local Ethernet site I am getting an error message in my firebug console:
[Exception... "Component returned failure code: 0x80540006
[nsIStreamListener.onDataAvailable]" nsresult: "0x80540006 (<unknown>)"
location: "JS frame :: file:///Users/max/Library/Appl...
I'm using tsWebEditor with xDebug and one of two errors pops up every minute or two even when I am not debugging and even when there are no files open for editing.
Exception from Debugger:
Connection reset by peer
Exception from Debugger:
xdebug did not return a valid length([|])
The "[|]" character is an unidentifiable character that...
Everytime something gets wrong .. i got to see this.
How can i make a simple Errorpage with stacktrace in jsf ?
...
Hi,
Is there any code or custom options available to achieve the following :
1> When an error occurs in a text box, the validation shows the error. Enforces / Forces the user to remove the error and only then proceed to complete remaining text inputs. KEEPS the mouse focus on the Text Box.
I have used built in mx:Validator tags, but i...
Hey folks,
I've written an SQL query that produces a report of some stats for each Year-Week-Mine-Product.
It works exactly as desired except for one thing - trn.wid-date isn't the correct date to be using.
I should be using td.datetime-act-comp-dump. When I replace trn.wid-date with td.datetime-act-comp-dump, it doesn't give me any...