Jump to content

Tripredacus

Supervisor
  • Posts

    13,380
  • Joined

  • Last visited

  • Days Won

    26
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Tripredacus

  1. Can you do us a favor and post a screenshot of what you are seeing? I'm not really here this week but noticed you hadn't gotten a response yet.
  2. I was hoping this wasn't a notebook. I know the difficulties these have. Since it doesn't work right now, maybe you can try a liveCD for linux and see if the audio comes out both channels?
  3. It is possible that the default driver only allows mono on the audio chipset you have. In the olden days, mono meant "left channel" but that may not be true in this case. How do you know a reinstall will fix it? Tell us about your experiences with this. You can try cleaning your speaker contact, as this is a common issue. A dirty plug ( you can't really clean the female connector ) can cause this issue. As can corrosion (even if you can't see it) on either connector. Try the following hardware steps to see if it makes a difference: 1. Twist the audio connector while you are playing audio. See if it cuts in or out. 2. While playing audio, slowly unplug the connector, and see if you get full stereo after the first notch. Then again you didn't mention if this was a notebook or not. You may also want to install the software for your sound card. Windows Update never includes this part, and even some sites a straight driver doesn't have it either.
  4. It doesn't appear that any of these will make the MP3s for you, I may be mistaken. I've made MP3s from a cassette tape before, but it was a long time ago. The process is that you basically record on the PC while the audio is being played on the tape deck. So you can see it is time consuming! I wouldn't think you actually would need these at all if you have audio equipment at your disposal already. Of course the #1 thing is a tape deck, but you can connect those using audio out to the input on your sound card. Not sure why USB is that much of a difference, unless these things are high speed automatic dubbers (probably not) as the extra speed on the USB isn't going to make a difference. Alas this is why I still have a tape deck in my car!
  5. It could be that the drive is going. Does it do this both when on Battery and when Plugged-In?
  6. No I do not. However there is a way to find out. First you can use ProcMon on the system you get the error. If you have access to another PC with the same version of XP installed where this does work, you can run ProcMon on that one and compare the results.
  7. This can be pretty tricky. I had similar problems trying to get WinPE to use a video driver I injected instead of it always wanting to use "Standard VGA Adapter" driver. I never figured out how to fix it.
  8. Welcome to the MSFN!
  9. You probably have to start a new game instead of using a save?
  10. Does MDT have support for Starter? Also OP didn't specify Home Premium or Home Basic, I am going to presume Home Basic for now Lastly, the Imagex /capture syntax determines the WIM file name.
  11. I also see that you set your variable $write to be nothing (which is fine) and you check it to see if there is data in it. AutoIT has this function already, IsObj. Look at this I typed up real quick: dim $var $var = ClipGet() IF IsObj($var) Then FileWriteLine($file,$var) ELSE sleep(100) endif I haven't tested this of course so hopefully I didn't make an error.
  12. Are you using a modified XP installation such as nLite or are you using a Distribution Share?
  13. I can think either one of the updates are corrupted, or that you have something in your install that requires .NET Framework 4.0 and you did not include it.
  14. Since this isn't about a specific Windows 7 release or version, I shall move this to Software Hangout.
  15. Does this happen with every deployment, or just one PC and other ones work?
  16. If you can find the actual uninstaller application (.exe) and you can determine what was used to create it, you may be able to pass switches to it.
  17. I wonder if the driver is generic, instead of specifically written for Server 2003 R2 aka Windows v5.2. Some driver makers take a shortcut and just make them for x86, amd64 or ia64 without specifying an OS version.
  18. A new hard drive will appear in Device Manager but NOT in My Computer until you format it. If you go into Disk Management in Computer Management, Windows should prompt you to initialize the new disk.
  19. I am seeing it. Fortunately no one uses those three code tags. Definately we are aware of the codebox... We've been battling that for awhile. PHP color coding? <? include_once ("./settings.php"); $link = mysql_connect($host,$user,$password); mysql_select_db("$tpx_forums"); echo '<table cellpadding=0 spacepadding=0 border=1 width=100%><tr>'; $result=mysql_db_query($base,"select * from ".$basesites."",$link); if ($result > 0) { $num4=mysql_num_rows($result); if($num4!=0) { $n=0; while ( $n<$num4 ) { # call and show the ID $id=mysql_result($result,$n,"id"); # call and show the series $series=mysql_result($result,$n,"series"); # call and show the line $line=mysql_result($result,$n,"line"); # call and show the year $year=mysql_result($result,$n,"year"); # call and show the country $country=mysql_result($result,$n,"country"); $n++; if (!$size) $size="0 kb"; echo "<tr>"; echo "<td align=left>$id</td>"; echo "<td align=left>$series</td>"; echo "<td align=left>$line</td>"; echo "<td align=left>$year</td>"; echo "<td align=left>$country</td>"; echo "</tr>"; } } echo "</table>"; } ?> XML color coding? <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd"> <svg xml:space="preserve" width="800" height="600" viewBox="0 0 800 600" version="1.1" xmlns="http://www.w3.org/2000/svg" onload="DoOnLoad( evt )"> <script type="text/ecmascript"> <![CDATA[ function changeRectColor(evt) { var red = Math.round(Math.random() * 255); var green = Math.round(Math.random() * 255); var blue = Math.round(Math.random() * 255); evt.target.setAttributeNS(null,"fill","rgb("+ red +","+ green+","+blue+")"); } var dragger = null; var origTransform = ""; var origX; var origY; var oldTranslateX; var oldTranslateY; var translateRegExp=/translate\(([-+]?\d+)(\s*[\s,]\s*)([-+]?\d+)\)\s*$/ function DoOnMouseOver(evt) { } function DoOnMouseOut(evt) { } function DoOnLoad(evt) { var el = getSVGDocument(evt.getTarget()).getElementById("left"); el.getStyle().setProperty("fill", ""); } function DoOnMouseDown(evt) { if( evt.getTarget().getAttribute("id") == "left" ) { var el = getSVGDocument(evt.getTarget()).getElementById("helloText"); el.getStyle().setProperty("visibility", "visible"); } var onObject = evt.getTarget(); if( onObject.getAttribute("id") != "bg") { dragger = onObject; origTransform = dragger.getAttribute("transform"); if (origTransform == null) origTransform = ""; else origTransform = new String(origTransform); origX = evt.getClientX(); origY = evt.getClientY(); oldTranslateX = 0; oldTranslateY = 0; if (origTransform == null || origTransform.length == 0) origTransform = ""; else { var result = origTransform.match(translateRegExp); if (result == null || result.index == -1) { alert("The regular expression had a problem finding the translate at the end of \"" + origTransform + "\""); oldTranslateX = 0; oldTranslateY = 0; } else { oldTranslateX = parseFloat(result[1]); oldTranslateY = parseFloat(result[3]); origTransform = origTransform.substr(0, result.index); } origTransform += " "; } } } function DoOnMouseUp(evt) { if( dragger != null ) { dragger.getStyle().setProperty("fill", ""); dragger = null; origTransform = "" origX = 0; origY = 0; oldTranslateX = 0; oldTranslateY = 0; var el = getSVGDocument(evt.getTarget()).getElementById("helloText"); el.getStyle().setProperty("visibility", "hidden"); } } function DoOnMouseMove(evt) { if( dragger != null ) { dragger.getStyle().setProperty("fill", ""); var newX = oldTranslateX + (evt.getClientX() - origX); var newY = oldTranslateY + (evt.getClientY() - origY); var transform = origTransform + "translate(" + newX + " " + newY + ")"; var text = getSVGDocument(evt.getTarget()).getElementById("helloText"); text.getFirstChild().setData(transform); dragger.setAttribute("transform", transform ); } } function getSVGDocument(node) { // given any node of the tree, will obtain the SVGDocument node. // must be careful: a Document node's ownerDocument is null! if( node.getNodeType() != 9 ) // if not DOCUMENT_NODE return node.getOwnerDocument(); else return node; } ]]> </script> <defs> <linearGradient id="GradTwo" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="5%" stop-color="#4FD8FF" /> <stop offset="20%" stop-color="#FFFFFF" /> <stop offset="70%" stop-color="#AA00AA" /> <stop offset="95%" stop-color="white" /> </linearGradient> <linearGradient id="GradSix" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="15%" stop-color="white" /> <stop offset="25%" stop-color="black" /> <stop offset="50%" stop-color="red" /> </linearGradient> </defs> <g id="oneGroup"> <polygon id="onePoly" points="329,180 525,250 454,454 267,375" fill="#cccccc" stroke="#000000" stroke-width="1" onclick="changeRectColor(evt)"/> </g> <polygon id="left"/> <g id="twoGroup" onmouseover="DoOnMouseOver( evt )" onmouseout="DoOnMouseOut( evt )" onmousedown="DoOnMouseDown( evt )" onmouseup="DoOnMouseUp( evt )" onmousemove="DoOnMouseMove( evt )"> <polygon id="threePoly" points="253,174 344,231 289,332 203,270" fill="#336699" stroke="#000000" stroke-width="1"/> <polygon id="fourPoly" points="332,67 481,61 482,218 335,219" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="fivePoly" points="235,101 304,140 270,219 202,180" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="sixPoly" points="188,126 230,183 184,229 143,174" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="sevenPoly" points="97,103 142,132 123,181 79,151" fill="url(#GradTwo)" stroke="#000000" stroke-width="1"/> </g> <g id="spinGroup"> <polygon id="twoPoly" points="296,359 356,425 296,487 238,421" fill="url(#GradSix)" stroke="#000000" stroke-width="1"/> <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0,296,422" to="360,296,422" begin="0s" dur="10s" repeatCount="indefinite"/> </g> <text x="300" y="100" id="helloText" style="visibility: hidden; fill: black; font-family: Impact; font-size: 24">r</text> <text x="25" y="25" id="instructionalText" style="font-size:14">Moving Pictures</text> <text x="25" y="37" id="instructionalText" style="font-size:14">click large box to change color</text> <text x="25" y="49" id="instructionalText" style="font-size:14">drag the other boxes</text> </svg> Preview Post = egads! PS: XML color coder doesn't ignore the CDATA like it is supposed to...
  20. I've been using the "Media Disconnected" firewall for a few years now...
  21. HTPCs are all about form factor. If we are thinking the same thing here, I found a couple already... such as: Zotac H55ITX-C-E Gigabyte H55N-USB3 However you may find more if you go here, which is what I typed in: (because posting google links is unruly) If you are looking for larger sized boards, there may be more options out there.
  22. Firstly, is this how you went about adding the support? http://www.microsoft.com/enable/training/windowsxp/keyboardlayout.aspx Other questions: 1. Are you logged onto the system with an account with Administrative rights? 2. Did you modify your Windows install at all with tools like nLite or something similar? 3. Does anything get logged in Event Viewer when this error occurs?
×
×
  • Create New...