CraigDolphin
GrumpyOldMan in Training
- Local time
- Today, 11:19
- Joined
- Dec 21, 2005
- Messages
- 1,582
I hate to tell you this but the signs are that Microsoft are encouraging VBA developers to look at .net Link
I’m sorry, but this article is about something called “normalization”
I meant a sticky on “normalisation”
I recently completed the finishing touches on a database. Database resides on my physical hd. I then emailed an employee that will be completing the data entry the database that I was working on.
I then attempted to open the file again and all I get is a grey'd out screen and all my work seems to have been lost.
Any help would be greatly appreciated.
Thank you.
I hate to tell you this but the signs are that Microsoft are encouraging VBA developers to look at .net Link
I can has try/catch block?
Private Sub foo()
Dim bar As Variant
Dim baz As Object
Dim iter As String
On Error Goto geewhiz
bar= 1/0
With baz
End With
iter=Null
ExitSub:
Set baz = Nothing
Exit Sub
geewhiz:
Select Case Err.Number
Case 11
Msgbox "You just did a stupid thing."
Resume Next
Case 91
Msgbox "You schmuck. You didn't set the object variable."
Set baz = New Object
Resume
Case Else
Msgbox "You've got me beaten. I give up."
Goto ExitSub
End Select
End Sub
Private Sub foo()
Dim bar As Variant
Dim baz As Object
Dim iter As String
Try
bar = 1/0
With baz
End With
iter = Null
Catch ex As DivisionByZeroException
Return 0
Catch ex As ObjectNotSetException
Set bar = New Object
Catch ex As NullException
Return ""
Catch ex As Exception
Messagebox "Okay, I'm stumped now."
Finally
Set baz = Nothing
End Try
End Sub
I hate to tell you this but the signs are that Microsoft are encouraging VBA developers to look at .net Link
It might be an idea to have a noob forum where newbies like me don't feel like an idiot for asking simple questions.
.