RotorTorque
Programmer
Hi all,
I have a VB2005 application. In my app. I have a form with hundreds of lines of code. To make it easy to edit I have divided the code into various regions.
For example"
<CODE>
#REGION "SAVE"
Public Sub Save() Implements TargetLogistics.IForm.Save
Try
Call SaveCOB()
MsgBox("Save was successful.")
Catch ex As Exception
MsgBox("Save Failed.")
End Try
End Sub
#END REGION
</CODE>
I usually have all my regions collapsed. Is there a setting that I need to set so that when I first open the editor all the regions are expanded?
Thanks in advance,
RotorTorque
I have a VB2005 application. In my app. I have a form with hundreds of lines of code. To make it easy to edit I have divided the code into various regions.
For example"
<CODE>
#REGION "SAVE"
Public Sub Save() Implements TargetLogistics.IForm.Save
Try
Call SaveCOB()
MsgBox("Save was successful.")
Catch ex As Exception
MsgBox("Save Failed.")
End Try
End Sub
#END REGION
</CODE>
I usually have all my regions collapsed. Is there a setting that I need to set so that when I first open the editor all the regions are expanded?
Thanks in advance,
RotorTorque
