Question : Messaging box between users of a forum.

I was wondering if there is a site on how to build a inbox for a user on a forum.
This is internal and does not require smtp, it is just database tables interaction with sending messages.

Answer : Messaging box between users of a forum.

MACRO!!!!

That's the way. Select your sheets, then run this macro.

Thomas
1:
2:
3:
4:
5:
6:
7:
8:
9:
Sub ungrouprows()
Dim sht As Worksheet
On Error Resume Next

For Each sht In ActiveWindow.SelectedSheets
    sht.Rows("21:26").Ungroup
    sht.Rows("21:24").Group
Next
End Sub
Random Solutions  
 
programming4us programming4us