Click here to Skip to main content
15,889,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am saving incoming data from COM Port to a String first and then displaying sub string from that string in a richTextBox1.

I need to save substrings with TimeStamp to a SQL Server Database. What i need to do for it ? Thanks !

In below code, i need to store substring with TimeStamp in SQL Server:

C#
private void DisplayData(MessageType type, string msg)
        {
           richTextBox1.Invoke(new EventHandler(delegate
            {
                string substring = string.Empty;
              if (msg.Length > 54)
                    substring = msg.Substring(54, 3);
                 richTextBox1.AppendText(substring) ;
            }));
        }
Posted
Updated 16-Jan-13 3:56am
v5
Comments
OriginalGriff 16-Jan-13 10:32am    
And what have you tried?
There is no code there that touches a database of any form!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900