Hi all :
I want to somehow split a string ("12,43"
and set two variables.
eg.
Dim m_strTemplate As String
Dim m_intTemplateID As Integer
Dim m_intColourSchemeID As Integer
m_strTemplate = "12,4"
' Split up the TemplateIDs
m_intTemplateID = "12"
m_intColourSchemeID = "4"
How do I do this?
kloner
I want to somehow split a string ("12,43"
eg.
Dim m_strTemplate As String
Dim m_intTemplateID As Integer
Dim m_intColourSchemeID As Integer
m_strTemplate = "12,4"
' Split up the TemplateIDs
m_intTemplateID = "12"
m_intColourSchemeID = "4"
How do I do this?
kloner