Something I saw today:
Something you rarely heard during Alexander Graham Bell's time: "Dammit -- I just dropped my phone in the toilet."
Buffy ,'Showtime'
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!
Something I saw today:
Something you rarely heard during Alexander Graham Bell's time: "Dammit -- I just dropped my phone in the toilet."
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.)
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!"
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.
Dropbox. You put it in your public folder and send your friend the URL. Use my referral link and we get extra space! :) [link]
Thanks Jon! If I were to transfer greyishly-legal materials, that would be very useful. ::looks shifty::
You're welcome!
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
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.
Probably the error was from posting-
I will look at the queries- I usually understand those!