Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Indent Test

Status
Not open for further replies.

chiph

Programmer
Jun 9, 1999
9,878
US
I saw that Mike had mentioned how to indent code that gets posted. He said you insert &nbsp;&nbsp;&nbsp;&nbsp;, and the forum will do the indention for you. I thought I'd give that a try.<br>
<br>
Public Property Get USER() As String<br>
&nbsp;&nbsp;&nbsp;&nbsp;USER = m_USER<br>
End Property<br>
Public Property Let USER(ByVal New_User As String)<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;m_USER = New_User<br>
&nbsp;&nbsp;&nbsp;&nbsp;PropertyChanged &quot;User&quot;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;#If dodebug = 1 Then<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MsgBox &quot;User is now:&quot; & m_USER<br>
&nbsp;&nbsp;&nbsp;&nbsp;#End If<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;If Not (m_IP Is Nothing) Then<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Call Fetch<br>
&nbsp;&nbsp;&nbsp;&nbsp;End If<br>
End Property<br>
<br>
End of test.<br>
<br>
Chip H.<br>

 
<br>
Wowser! It works! A pain to use, but it will indent stuff!<br>
<br>
Chip H.<br>

 
Ooops. The original post should have said how to do it, and not actually shown it (which got turned into an indent).<br>
<br>
You type a left square bracket, the word &quot;tab&quot;, then a right square bracket. Like this (but without the periods):<br>
[.tab.]<br>
<br>
Chip H.<br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top