Skip to sidebar Skip to content
Ipercube Technical
Jack of all trades, master of none
Date: Time: - Stardate:
Welcome, Log in by clicking  Here!
SS64
MDN
Stack
Code
GitHub
Wiki
Convert
V Studio
  • Home
  • VB Functions
    • Access Functions
    • Assembly Info
    • Color/Image Functions
    • Data Table Functions
    • Email Functions
    • Active Directory Functions
    • LDAP Functions
    • Excel Functions
    • Logging Functions
    • Source Code Retrieval
    • String Functions
    • Sql Functions
    • Object Utilities Functions
    • System and Utilities
    • Utility Forms
  • VB Classes
    • Environment Variables Helper
  • ABAP
    • ABAP Reports
    • ABAP HTTP Functions
Ipercube Technical
  • Home
  • VB Functions
    • Access Functions
    • Assembly Info
    • Color/Image Functions
    • Data Table Functions
    • Email Functions
    • Active Directory Functions
    • LDAP Functions
    • Excel Functions
    • Logging Functions
    • Source Code Retrieval
    • String Functions
    • Sql Functions
    • Object Utilities Functions
    • System and Utilities
    • Utility Forms
  • VB Classes
    • Environment Variables Helper
  • ABAP
    • ABAP Reports
    • ABAP HTTP Functions

HTML Rendering – Convert Tabbed String to Html Page

Converts a tab-delimited string into a full HTML page using a predefined HTML template.

This function replaces the {0} placeholder in the HTML template (retrieved from resources) with the HTML table generated by ConvertTabbedString2HtmlTable.

VB
    Public Function ConvertTabbedString2HtmlPage(TabbedString As String, 
                                                 Optional header As String = "", 
                                                 Optional footer As String = "") As String

        Dim szToReturn As String = iuCommonResources.GetString("HtmlPageTemplate").Replace("{1}", ConvertTabbedString2HtmlTable(TabbedString))
        szToReturn = szToReturn.Replace("{0}", header)
        szToReturn = szToReturn.Replace("{2}", footer)

        Return szToReturn
    End Function

Posted by ipercube


© 2026 Ipercube Design