Pdf udh koq. Plz cek
pdf nya dong engkong...
tqqqq
must hdi s
Posted by: privat access <les.access@gmail.com>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (4) |
Pdf udh koq. Plz cek
pdf nya dong engkong...
tqqqq
must hdi s
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (4) |
pdf nya dong engkong...
tqqqq
must hdi s
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (3) |
Hi Duane
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (5) |
Hi Glen
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (4) |
You might consider MZ Tools. https://www.mztools.com/v8/purchase.aspx Earlier versions had been free but this handy tool is a real time saver for storing code snippets, adding error handling, and much more. You might find it well worth the cost.
Regards,
Duane
www.mztools.com Note: prices do not include applicable taxes in some countries (EU VAT, etc.) Free upgrade for customers of MZ-Tools 7.0: you should have received an e-mail with the ... |
Hi Everyone
I'm looking for your thoughts on this, any help appreciated. I'm finding as I code more modules, I would like to re-use that little trick again. Rather than rely on my memory that may or not remember that I solved that problem in database xyz, I'd like to save code to be found at a later date. What I'm thinking is to copy the code into a OneNote page and give it a reasonable title. I'd be able to search OneNote and copy and paste it into my new database. Is there a slicker way to have a central code store? I'm using Office 2016.
Many thanks
Ray
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (3) |
Ray,
You could set up an Access file as a code library and import the module into it, then export code from it when needed You can also have a compiled version of the library and set up a reference to it in the VBA. With a code library, the code needs to be generic. That sometimes takes a while to design and write but having a code library can prove to be a worthwhile investment of your time.
Glenn
From: MS_Access_Professionals@yahoogroups.com [mailto:MS_Access_Professionals@yahoogroups.com]
Sent: Tuesday, November 29, 2016 1:35 PM
To: MS_Access_Professionals@yahoogroups.com
Subject: [MS_AccessPros] Finding and re-using code
Hi Everyone
I'm looking for your thoughts on this, any help appreciated. I'm finding as I code more modules, I would like to re-use that little trick again. Rather than rely on my memory that may or not remember that I solved that problem in database xyz, I'd like to save code to be found at a later date. What I'm thinking is to copy the code into a OneNote page and give it a reasonable title. I'd be able to search OneNote and copy and paste it into my new database. Is there a slicker way to have a central code store? I'm using Office 2016.
Many thanks
Ray
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (2) |
Hi Everyone
I'm looking for your thoughts on this, any help appreciated. I'm finding as I code more modules, I would like to re-use that little trick again. Rather than rely on my memory that may or not remember that I solved that problem in database xyz, I'd like to save code to be found at a later date. What I'm thinking is to copy the code into a OneNote page and give it a reasonable title. I'd be able to search OneNote and copy and paste it into my new database. Is there a slicker way to have a central code store? I'm using Office 2016.
Many thanks
Ray
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |
James,
In Access you will most likely do this in a form using code/vba in the AfterUpdate event of the PercentageComplete text box. Your code might look something like:
Hi
Help me with a function that performs the action below:
When a user updates "PercentageComplete" field then "AsAtDate" field should stamp current date and time.
Thanks.
James
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (2) |
Hi Help me with a function that performs the action below: When a user updates "PercentageComplete" field then "AsAtDate" field should stamp current date and time. Thanks. James
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |
Art-
Private Sub cmdBrowse_Click()
Dim fDialog As Office.FileDialog
Dim varFile As Variant
' Clear listbox contents. '
Me.FileList.RowSource = ""
' Set up the File Dialog. '
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
' Allow user to make multiple selections in dialog box '
.AllowMultiSelect = True
' Set the title of the dialog box. '
.Title = "Please select one or more files"
' Clear out the current filters, and add our own.'
.Filters.Clear
.Filters.Add "Access Databases", "*.MDB"
.Filters.Add "Access Projects", "*.ADP"
.Filters.Add "All Files", "*.*"
' Show the dialog box. If the .Show method returns True, the '
' user picked at least one file. If the .Show method returns '
' False, the user clicked Cancel. '
If .Show = True Then
'Loop through each file selected and add it to our list box. '
For Each varFile In .SelectedItems
Me.FileList.AddItem varFile
Next
Else
MsgBox "You clicked Cancel in the file dialog box."
End If
End With
End Sub
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (2) |
Private Sub cmdBrowse_Click()
Dim fDialog As Office.FileDialog
Dim varFile As Variant
' Clear listbox contents. '
Me.FileList.RowSource = ""
' Set up the File Dialog. '
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
' Allow user to make multiple selections in dialog box '
.AllowMultiSelect = True
' Set the title of the dialog box. '
.Title = "Please select one or more files"
' Clear out the current filters, and add our own.'
.Filters.Clear
.Filters.Add "Access Databases", "*.MDB"
.Filters.Add "Access Projects", "*.ADP"
.Filters.Add "All Files", "*.*"
' Show the dialog box. If the .Show method returns True, the '
' user picked at least one file. If the .Show method returns '
' False, the user clicked Cancel. '
If .Show = True Then
'Loop through each file selected and add it to our list box. '
For Each varFile In .SelectedItems
Me.FileList.AddItem varFile
Next
Else
MsgBox "You clicked Cancel in the file dialog box."
End If
End With
End Sub
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |