Question

I'm trying to check if a textbox starts with a -.

I tried the following code, but it doesn't work:

if(textbox1->Text::StartWith("-"))

if(String(textbox1->Text).StartWith("-");
Was it helpful?

Solution

Assuming this is C++/CLI and WinForms (in which case your question really needs retagging),

if (textBox1->Text->StartsWith("-"))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top