(VB.NET)displaying row count in textbox using dataset
-
in database primary key column is autonumber, if there are no records it should be displayed as 1 in textbox, if there records then it should display rows count+1 in textbox. please send using iif condition if possible. thank u
-
in database primary key column is autonumber, if there are no records it should be displayed as 1 in textbox, if there records then it should display rows count+1 in textbox. please send using iif condition if possible. thank u
-
in database primary key column is autonumber, if there are no records it should be displayed as 1 in textbox, if there records then it should display rows count+1 in textbox. please send using iif condition if possible. thank u
if db is empty textbox1.text=1 else if db is having 3 records textbox1.text=ds.tables("emp").rows.count+1. how we can do this using if condition and as well as iif ternary operator. thank u