No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
hi im just starting to design a database using adodc but I have a problem... can someone give me tip on how to create a search code for ADODC... thx in advance | |
Re: try to use adodc control... for usa... if you using ADODC, yes its possible to use one on SQL statement but if want to input another SQL statement, use the recordsource command in adodc codes... | |
Re: i have one for you try this: Dim blnDrag As Boolean Dim xClickPos, yClickPos Private Sub btnEnableDrag_Click() If blnDrag = False Then blnDrag = True btnEnableDrag.Caption = "Disable Dragging" Else blnDrag = False btnEnableDrag.Caption = "Enable Dragging" End If End Sub Private Sub btnEnableDrag_DragOver(Source As Control, X As Single, Y … |
The End.