Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 you should see a button that says solved |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 did this problem get solved? if so mark it as solved so if others run into a problem then can see the solution and create another thread for a different problem |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 sorry about that take out the first order by srno and that should fix it
rs.Open "select srno, productname, qty, unit from mrtemp where req_no = " & strlistrequest & " order by srno", con,... |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 try changing the query to
rs.Open "select srno, productname, qty, unit from mrtemp order by srno where req_no=" & strlistrequest & " order by srno", con, adOpenDynamic, adLockOptimistic |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 is there an error number with that? |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 need to add & " after strlistrequest |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 8 Views: 1,452 go here. http://www.vb6.us/tutorials/formating-dates-and-times-vb6
it gives different date formats and examples |