Here's the error code, what does it mean? (technology...)
From this line:
objAdapt.Update(objRow(0))
Here's where I create my Update command... what do I do?
objAdapt.UpdateCommand = new oledbcommand("UPDATE tblNewOrderNum SET wOrder = wOrder + 1", objConn)
Code:
System.Reflection.AmbiguousMatchException: No accessible overloaded 'OleDbDataAdapter.Update' can be called without a narrowing conversion. at Microsoft.VisualBasic.CompilerServices.VBBinder.set_InternalThrow(Exception Value) at Microsoft.VisualBasic.CompilerServices.VBBinder.BindToMethod(BindingFlags bindingAttr, MethodBase[] match, Object[]& args, ParameterModifier[] modifiers, CultureInfo culture, String[] names, Object& ObjState) at Microsoft.VisualBasic.CompilerServices.VBBinder.InvokeMember(String name, BindingFlags invokeAttr, Type objType, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn) at Microsoft.VisualBasic.CompilerServices.LateBinding.LateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack) at ASP.seniors_aspx.newWebNum() in C:\Inetpub\[URL unfurl="true"]wwwroot2\secure\seniors.aspx:line[/URL] 75
From this line:
objAdapt.Update(objRow(0))
Here's where I create my Update command... what do I do?
objAdapt.UpdateCommand = new oledbcommand("UPDATE tblNewOrderNum SET wOrder = wOrder + 1", objConn)