Content Type
Profiles
Forums
Events
Everything posted by Tripredacus
-
Please recommend which one of these 3 to buy
Tripredacus replied to NoUserName's topic in Hardware Hangout
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! -
Disk Drive Having Trouble Opening And Working
Tripredacus replied to buckdog05's topic in Hard Drive and Removable Media
It could be that the drive is going. Does it do this both when on Battery and when Plugged-In? -
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.
-
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.
-
You probably have to start a new game instead of using a save?
-
AutoIT excel macro help
Tripredacus replied to mchipser's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
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. -
Are you using a modified XP installation such as nLite or are you using a Distribution Share?
-
Since this isn't about a specific Windows 7 release or version, I shall move this to Software Hangout.
-
Does this happen with every deployment, or just one PC and other ones work?
-
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.
-
Driver Problem With Atheros AR5B97 In Win2003R2 SP2
Tripredacus replied to East 17's topic in Windows 2000/2003/NT4
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. -
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.
-
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...
-
What Firewall do you use in Win9x?
Tripredacus replied to gkar's topic in Malware Prevention and Security
I've been using the "Media Disconnected" firewall for a few years now... -
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.
-
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?
-
Okay - this doesn't inspire me with confidence. I guess the key thing is to have a tool that will reliably restore a working and bootable system, so if I'm not confident ImageX can provide this, I'll veer towards using DriveImage XML. This isn't a problem with Imagex, its more a problem with DiskPart, the program I used to format volumes. Diskpart was changed in WinPE 3 from WinPE 2, I found this by accident. And I only encountered these problems because I had a partition on the HDD that was doing the work. Network use of Imagex works fine with XP, never a problem!
-
Fixing wuauclt.exe malware problem.
Tripredacus replied to bizzybody's topic in Malware Prevention and Security
I would be interested to know what this pop-up says... -
(SOLVED) "Sleep mode problems with Asus P5KPL-AM EPU"
Tripredacus replied to bookie32's topic in Windows 7
Sleep can be interrupted by programs running on the system. Hibernate (I do not believe) is effected like this. Here is something you can check out. Run gpedit.msc - In Local Computer Policy, expand Administrative Templates - expand System - expand Power Management - click on Sleep Settings you want to look at "Allow Applications to Prevent Automatic Sleep (plugged-in)" another one may be "Turn on the Ability for Applications to Prevent Sleep Transitions (plugged-in)" Presumably, disabling this should stop this behaviour, however I have not tried it. Another thing to check, make sure you have the Standby State set to S3 in the BIOS. Some motherboards will come from the factory with S1 specified. If it says S1&S3 that is ok. -
Is it possible to assign a partiiton a permanant drive letter
Tripredacus replied to clivebuckwheat's topic in Windows 7
I encountered this problem (in theory anyways) when creating my own recovery partition. There is no easy way to do it! The best idea I came up with was to read something unique about the disk, like the drive serial number or something written into the MBR. Unfortunately, I never got past the R phase of the R&D on that one since the project got shelved.