![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
Sue,
Sorry...I'm wondering if you could give me a quick click by click description...I want to create a list of clients (stored either within Outlook or somewhere else like Access) which will come up in my list box. Do I go - right click on list box - properties - values - choose field? (and if so where from there)? (I appreciate any answer...you seem busy!) Slappy "Sue Mosher [MVP-Outlook]" wrote: Use the AddItem or (better yet) List method to populate the combo box. See http://www.outlookcode.com/d/formcontrols.htm#listcombo -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Mel" wrote in message ... I've tried creating forms and want to lock down the specific selections from my team. I figured the dropdown would be my best bet. But I can't get beyond one selection to put into the box. |
#2
|
|||
|
|||
![]()
Choose Field allows you to bind a control on your form to an Outlook property, so that the data the user enters is stored in the item when it's saved. It doesn't have a lot to do with populating a list box, unless you want a static list that doesn't change. That doesn't sound like what you want, but you really haven't sketched out enough of your scenario for me to make concrete suggestions. Did you look at the custom form sample on the page I suggested? Maybe that will give you some context to describe what you want.
Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Slappy" wrote in message news ![]() Sue, Sorry...I'm wondering if you could give me a quick click by click description...I want to create a list of clients (stored either within Outlook or somewhere else like Access) which will come up in my list box. Do I go - right click on list box - properties - values - choose field? (and if so where from there)? (I appreciate any answer...you seem busy!) Slappy "Sue Mosher [MVP-Outlook]" wrote: Use the AddItem or (better yet) List method to populate the combo box. See http://www.outlookcode.com/d/formcontrols.htm#listcombo "Mel" wrote in message ... I've tried creating forms and want to lock down the specific selections from my team. I figured the dropdown would be my best bet. But I can't get beyond one selection to put into the box. |
#3
|
|||
|
|||
![]()
Sue,
Thanks for the reply. I run a small law practise. Essentially I want a way to create notes that are capable of being assigned to different clients (the notes would be linked to an Access database where they can be better analyzed and stored). The list box should show an ever changing list of current clients. I tried to modify the template for Business Notes but that doesn't seem to be working. I then tried to modify a Journal Entry Form. Can you offer any suggestions or assistance? Slappy "Sue Mosher [MVP-Outlook]" wrote: Choose Field allows you to bind a control on your form to an Outlook property, so that the data the user enters is stored in the item when it's saved. It doesn't have a lot to do with populating a list box, unless you want a static list that doesn't change. That doesn't sound like what you want, but you really haven't sketched out enough of your scenario for me to make concrete suggestions. Did you look at the custom form sample on the page I suggested? Maybe that will give you some context to describe what you want. Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Slappy" wrote in message news ![]() Sue, Sorry...I'm wondering if you could give me a quick click by click description...I want to create a list of clients (stored either within Outlook or somewhere else like Access) which will come up in my list box. Do I go - right click on list box - properties - values - choose field? (and if so where from there)? (I appreciate any answer...you seem busy!) Slappy "Sue Mosher [MVP-Outlook]" wrote: Use the AddItem or (better yet) List method to populate the combo box. See http://www.outlookcode.com/d/formcontrols.htm#listcombo "Mel" wrote in message ... I've tried creating forms and want to lock down the specific selections from my team. I figured the dropdown would be my best bet. But I can't get beyond one selection to put into the box. |
#4
|
|||
|
|||
![]()
Do you mean notes as in email messages? Notes as in journal entries?
"template for Business Notes"? Are you talking about Business Contact Manager? Where would the list of clients come from? An external database? If so, then you'll need to write ADO code behind the form to do the lookup; see http://www.outlookcode.com/d/database.htm That page also has tools for exposing an existing database in Outlook. "notes linked to an Access database"? Are you thinking of storing information from the notes in the database? Using the built-in linking to OUtlook that Access has? These are also key issues still: Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc As you're probably catching on, what you're describing is not a simple step-by-step operation. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Slappy" wrote in message news ![]() Sue, Thanks for the reply. I run a small law practise. Essentially I want a way to create notes that are capable of being assigned to different clients (the notes would be linked to an Access database where they can be better analyzed and stored). The list box should show an ever changing list of current clients. I tried to modify the template for Business Notes but that doesn't seem to be working. I then tried to modify a Journal Entry Form. Can you offer any suggestions or assistance? Slappy "Sue Mosher [MVP-Outlook]" wrote: Choose Field allows you to bind a control on your form to an Outlook property, so that the data the user enters is stored in the item when it's saved. It doesn't have a lot to do with populating a list box, unless you want a static list that doesn't change. That doesn't sound like what you want, but you really haven't sketched out enough of your scenario for me to make concrete suggestions. Did you look at the custom form sample on the page I suggested? Maybe that will give you some context to describe what you want. Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc. "Slappy" wrote in message news ![]() Sue, Sorry...I'm wondering if you could give me a quick click by click description...I want to create a list of clients (stored either within Outlook or somewhere else like Access) which will come up in my list box. Do I go - right click on list box - properties - values - choose field? (and if so where from there)? (I appreciate any answer...you seem busy!) Slappy "Sue Mosher [MVP-Outlook]" wrote: Use the AddItem or (better yet) List method to populate the combo box. See http://www.outlookcode.com/d/formcontrols.htm#listcombo "Mel" wrote in message ... I've tried creating forms and want to lock down the specific selections from my team. I figured the dropdown would be my best bet. But I can't get beyond one selection to put into the box. |
#5
|
|||
|
|||
![]()
Thanks...yes I intend to store the information from the notes in the external
database. I'll look into learning more about ADO code. If I write back I'll try to have more precise terminology. Thanks for pointing me in the right direction. "Sue Mosher [MVP-Outlook]" wrote: Do you mean notes as in email messages? Notes as in journal entries? "template for Business Notes"? Are you talking about Business Contact Manager? Where would the list of clients come from? An external database? If so, then you'll need to write ADO code behind the form to do the lookup; see http://www.outlookcode.com/d/database.htm That page also has tools for exposing an existing database in Outlook. "notes linked to an Access database"? Are you thinking of storing information from the notes in the database? Using the built-in linking to OUtlook that Access has? These are also key issues still: Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc As you're probably catching on, what you're describing is not a simple step-by-step operation. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Slappy" wrote in message news ![]() Sue, Thanks for the reply. I run a small law practise. Essentially I want a way to create notes that are capable of being assigned to different clients (the notes would be linked to an Access database where they can be better analyzed and stored). The list box should show an ever changing list of current clients. I tried to modify the template for Business Notes but that doesn't seem to be working. I then tried to modify a Journal Entry Form. Can you offer any suggestions or assistance? Slappy "Sue Mosher [MVP-Outlook]" wrote: Choose Field allows you to bind a control on your form to an Outlook property, so that the data the user enters is stored in the item when it's saved. It doesn't have a lot to do with populating a list box, unless you want a static list that doesn't change. That doesn't sound like what you want, but you really haven't sketched out enough of your scenario for me to make concrete suggestions. Did you look at the custom form sample on the page I suggested? Maybe that will give you some context to describe what you want. Other key issues are what type of form (message, contact, etc.), whether you're using Exchange as your mail server, where you plan to publish the form, etc. "Slappy" wrote in message news ![]() Sorry...I'm wondering if you could give me a quick click by click description...I want to create a list of clients (stored either within Outlook or somewhere else like Access) which will come up in my list box. Do I go - right click on list box - properties - values - choose field? (and if so where from there)? (I appreciate any answer...you seem busy!) Slappy "Sue Mosher [MVP-Outlook]" wrote: Use the AddItem or (better yet) List method to populate the combo box. See http://www.outlookcode.com/d/formcontrols.htm#listcombo "Mel" wrote in message ... I've tried creating forms and want to lock down the specific selections from my team. I figured the dropdown would be my best bet. But I can't get beyond one selection to put into the box. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Create a macro to send e-mails to microsoft image writer | Scott | Outlook and VBA | 1 | June 9th 06 07:37 PM |
Create form | lmossolle | Outlook - Using Forms | 5 | May 2nd 06 10:15 PM |
how i create combination field in outlook form? | regards, A.s | Outlook - Using Forms | 1 | April 18th 06 02:02 PM |
Is it possible to create and publish Outlook Custom Form through VBA | [email protected] | Outlook - General Queries | 3 | March 10th 06 10:25 PM |
Is it possible to create and publish Outlook Custom Form through VBA | [email protected] | Outlook - General Queries | 1 | March 10th 06 03:51 PM |