Thx but it multiselect is still not working. here is my command. Maybe I am not seeing why the multiselect would not trigger. It pops up but cannot multi select.
DIALOG 'Send Email To(use comma to add additional email addresses)' veemail + whtemp 1 CAPTION .vecaption OPTION DIALOG_EDIT_HINT + 'Double-Click for a List of Contacts' |POPUP_ENABLED ON | POPUP_DIALOG_TYPE + LOOKUP |POPUP_TITLE_FONT_NAME VERDANA | POPUP_TITLE_FONT_SIZE 10 |+ POPUP_TITLE_FONT_BOLD TRUE | POPUP_TITLE_FONT_COLOR GREEN |+ POPUP_TITLE_BACK_COLOR WHITE | POPUP_TITLE_TEXT 'Select Contact(s) to Add' |+ POPUP_LIST_FONT_COLOR GREEN | POPUP_LIST_BACK_COLOR WHITE |+ POPUP_CAPTION 'List of Contacts' | POPUP_TABLE Menuaccess |+ POPUP_SELECT Full_Name,EmailAdd |POPUP_WHERE WHERE full_name IS NOT NULL + ORDER BY full_name ASC | POPUP_LIST_MULTISELECT 'TRUE' | + POPUP_RETURN_COLUMN emailadd |POPUP_SHOW_LINES TRUE |POPUP_RETURN_TYPE + COLUMN | POPUP_LINES 20 Dan Goldberg From: 'Karen Tellef' via RBASE-L <[email protected]> Sent: Monday, August 22, 2022 7:20 AM To: [email protected] Subject: Re: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup Hey Dan, I missed that you're asking about the multi-select! Here's the code that I use for that, different than what you have POPUP_LIST_MULTISELECT 'TRUE' Karen -----Original Message----- From: Bruce Chitiea <[email protected]<mailto:[email protected]>> To: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> Sent: Mon, Aug 22, 2022 8:52 am Subject: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup Karen: Your code: |POPUP_WHERE ORDER BY Company + Dan's code: | POPUP_WHERE WHERE full_name IS NOT NULL + Bruce ------ Original Message ------ >From "'Karen Tellef' via RBASE-L" ><[email protected]<mailto:[email protected]>> To "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>> Date 8/22/2022 6:46:39 AM Subject Re: [RBASE-L] - Using Multiselect in dialog lookup Bruce: your code looks identical to what I use, but with one exception. In none of the rows do I have quotation marks. Not sure I see any other differences (mine also has a bunch of font settings I left out here). Here's an example of a live one that works for me: DIALOG 'Enter Customer ID' vResponse=33 vEndKey 1 CAPTION .vCaption ICON APP + OPTION DIALOG_EDIT_HINT Double-Click for List of Customers + |POPUP_ENABLED TRUE + |POPUP_DIALOG_TYPE LOOKUP + |POPUP_CAPTION List of Customers + |POPUP_TABLE Customer + |POPUP_SELECT Company, CustCity + ',' & CustState & CustZip + |POPUP_RETURN_COLUMN CustID + |POPUP_WHERE ORDER BY Company + |POPUP_SHOW_LINES TRUE + |POPUP_RETURN_TYPE COLUMN + |POPUP_LINES 20 + |POPUP_DISTINCT TRUE Karen -----Original Message----- From: Bruce Chitiea <[email protected]<mailto:[email protected]>> To: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> Sent: Sun, Aug 21, 2022 8:31 pm Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup FWIW: Highlighted the only thing that stood out to me Bruce DIALOG 'Send Email To(use comma to add additional email addresses)' veemail whtemp 1 + CAPTION .vecaption + OPTION DIALOG_EDIT_HINT 'Double-Click for a List of Contacts' + |POPUP_ENABLED TRUE + -- rsyntax: POPUP_ENABLED [ ON | OFF ] |POPUP_DIALOG_TYPE LOOKUP + |POPUP_TITLE_TEXT 'Select Contact(s) to Add' + |POPUP_CAPTION 'List of Contacts' + |POPUP_TABLE Menuaccess + |POPUP_SELECT Full_Name,EmailAdd + |POPUP_WHERE WHERE full_name IS NOT NULL ORDER BY full_name ASC + |POPUP_RETURN_COLUMN emailadd + |POPUP_SHOW_LINES TRUE + |POPUP_RETURN_TYPE column + |MULTISELECT TRUE + |POPUP_LINES 20 ------ Original Message ------ >From "Dan Goldberg" <[email protected]<mailto:[email protected]>> To "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>> Date 8/21/2022 6:11:53 PM Subject [RBASE-L] - Using Multiselect in dialog lookup I have the following command to bring up a popup. It works but I cannot get the multiselect to work in the popup. Anyone have any blues clues on what I am doing wrong? DIALOG 'Send Email To(use comma to add additional email addresses)' veemail + whtemp 1 CAPTION .vecaption OPTION DIALOG_EDIT_HINT + 'Double-Click for a List of Contacts' |POPUP_ENABLED TRUE | + POPUP_DIALOG_TYPE LOOKUP |POPUP_TITLE_FONT_NAME VERDANA | + POPUP_TITLE_FONT_SIZE 10 |POPUP_TITLE_FONT_BOLD TRUE | + POPUP_TITLE_FONT_COLOR GREEN |POPUP_TITLE_BACK_COLOR WHITE | + POPUP_TITLE_TEXT 'Select Contact(s) to Add' |POPUP_LIST_FONT_COLOR GREEN | + POPUP_LIST_BACK_COLOR WHITE |POPUP_CAPTION 'List of Contacts' | + POPUP_TABLE Menuaccess |POPUP_SELECT Full_Name,EmailAdd | POPUP_WHERE + WHERE full_name IS NOT NULL + ORDER BY full_name ASC | POPUP_RETURN_COLUMN emailadd |POPUP_SHOW_LINES + TRUE |POPUP_RETURN_TYPE column | MULTISELECT TRUE | POPUP_LINES 20 TIA Dan Goldberg -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10<https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10?utm_medium=email&utm_source=footer>. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com<https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com?utm_medium=email&utm_source=footer> . -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/142327202.901918.1661175999630%40mail.yahoo.com<https://groups.google.com/d/msgid/rbase-l/142327202.901918.1661175999630%40mail.yahoo.com?utm_medium=email&utm_source=footer>. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/em1720272f-e715-4c94-a13b-1c69ca5836f6%40b5177485.com<https://groups.google.com/d/msgid/rbase-l/em1720272f-e715-4c94-a13b-1c69ca5836f6%40b5177485.com?utm_medium=email&utm_source=footer>. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/1017491601.918362.1661178025956%40mail.yahoo.com<https://groups.google.com/d/msgid/rbase-l/1017491601.918362.1661178025956%40mail.yahoo.com?utm_medium=email&utm_source=footer>. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CBEB9%40EXCHANGE10.

