Bentley Communities
Site
Search
User
Site
Search
User
Welcome
Products
Support
About
More
Cancel
Jeff Dragowski
Likes
Profile
Activity
Communities
Friends
Likes
Achievements
Bookmarks
Blog Posts
Questions
More
Cancel
RE: [VBA] Error 424: Object Required
Jon Summers
Unknown said: Dim ee As ElementEnumerator Dim oText As TextElement Set oText = ee.Current.AsTextElement You've declared a variable named ee . It's a reference to a class of type ElementEnumerator . Right now, you haven't initialised that object: it…
over 8 years ago
MicroStation Programming
MicroStation Programming Forum
RE: [VBA] Error 424: Object Required
Robert Schwenn
You should see the line which causes the error and tell it us... But this case seems pretty simple: Neither You've declared the variable ElementEnumerator nor did You assign any value to it - at least not in the code we can see here. Robert
over 8 years ago
MicroStation Programming
MicroStation Programming Forum
RE: [VBA] In Need of Layman's Terms
Jon Summers
Sub Init () Dim oText As TextElement '... get text element somehow Dim content As String content = oText.Text CreateLink content End Sub Sub CreateLink (ByVal content As String) Dim strURL As String strURL = "http://www.google.com" & "/" & content…
over 8 years ago
MicroStation Programming
MicroStation Programming Forum
RE: [VBA] In Need of Layman's Terms
Jon Summers
Unknown said: Can someone explain to me in layman's terms how to insert a string back into my VBA? Welcome to the world of VBA! There's plenty of jargon to learn 8-) VBA for MicroStation shares many characteristics with VBA for Office and other applications…
over 8 years ago
MicroStation Programming
MicroStation Programming Forum