|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
Database save button
This may be a very simple question, but I can't seem to figure out how to save a record on a database form. for example,
the user edits, creates, updates, etc. a record. In order to save, they must click the navigation to view the next record. I'm figuring there has to be a way to make a "save" button. Thanks for the help |
|
#2
|
|||
|
|||
|
May be this helps...
To Save a Record to A Database it takes some combination If U R using DAO then U need Edit And Update. If U R Using ADO U just need Update DAO Example: Code:
Private Sub cmdSave_Click()
With Data1.Reccordset
.Edit
.Fields("Name").Value = "The Text Value"
'other fields.....
'.............
'.........
.Update
End With
End Sub
__________________
I May Have Misinterpret U'r Post Correct Me If I Am Wrong......// Enjoy Coding........................../// zak2zak |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Visual Basic Programming > Database save button |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|