Re: Selling the house that I grew up Community Center Geeks' Lounge by Reverend Jim … store bought. Also a great place to play hide and seek. I think I'll shed a tear or two and… Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by rproffitt UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance. Re: seek function Programming Software Development by KevinADC …+???) We haven't seen that.Can you explain me with seek usage??[/QUOTE] Below quoted from: [url]http://perldoc.perl.org… global variables like @ARGV and $^I. I never use "seek" for anything so I can't advise you on… using it. Read the seek documentation and it might help you. [url]http://perldoc.perl… seek function Programming Software Development by FoX_ …record for my hw.I'm trying to use seek function but when I use it, new information(phone…phone number\n"; chomp($newNum = <STDIN>); seek(FILE,-1 * length($array[2]),1) || die("Couldn…'t seek back\n"); print(FILE "$newNum\n"); $… Re: seek function Programming Software Development by FoX_ I confused a little... I don't know these : local @ARGV = ($file); local $^I = '.bak'; split(/\s+/) (what's the meaning of \s+???) We haven't seen that.Can you explain me with seek usage?? Seek Time Performance Hardware and Software Hardware by ShoreCountry … my hard drive and just recently I noticed that the seek time performance is showing in [COLOR="red"]red… column is ID which = 08 second column is name which = seek time performance third column is T.E.C. which shows… Seek to a line number Programming Software Development by Cosa … how many lines were in the file, then attempted to seek to the appropriate line number to as to print the… character by character, not by the lines. How can i seek to a specific line? Here is my code [code=c… Re: Seek to a line number Programming Software Development by Cosa im not to sure if i understand what your saying. I need to create an array of unsigned int? Then store the offset of each line into the array? Then use those values to seek to the desired line?? Re: Seek to a line number Programming Software Development by Ancient Dragon … each line into the array? Then use those values to seek to the desired line??[/QUOTE] I guess you have never… Seek failed..... Digital Media UI / UX Design by Reliable I downloaded an FLA from a server. When I went to open it it told me Seek failed. I tried a couple of times to no avail. I've never seen this message before and it doesn't happen on any other FLAs I have. what's this all about? Seek error rate, I'm concerned, should I? Hardware and Software Hardware by mah300274 … time. It currently says my threshold, value, and worst (for seek error rate) is at a 67. (I'll upload a… Re: Seek error rate, I'm concerned, should I? Hardware and Software Hardware by rubberman … seem to be as susceptible to overheating and bad sectors / seek/read/write errors. So, send it back for warranty replacement… Negative Seek Offset Programming Software Development by curtissumpter Hi Guys (and Girls), Problem: Negative seek offset with respect to a RandomAccessFile's seek method. [code=java] private void writeRecord() { String …(v[GeneralUI.QUANTITY]), Double.parseDouble(v[GeneralUI.COST])); try { file.seek(raR.getRecordNumber()-1 * RaRecord.size()); } catch (IOException e1) { e1.… VB seek fails after addnew on foxpro table Programming Software Development by Anthonynz …they do. I determine if the record exists by a seek command, which works fine. But if my process has…Loop with each strAccountNo - Code not shown for brevity RsMasterFile.Seek "=", strAccountNo If RsMasterFile.NoMatch Then 'We have a… presume that the first addnew affects the index or seek somehow, so that the second item is not found… Re: VB seek fails after addnew on foxpro table Programming Software Development by sidnei …... This way, I don't have a clue what the Seek method already performs on your recordset. But I would try… one more change: use Filter property instead of Seek. The filter property filters your recordset, letting only the records…. Initially I think you can do the same thing with Seek, but it is not a property - it is a method… Re: VB seek fails after addnew on foxpro table Programming Software Development by sidnei … I said MAYBE... According to your description, I think the seek method doesn't position the cursor on the top of… shown for brevity 'HERE IS THE MODIFICATION RSMASTERFILE.MOVEFIRST RsMasterFile.Seek "=", strAccountNo If RsMasterFile.NoMatch Then 'We have a… Re: C# StreamReader seek Programming Software Development by VilePlecenta Even with FileStream, the seek has no effect when combined with StreamReader. This is ridiculously …. edit: I got it to seek with this [CODE] reader.DiscardBufferedData(); file.Seek((-lastLineLength), SeekOrigin.Current); reader.BaseStream.Seek((-lastLineLength), SeekOrigin.Current);[/CODE… How do I correctly seek a text file using ofstream? Programming Software Development by nosnibor [CODE=cplusplus] bool BODYTYPE::Seek(BODYTYPE * body) { string line; string key(body->style); size_t … Hardtop 4 Hatchback 5 Muscle 0 and i try to seek "Hardtop" it retrieve Hatchback. It is over seeking… Re: C# StreamReader seek Programming Software Development by Momerath … the text file you'll be dropping characters when you seek (which is why you should use a byte stream reader…). If you are using UTF16, you need to seek back (at least) 2 positions per character since they take… A Progress/Seek Bar for Audio Programming Software Development by Frank0051 … audio references. I'm currently working on creating a progress/seek bar in Swing however I'm not really sure what… Floppy Disk Seek Failure & Can't Access XP Hardware and Software Microsoft Windows by glckl I received the follwoing error yesterday: "floppy diskette seek failure Strike the F1 key to continue....." I was … Hiding seek bar in Media player control Using C# windows application Programming Software Development by sireesha.c Hi, i am working with windows media player control using AxInterop.WMPLib in c# windows application.It is working properly but i want to hide seek bar in windows media player.if u know this plz reply me ASAP. Looking for seek-page on your site!!! Digital Media Digital Marketing by JukaVukass So... interesting site... Im looking for seek-link on your site. Can you help me? Random Seek Test Fails on main hard drive Hardware and Software Microsoft Windows by Nickair Hi i am running Windows Vista Home Premium on my HP Media Center PC, and my computer just went through my scheduled Hardware Diagnostic tests and everything passed except the Random Seek Test for my C drive. Is this a bad thing? what do i do about it? Do i have to worry? Negative Seek Offset Programming Software Development by curtissumpter Hey, Any suggestions on how to stop a IOException: Negative Seek Offset problem? -- Curtis Using Seek method to read on from a file header location in a bitstream Programming Software Development by Banjoplucker …. I am trying to use the "read", "seek" and "tell" methods to report the presence… Re: Using Seek method to read on from a file header location in a bitstream Programming Software Development by Gribouillis ….ifile.read(self.bufsize - len(self.buffer)) else: self.ifile.seek(start) self.start = start self.buffer = self.ifile.read(self… Re: Using Seek method to read on from a file header location in a bitstream Programming Software Development by Banjoplucker ….ifile.read(self.bufsize - len(self.buffer)) else: self.ifile.seek(start) self.start = start self.buffer = self.ifile.read(self… C# StreamReader seek Programming Software Development by VilePlecenta Hi all, Ive been trying to find a seek method for StreamReader. I want to be able to reverse … Re: C# StreamReader seek Programming Software Development by Momerath Use a FileStream instead of a StreamReader as it has a Seek method. And no, Read will stop at the end of the file. It also has a return value that tells the number of characters read.