Thank you very much Andrew
Posted by: ozairkhalid@hotmail.com
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (3) |
Thank you very much Andrew
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (3) |
Tata tertib dan peraturan
Mailing List: belajar-access@yahoogroups.com
1. Mailing list ini membahas mengenai pemrograman Microsoft Access.
2. Tidak diperkenankan mem-posting topik yang tidak ada kaitannya sama sekali dengan pemrograman MS Access, peluang kerja atau tawaran kerja sama dengan keahlian di bidang MS Access, atau pengajaran/kursus MS Acces. Pelanggaran terhadap aturan ini akan di-ban dari keanggotaan milis ini.
3. Mohon berdiskusi dengan baik, dengan semangat membangun, demi kemajuan kita bersama. Hindarilah perbantahan (flame) yang bisa menjadi pertengkaran yang tidak perlu.
4 Hindari reply permintaan one-liner seperti 'saya minta juga dong', 'saya setuju', dan lain-lain yang tidak perlu.
5. Sedapat mungkin memberikan data-data yang lengkap dalam mengajukan suatu masalah untuk memudahkan rekan-rekan sesama member mengidentifikasi dan mencarikan solusi, termasuk memberikan subject yang sesuai dengan isi email, tidak dengan kata-kata seperti "tologing dong", "pusing...", "ada yang bisa bantu..", dll.
Moderator
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (123) |
Monthly notices:
Hi Kids!:
Don't forget to check out our "Links" section at the website for helpful sites. Also take a peek at books that others have found worthwhile in our books database under the 'Database' link of the main AccessDevelopers page. Feel free to add any books or links that you have found useful.
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (155) |
Yes, but now that I look at it, if you're passing the name of the current form, then IsLoaded will always be True. Perhaps what you really want is something like:
Jim
Hello all,
I am redesigning an old database and the forms are going to be changed to have some navigation buttons in the form header for more real estate. So I have 6 buttons with transparent properties. My question is that I would like to have the buttons be the same on every form so it is consistent. But if the form related to the button is loaded I want to have the button disabled.
So I put the following code in on load event.below. But I thought this should be in a module and called on every form. But I am stuck at that point. How do I call something like that?
Thank You
Jim Wagner
If CurrentProject.AllForms("frmReportsNew").IsLoaded = True Then
Forms!frmReportsNew!cmdOpenrptReports.Enabled = False
Else
Forms!frmReportsNew!cmdOpenrptReports.Enabled = True
End If
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (7) |
Yes, but now that I look at it, if you're passing the name of the current form, then IsLoaded will always be True. Perhaps what you really want is something like:
Jim
Hello all,
I am redesigning an old database and the forms are going to be changed to have some navigation buttons in the form header for more real estate. So I have 6 buttons with transparent properties. My question is that I would like to have the buttons be the same on every form so it is consistent. But if the form related to the button is loaded I want to have the button disabled.
So I put the following code in on load event.below. But I thought this should be in a module and called on every form. But I am stuck at that point. How do I call something like that?
Thank You
Jim Wagner
If CurrentProject.AllForms("frmReportsNew").IsLoaded = True Then
Forms!frmReportsNew!cmdOpenrptReports.Enabled = False
Else
Forms!frmReportsNew!cmdOpenrptReports.Enabled = True
End If
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (6) |
Jim
Hello all,
I am redesigning an old database and the forms are going to be changed to have some navigation buttons in the form header for more real estate. So I have 6 buttons with transparent properties. My question is that I would like to have the buttons be the same on every form so it is consistent. But if the form related to the button is loaded I want to have the button disabled.
So I put the following code in on load event.below. But I thought this should be in a module and called on every form. But I am stuck at that point. How do I call something like that?
Thank You
Jim Wagner
If CurrentProject.AllForms("frmReportsNew").IsLoaded = True Then
Forms!frmReportsNew!cmdOpenrptReports.Enabled = False
Else
Forms!frmReportsNew!cmdOpenrptReports.Enabled = True
End If
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (5) |
Jim
Hello all,
I am redesigning an old database and the forms are going to be changed to have some navigation buttons in the form header for more real estate. So I have 6 buttons with transparent properties. My question is that I would like to have the buttons be the same on every form so it is consistent. But if the form related to the button is loaded I want to have the button disabled.
So I put the following code in on load event.below. But I thought this should be in a module and called on every form. But I am stuck at that point. How do I call something like that?
Thank You
Jim Wagner
If CurrentProject.AllForms("frmReportsNew").IsLoaded = True Then
Forms!frmReportsNew!cmdOpenrptReports.Enabled = False
Else
Forms!frmReportsNew!cmdOpenrptReports.Enabled = True
End If
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (4) |
Hi David
It's nice that you let us know you found your problem and fixed it. In the future, can you please include the entire thread? It makes it easier for those who post through email to follow.
Regards,
Bill Mosca,
Founder, MS_Access_Professionals
MS Access MVP 2006-2016
That'll do IT http://thatlldoit.com
My Nothing-to-do-with-Access blog
From: MS_Access_Professionals@yahoogroups.com [mailto:MS_Access_Professionals@yahoogroups.com]
Sent: Wednesday, May 31, 2017 4:54 AM
To: MS_Access_Professionals@yahoogroups.com
Subject: [MS_AccessPros] Re: Problems with Access File Picker - *Resolved*
Doh, my bad.
I forgot to define the Function return as FileDialogSelectedItems
Now working OK
Regards to all, David
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (3) |