Forum: Visual Basic 4 / 5 / 6 Feb 21st, 2009 |
| Replies: 3 Views: 510 help how can i know if the user is not an admin
i have combo box, in my combo box have a user or admin additem, if he choose admin then all i want is to validate if the username and password is... |
Forum: Visual Basic 4 / 5 / 6 Feb 15th, 2009 |
| Replies: 3 Views: 1,235 if your using adodb try this
set rs as new adodb.recordset
rs.open "Select * from table1 where emp_id='" & textid.text & "'", cn, 3, 3
if rs.recourdcount > 0 then
rs.open "insert into table1 ... |
Forum: Visual Basic 4 / 5 / 6 Dec 18th, 2008 |
| Replies: 2 Views: 422 how can i determine that may text1.text is equal to my product code?? heres my code
Set cn = New ADODB.Connection
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and... |