Link to home
Start Free TrialLog in
Avatar of utlonghornjulie
utlonghornjulieFlag for United States of America

asked on

Trying to send an email with multiple datagrids - each datagrid is stacking on top of each other in the email, and I want all the datagrids to be on one row in the email

I am trying to send an email with datagrids. I do not want the datagrids to stack on top of each other in the email. How do I get the datagrids to be next to each other horizontally?
If pnlFixedSS.Visible = True Then
                    mBody.Append(getHTML(dgFixedSS))
                End If
                If pnlFixedWSSS.Visible = True Then
                    mBody.Append(getHTML(dgFixedWSSS))
                End If
                If pnlFixedPTSS.Visible = True Then
                    mBody.Append(getHTML(dgFixedPTSS))
                End If
                If Me.pnlMCPEBundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgMCPEBundledSS))
                End If
                If Me.pnlMCPEUnbundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgMCPEUnbundledSS))
                End If
 
                If Me.pnlSplitBundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgSplitBundledSS))
                End If
                If Me.pnlSplitUnbundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgSplitUnbundledSS))
                End If
 
 
                If Me.pnlOnOffBundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgOnOffBundledSS))
                End If
                If Me.pnlOnOffUnbundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgOnOffUnbundledSS))
                End If
 
                If Me.pnlWSHRBundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgWSHRBundledSS))
                End If
                If Me.pnlWSHRUnbundledSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgWSHRUnbundledSS))
                End If
 
                If Me.pnlRetailHRSS.Visible = True Then
                    mBody.Append(getHTML(Me.dgRetailHRSS))
                End If

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of utlonghornjulie

ASKER

That worked. Thanks!