VLC player will play FLV files.
Xander ,'Selfless'
Buffistechnology 3: "Press Some Buttons, See What Happens."
Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!
anybody know why a McAfee update would make the internet stop working on my laptop? i know that's what it is because i've had to do a system restore twice after McAfee decided to automatically update. i've now turned it off automatic updates, but it keeps bugging to do one. i thought it might be something to do with the firewall, but i messed around with it and it didn't seem to solve the problem.
xpost with Natter.
tiggy, I haven't run into McAfee problems myself, but there are a lot of people complaining on the internets about having the same problem since recent updates. McAfee has a page up with information on how to completely remove and reinstall the software: [link]
Nevermind...I had an 'identity' problem. Still unclear how it got switched without me doing the switching. But my email is back.
Nothing to see here.
Aaaagh.
I'm pretty sure there's no one here who uses VBScript and ADO for ASP, but if someone is familiar with this, could you lend me a hand?
could you lend me a hand?
Switch to perl, tommyrot.
Heh. I wish.
You are more right than you know. I'm supposed to use regular expressions with VBScript. Which sorta' makes my head want to explode. Then I found some examples, which makes my head want to explode even more:
InitialString = "www.foo.co.uk"
Set RegularExpressionObject = New RegExp
With RegularExpressionObject
.Pattern = ".co.uk"
.IgnoreCase = True
.Global = True
End With
ReplacedString = RegularExpressionObject.Replace(InitialString, ".com")
Not exactly like regular expressions in Unix/perl, huh?
thank you so much, amych! trying it now.
Not exactly like regular expressions in Unix/perl, huh?
Not exactly like regular expressions, period. Ech.
Actually, after using them it's not so bad. Despite the weird object syntax, the pattern you specify is the same, which is sorta the heart of regular expressions.