Testing, One, Two, Three

Here’s to the new system. May it be a success!

Function Testing()
Dim myVar
myVar = "This is a string."
MsgBox myVar
End Function

It would be handy if code examples could be formatted and indented to look like a code block. Maybe I"m just not seeing it.

Kind regards,
Doug

Like this?

Function Testing()
  Dim myVar
  myVar = "This is a string."
  MsgBox myVar
End Function

There’s an icon which looks like </>. If you select text and use that, it will act as preformatted text.

Yep! I did that, but only after typing in my text. I wonder if I need to select the button first. I’ll try again. Thanks George.

Kind regards,
Doug

I found it only works a line at a time. You cannot select a block of code and add the <>.

JamesF

Ah, that explains it. Thanks James. Would be nice if it could handle multi line code blocks too.

Kind regards,
Doug

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.