Forum: Visual Basic 4 / 5 / 6 Sep 25th, 2006 |
| Replies: 4 Views: 1,959 Remove the Single Quotes from the criteria expression. It should be
Let strsql = "SELECT * from bidtest where bidnumber = " & CInt(temp)
Single Quotes are used for String & Date Datatypes,... |
Forum: Visual Basic 4 / 5 / 6 Sep 6th, 2006 |
| Replies: 2 Views: 2,003 U r incrementing the value twice. Once in the For (which will automatically increment by 1) and once inside the for loop. So ur icount values are 1,3,5,7... . Since it never reaches 10, it goes into... |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2006 |
| Replies: 1 Views: 5,713 2 ways :
You can have the Supplier data (Name, Id) as global variables. From form1 (SelectSupp) set the values of the globals and then open form2(UpdProduct). Then u can access the global... |