280 pts.
 How do I create a trigger in VB 6?
HOW TO CREATE A TRIGGER IN VB6

Software/Hardware used:
ASKED: July 26, 2010  3:57 AM
UPDATED: October 1, 2010  11:31 AM

Answer Wiki:
According to Carlosdl, ur q's is not clear here or u have to provide more details. Though, I provide an eg, hope it will help u. 1. Dim myDate As Date, ExpiryDate As Date 2. rsDates.Open "SELECT TheDate FROM MyTableDates", cnDate, adOpenStatic, adLockOptimistic 4 MyDate = rsDates!TheDate 6 ExpiryDate = Now 7 If MyDate < ExpiryDate Then 9 'Whatever to happen here 10.Else 11. 'Flash code here 12. End If
Last Wiki Answer Submitted:  October 1, 2010  11:31 am  by  Subhendu Sen   22,035 pts.
All Answer Wiki Contributors:  Subhendu Sen   22,035 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Ananda, could you please provide more details ?
Do you want to create a database trigger from a VB application ? If so, what DBMS are you using ? If not, what exactly do you mean by ‘create a trigger’ ?

 63,535 pts.