hello I need your help this is a simple code of my work but it doesn't work

For example I want to subtract these two values they have (,) separator

Text1=567.45
Text2=9,876.39

Text3.Text = Format(CInt(Text2.Text) - CInt(Text1.Text), "#,##.00")


Result: 9,309.00

Which it should be : 9,308.94

How can I obtain real number?