Vertical Dividers

roarnold

Active Member
Licensed User
Longtime User
Evening,

Can I add vertical lines (dividers), programatically, without using a table or what have you. I am not using designer in the app. I have an Activity that needs to be divided with three lines to make it easier to read. I suppose there could be a better way if so, I would appreciate it.

Thanks,
R
 

roarnold

Active Member
Licensed User
Longtime User
Afternoon,

Thanks. I had laid down to sleep and thought that I could use a narrow set of pixels but not quite sure how just yet. Panels should work and I will give it a try.

Thanks Kindly,
R
 
Upvote 0

roarnold

Active Member
Licensed User
Longtime User
derez,

Here is what I have done for the vertical lines but I can't seem to get them thin enough. Even changing "dip" on it gives me the same look. Any ideas?

/Code

Dim pnl6 As Panel
pnl6.Initialize ("pnl6")
cld.Initialize(Colors.RGB(0, 139, 139), 4dip)
pnl6.Background = cld

Activity.AddView(pnl6, 80, 5dip, 15dip, 340dip)

Code/


Appreciate the help.
R
 
Upvote 0
Top