[RESOLVED] another conversion problem
sorry last one for a while (i hope)
im running into an blue squigle saying
No overload for method 'this' takes '1' arguments
for this code
( i know its pretty sloppy but i was expermenting trying to pick it apart to see where the error was coming from)
Code:
DataGridView invoicedgv = (DataGridView)invoicebindingsource[index];
String invoiceCheck = invoicedgv["name"].ToString();
invoiceCheck.Trim();
if (string.IsNullOrEmpty(invoiceCheck))
{
invoicebindingsource.RemoveAt(index);
}
thanks so much
1 Attachment(s)
Re: another conversion problem
You're indexing a DataGridView. What's the default property (VB) or indexer (C#) of the DataGridView class? The doco would tell you and so would Intellisense.
Re: another conversion problem
sorry i guess i missed that