Kaylee: So how many fell madly in love with you and wanted to take you away from all this? Inara: Just the one. I think I'm slipping.

'Serenity'


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!


tommyrot - May 08, 2012 4:52:50 pm PDT #20024 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

"Well, I guess it isn't out of beta yet then, is it? Get back to work!"

Heh.

ION,

Palm-sized USB fuel cell packs lots of juice, on sale this year

Lilliputian Systems is not a big name in portable power, but they have some big ideas, and this year, they've promised a big product: a fuel cell generator the size of a smartphone that will be able to generate enough power on one cartridge of butane to charge an iPhone up to 14 times. Goodbye batteries, hello liquid electricity.

Later this year, you'll be able to pick up Lilliputian Systems' portable USB power source from Brookstone for an undisclosed sum. It runs off of a special lighter-sized cartridge full of butane that'll cost you a couple bucks per, and will charge anything you can plug into it with a USB cable. When the cartridge runs dry, just pop in another one and you're fully recharged. It's simple, it's cheap, it's portable, it's reliable, and it's about time.

The rest of the article is a rant about how it requires proprietary butane cartridges. Dunno how much it'll cost.


Toddson - May 09, 2012 5:07:31 am PDT #20025 of 25501
Friends don't let friends read "Atlas Shrugged"

Something I saw today:

Something you rarely heard during Alexander Graham Bell's time: "Dammit -- I just dropped my phone in the toilet."


tommyrot - May 09, 2012 5:10:18 am PDT #20026 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Well, the very first words spoken over a phone were, "Watson, I need you!"

Maybe Bell needed Watson to retrieve his phone from the toilet.

(Or maybe Bell said, "Mr. Watson--come here--I want to see you." I've read conflicting things.)


Zenkitty - May 09, 2012 5:19:41 pm PDT #20027 of 25501
Every now and then, I think I might actually be a little odd.

Yeah, we figured out that QT10.1 is calculating total bitrate (bits/seconds) instead of average bitrate, which takes into account interframe compression.

I don't know why I read this thread. I'm like the dog in that Far Side cartoon. "Blah blah blah Ginger blah blah video blah blah Apple blah!"


Theodosia - May 10, 2012 3:23:34 am PDT #20028 of 25501
'we all walk this earth feeling we are frauds. The trick is to be grateful and hope the caper doesn't end any time soon"

Say i wanted to give a less-than-totally legal large mp4 to a friend and didn't want her to risk getting in trouble. This is totally theoretical, you understand....

What transfer site/system would you recommend, especially one that a less-than-technically adept friend could open and download said file?

I feel so out of it -- it's been a while since I (theoretically) did this.


Jon B. - May 10, 2012 3:39:33 am PDT #20029 of 25501
A turkey in every toilet -- only in America!

Dropbox. You put it in your public folder and send your friend the URL. Use my referral link and we get extra space! :) [link]


Theodosia - May 10, 2012 3:57:56 am PDT #20030 of 25501
'we all walk this earth feeling we are frauds. The trick is to be grateful and hope the caper doesn't end any time soon"

Thanks Jon! If I were to transfer greyishly-legal materials, that would be very useful. ::looks shifty::


Jon B. - May 10, 2012 4:18:42 am PDT #20031 of 25501
A turkey in every toilet -- only in America!

You're welcome!


Sophia Brooks - May 10, 2012 4:57:43 am PDT #20032 of 25501
Cats to become a rabbit should gather immediately now here

Are there people here who are familiar with Access/visual basic. There is a weird glitch in a database that I have which is set up to send confirmation emails when a student is registered for a class. If a student has registered for more than one class, it sends ALL the emails, even if that class was over years ago. This is set up as a button, with some VB code that makes a table with the student selected and then opens up a mail merge document. I can check in the merge document before sending and choose to only send one email, but that required me to remember that the student has registered before or be observant. And it is really hard to explain to my student trainees that do this.

The code for the button makes no sense to me (probably because I do not know VB)

Private Sub cmdOpenReg_Click()
On Error GoTo Err_OpenReg_Click
Dim db As DAO.Database
Dim qry As QueryDef
Set db = CurrentDb
If Not Me.cboClassName = "" And Not Me.cboStudentName = "" Then
MsgBox "You may only choose Class or Student but not both.", vbCritical
Me.cboClassName = ""
Me.cboStudentName = ""
Exit Sub
ElseIf Me.cboClassName "" Then
Set qry = db.QueryDefs("qryStudentPayEmailClass")
qry.Parameters("Input Class ID") = [Forms]![preLetterType]![cboClassName]
qry.Execute
ElseIf Me.cboStudentName "" Then Set qry = db.QueryDefs("qryStudentPayEmail")
qry.Parameters("Input Student ID") = [Forms]![preLetterType]![cboStudentName]
qry.Execute
ElseIf Me.cboClassName = "" And Me.cboStudentName = "" Then
MsgBox ("You must select a Class or Student before opening Registration Confirmation."), vbCritical
Me.cboClassName.SetFocus
Exit Sub
End If

Exit_cmd
OpenReg_Click:
Exit Sub

Err_OpenReg_Click:
MsgBox Err.Description
Resume Exit_cmdOpenReg_Click

End Sub


tommyrot - May 10, 2012 5:14:40 am PDT #20033 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

This is not valid:

ElseIf Me.cboClassName "" Then

It probably should be:

ElseIf Me.cboClassName = "" Then

But I'm guessing that's just a result of posting the code here? Anyway, assuming the code is OK on your end (because it's not erroring for you, right?), it looks like the actual problem is in one of the two queries this code can run--qryStudentPayEmailClass or qryStudentPayEmail.