Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread 'Karen Tellef' via RBASE-L
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 1CAPTION .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 
To: rbase-l@googlegroups.com 
Sent: Sun, Aug 21, 2022 8:31 pm
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

#yiv6784334522 #yiv6784334522 --#yiv6784334522xa4ee28077147422 
p.yiv6784334522MsoNormal{margin:0in;font-size:11pt;font-family:Calibri, 
sans-serif;}#yiv6784334522 #yiv6784334522xa4ee28077147422 
div.yiv6784334522WordSection1{}#yiv6784334522 #yiv6784334522 #yiv6784334522 
--blockquote.yiv6784334522cite 
{margin-left:5px;margin-right:0px;padding-left:10px;padding-right:0px;border-left:1px
 solid #cc;}#yiv6784334522 blockquote.yiv6784334522cite2 
{margin-left:5px;margin-right:0px;padding-left:10px;padding-right:0px;border-left:1px
 solid #cc;margin-top:3px;padding-top:0px;}#yiv6784334522 a img 
{border:0px;}#yiv6784334522 #yiv6784334522 #yiv6784334522 #yiv6784334522 , 
#yiv6784334522 #yiv6784334522 #yiv6784334522 #yiv6784334522 , #yiv6784334522 
#yiv6784334522 #yiv6784334522 #yiv6784334522 , #yiv6784334522 #yiv6784334522 
#yiv6784334522 #yiv6784334522 {list-style-position:inside;}#yiv6784334522 body 
{font-size:12pt;}#yiv6784334522 .yiv6784334522quote 
{margin-left:1em;margin-right:1em;border-left:5px #ebebeb 
solid;padding-left:0.3em;}#yiv6784334522 FWIW: Highlighted the only thing that 
stood out to meBruce

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" To 
"rbase-l@googlegroups.com" Date 8/21/2022 6:11:53 
PMSubject [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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10.
-- 
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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com.

-- 
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 rbase-l+unsubscr...@googlegroups.com.
To view thi

RE: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Dan Goldberg
Mine works, just the multiselect true does not work for me.

Dan Goldberg


From: 'Karen Tellef' via RBASE-L 
Sent: Monday, August 22, 2022 6:47 AM
To: rbase-l@googlegroups.com
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" mailto:d...@lancecamper.com>>
To "rbase-l@googlegroups.com" 
mailto:rbase-l@googlegroups.com>>
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 
rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10.

--
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 
rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com
.
--
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 
rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/142327202.901918.1661175999630%40mail.yahoo.com.

Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Bruce Chitiea

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" 

To "rbase-l@googlegroups.com" 
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 
To: rbase-l@googlegroups.com 
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" 
To "rbase-l@googlegroups.com" 
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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10 
.


--
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 rbase-l+unsubscr...@googlegroups.com.

To view this discussion on the web visit
https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com 


.

--
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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/142327202.901918.1661175999630%40mail.yahoo.com 
.


--
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 

Re: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread 'Karen Tellef' via RBASE-L

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 
To: rbase-l@googlegroups.com 
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" 
To "rbase-l@googlegroups.com" 
Date 8/22/2022 6:46:39 AMSubject 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 1CAPTION .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 
To: rbase-l@googlegroups.com 
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 meBruce

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" To 
"rbase-l@googlegroups.com" Date 8/21/2022 6:11:53 
PMSubject [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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/2E4830CEC16615458329D3D83342F8D0014F0CB565%40EXCHANGE10.
-- 
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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/emf8c5c1d7-fb83-41ef-a681-4a6bda0a8df1%40f8ecd6cd.com.
-- 
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 rbase-l+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/142327202.901918.1661175999630%40mail.yahoo.com.

-- 
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 rbase-l+unsubscr...@googlegroups.com.
To vi

RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Dan Goldberg
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 
Sent: Monday, August 22, 2022 7:20 AM
To: rbase-l@googlegroups.com
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" 
>mailto:rbase-l@googlegroups.com>>
To "rbase-l@googlegroups.com" 
mailto:rbase-l@googlegroups.com>>
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" mailto:d...@lancecamper.com>>
To "rbase-l@googlegroups.com" 
mailto:rbase-l@googlegroups.com>>
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 a

RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread jan johansen
Dan,

Shot in the dark but I know that some commands were pretty finicky about the 
order of options.
Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.

Jan


From: Dan Goldberg 
To: "rbase-l@googlegroups.com" 
Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
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 
Sent:Monday, August 22, 2022 7:20 AM
To:rbase-l@googlegroups.com
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 mailto:rby...@safesectors.com]>
To:rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com]mailto:rbase-l@googlegroups.com]>
Sent: Mon, Aug 22, 2022 8:52 am
Subject: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
Karen:

Your code:
|POPUP_WHEREORDER BY Company +

Dan's code:
| POPUP_WHERE WHEREfull_name IS NOT NULL +

Bruce

-- Original Message --
>From "'Karen Tellef' via RBASE-L" mailto:rbase-l@googlegroups.com]>
To "rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com]"; 
mailto:rbase-l@googlegroups.com]>
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 mailto:rby...@safesectors.com]>
To:rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com]mailto:rbase-l@googlegroups.com]>
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" mailto:d...@lancecamper.com]>
To "rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com]"; 
mailto:rbase-l@googlegroups.com]>
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 

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Doug Hamilton

Jan et al - to minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, 
Shift-Click or Ctrl-Click.


BTW, 'WHERE' is required: | POPUP_*WHERE WHERE* full_name IS NOT NULL +
Doug

On 8/22/2022 10:14 AM, jan johansen wrote:

Dan,
Shot in the dark but I know that some commands were pretty finicky 
about the order of options.

Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.
Jan

From: Dan Goldberg 
To: "rbase-l@googlegroups.com" 
Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
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 
*Sent:* Monday, August 22, 2022 7:20 AM
*To:* rbase-l@googlegroups.com
*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 
To: rbase-l@googlegroups.com 
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" 
To "rbase-l@googlegroups.com" 
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 
To: rbase-l@googlegroups.com 
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 c

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Dan Goldberg
Thx all i put in a bug request to the RBTI crew.

Dan Goldberg
Lance Camper

From: rbase-l@googlegroups.com  on behalf of Doug 
Hamilton 
Sent: Monday, August 22, 2022 8:58:23 AM
To: rbase-l@googlegroups.com 
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Jan et al - to minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, Shift-Click or 
Ctrl-Click.

BTW, 'WHERE' is required: | POPUP_WHERE WHERE full_name IS NOT NULL +
Doug

On 8/22/2022 10:14 AM, jan johansen wrote:
Dan,

Shot in the dark but I know that some commands were pretty finicky about the 
order of options.
Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.

Jan



From: Dan Goldberg 
To: "rbase-l@googlegroups.com" 

Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

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 

Sent: Monday, August 22, 2022 7:20 AM
To: rbase-l@googlegroups.com
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" 
>mailto:rbase-l@googlegroups.com>>
To "rbase-l@googlegroups.com" 
mailto:rbase-l@googlegroups.com>>
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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_

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread bcdavidson
Dan,

Try removing single quotes around 'TRUE' and include Karen's tip on 
POPUP_LIST...:

My lookup with multiselect option works fine:

DIALOG 'Send Email To (use comma to add additional email addresses)' vcidlist 
vendkey 1  +
CAPTION ' Testing Popup with MultiSelect' +
OPTION DIALOG_EDIT_HINT 'Double-Click for a List of Contacts'  +
|POPUP_ENABLED TRUE  +
|POPUP_DIALOG_TYPE LOOKUP  +
|POPUP_TITLE_TEXT 'Select Contact(s) to Add'  +
|POPUP_CAPTION 'List of Contacts'  +
|POPUP_TABLE Contacts +
|POPUP_SELECT Cid,Cname,Cemail  +
|POPUP_WHERE WHERE Cemail IS NOT NULL ORDER BY Cname ASC  +
|POPUP_RETURN_COLUMN Cid  +
|POPUP_SHOW_LINES TRUE  +
|POPUP_RETURN_TYPE column  +
|POPUP_LIST_MULTISELECT TRUE  +
|POPUP_LINES 20

Brad Davidson
bcdavid...@outlook.com

From: rbase-l@googlegroups.com  on behalf of Dan 
Goldberg 
Sent: Monday, August 22, 2022 9:18 AM
To: rbase-l@googlegroups.com 
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Thx all i put in a bug request to the RBTI crew.

Dan Goldberg
Lance Camper

From: rbase-l@googlegroups.com  on behalf of Doug 
Hamilton 
Sent: Monday, August 22, 2022 8:58:23 AM
To: rbase-l@googlegroups.com 
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Jan et al - to minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, Shift-Click or 
Ctrl-Click.

BTW, 'WHERE' is required: | POPUP_WHERE WHERE full_name IS NOT NULL +
Doug

On 8/22/2022 10:14 AM, jan johansen wrote:
Dan,

Shot in the dark but I know that some commands were pretty finicky about the 
order of options.
Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.

Jan



From: Dan Goldberg 
To: "rbase-l@googlegroups.com" 

Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

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 

Sent: Monday, August 22, 2022 7:20 AM
To: rbase-l@googlegroups.com
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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" 
>mailto:rbase-l@googlegroups.com>>
To "rbase-l@googlegroups.com" 
mailto:rbase-l@googlegroups.com>>
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 +
|POP

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread 'Karen Tellef' via RBASE-L
Me too, Doug.  I tried various iterations and couldn't get multi-select to 
work.  Like you I tried clicking, shift and control.  I've never tried to use 
this in production

Karen
 
 
 
-Original Message-
From: Doug Hamilton 
To: rbase-l@googlegroups.com
Sent: Mon, Aug 22, 2022 10:58 am
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

  Jan et al - to minimize irrelevant options, I tried the following:
 
 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  +
  |MULTISELECT ON +
  |POPUP_TABLE CLIENT +
  |POPUP_SELECT c_CliName,EMAIL +
  |POPUP_WHERE +
  WHERE c_CliName IS NOT NULL +
  ORDER BY c_CliName ASC +
  |POPUP_RETURN_COLUMN EMAIL
 
 Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON 
 Table and column names have been changed so it works in my system.
 
 I couldn't get multi-select to work with either multi-clicking, Shift-Click or 
Ctrl-Click.
 
 BTW, 'WHERE' is required: | POPUP_WHERE WHERE full_name IS NOT NULL +
 Doug
 
 On 8/22/2022 10:14 AM, jan johansen wrote:
  
 Dan,   Shot in the dark but I know that some commands were pretty finicky 
about the order of options. Have you tried re-ordering the command? I noticed 
that your "multiselect" option is after your where clause.   Jan       
From: Dan Goldberg 
 To: "rbase-l@googlegroups.com" 
 Date: Mon, 22 Aug 2022 14:42:52 +
 Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
    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 
 Sent: Monday, August 22, 2022 7:20 AM
 To: rbase-l@googlegroups.com
 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 
 To: rbase-l@googlegroups.com 
 Sent: Mon, Aug 22, 2022 8:52 am
 Subject: Re[2]: [RBASE-L] - Using Multiselect in dialog lookupKaren:   
 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" 
   To "rbase-l@googlegroups.com" 
   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 
 To: rbase-l@googlegroups.com 
 Sent: Sun, Aug 21, 2022 8:31 pm
 Subject: Re: [RBASE-L] - Using Multiselect in dialog lookupFWIW: 
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

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Doug Hamilton

Brad's most recent post works.
i think your
|POPUP_LIST_MULTISELECT TRUE  +
was the key.

I haven't used it in production either, but it's pretty cool...

Thanks for putting all permutations together into a working dialog Brad -
Doug

On 8/22/2022 11:55 AM, 'Karen Tellef' via RBASE-L wrote:
Me too,Doug.  I tried various iterations and couldn't get multi-select 
to work.  Like you I tried clicking, shift and control.  I've never 
tried to use this in production


Karen



-Original Message-
From: Doug Hamilton 
To: rbase-l@googlegroups.com
Sent: Mon, Aug 22, 2022 10:58 am
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Jan et al - to minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, 
Shift-Click or Ctrl-Click.


BTW, 'WHERE' is required: | POPUP_*WHERE WHERE* full_name IS NOT NULL +
Doug

On 8/22/2022 10:14 AM, jan johansen wrote:

Dan,
Shot in the dark but I know that some commands were pretty finicky 
about the order of options.

Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.
Jan

From: Dan Goldberg 

To: "rbase-l@googlegroups.com" 
 
Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
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 

*Sent:* Monday, August 22, 2022 7:20 AM
*To:* rbase-l@googlegroups.com 
*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 mailto:rby...@safesectors.com>>
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
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" mailto:rbase-l@googlegroups.com>>
To "rbase-l@googlegroups.com "
mailto:rbase-l@googlegroups.com>>
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_

Re: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread 'Karen Tellef' via RBASE-L
Hey, Brad is right  I removed the quotes around 'TRUE' and it works now!  
The print-screen that I had copied from the What's New when it was announced 
had quotes

Karen
 
 
 
-Original Message-
From: bcdavid...@outlook.com
To: rbase-l@googlegroups.com 
Sent: Mon, Aug 22, 2022 11:25 am
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

#yiv5784782385 P {margin-top:0;margin-bottom:0;}Dan,
Try removing single quotes around 'TRUE' and include Karen's tip on 
POPUP_LIST...:
My lookup with multiselect option works fine:
DIALOG 'Send Email To (use comma to add additional email addresses)' vcidlist 
vendkey 1  +CAPTION ' Testing Popup with MultiSelect' +OPTION DIALOG_EDIT_HINT 
'Double-Click for a List of Contacts'  +|POPUP_ENABLED TRUE  
+|POPUP_DIALOG_TYPE LOOKUP  +|POPUP_TITLE_TEXT 'Select Contact(s) to Add'  
+|POPUP_CAPTION 'List of Contacts'  +|POPUP_TABLE Contacts +|POPUP_SELECT 
Cid,Cname,Cemail  +|POPUP_WHERE WHERE Cemail IS NOT NULL ORDER BY Cname ASC  
+|POPUP_RETURN_COLUMN Cid  +|POPUP_SHOW_LINES TRUE  +|POPUP_RETURN_TYPE column  
+|POPUP_LIST_MULTISELECT TRUE  +|POPUP_LINES 20

Brad Davidsonbcdavidson@outlook.comFrom: rbase-l@googlegroups.com 
 on behalf of Dan Goldberg 
Sent: Monday, August 22, 2022 9:18 AM
To: rbase-l@googlegroups.com 
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup Thx all i put in a 
bug request to the RBTI crew. 
Dan GoldbergLance CamperFrom: rbase-l@googlegroups.com 
 on behalf of Doug Hamilton 
Sent: Monday, August 22, 2022 8:58:23 AM
To: rbase-l@googlegroups.com 
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup Jan et al - to 
minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place ofMULTISELECT ON 
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, Shift-Click or 
Ctrl-Click.

BTW, 'WHERE' is required: | POPUP_WHERE WHERE full_name IS NOT NULL +
Doug

On 8/22/2022 10:14 AM, jan johansen wrote:

Dan, Shot in the dark but I know that some commands were pretty finicky about 
the order of options.Have you tried re-ordering the command?I noticed that your 
"multiselect" option is after your where clause. Jan   
From: Dan Goldberg 
To: "rbase-l@googlegroups.com"
Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup
 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 
Sent: Monday, August 22, 2022 7:20 AM
To: rbase-l@googlegroups.com
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 
To: rbase-l@googlegroups.com 
Sent: Mon, Aug 22, 2022 8:52 am
Subject: Re[2]: [RBASE-L] - Using Multiselect in dialog lookupKaren: 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" To "rbase-l@googlegroups.com" 
Date 8/22/2022 6:46:39 AMSubject 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 +
|POP

RE: [RBASE-L] - Using Multiselect in dialog lookup

2022-08-22 Thread Dan Goldberg
Thx the removal of quote did the trick. I will let rbti know they need to 
update the inline help.

Thx all for your help!

Dan Goldberg

From: 'Karen Tellef' via RBASE-L 
Sent: Monday, August 22, 2022 10:11 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Hey, Brad is right  I removed the quotes around 'TRUE' and it works now!  
The print-screen that I had copied from the What's New when it was announced 
had quotes


Karen




-Original Message-
From: bcdavid...@outlook.com
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
Sent: Mon, Aug 22, 2022 11:25 am
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup
Dan,

Try removing single quotes around 'TRUE' and include Karen's tip on 
POPUP_LIST...:

My lookup with multiselect option works fine:

DIALOG 'Send Email To (use comma to add additional email addresses)' vcidlist 
vendkey 1  +
CAPTION ' Testing Popup with MultiSelect' +
OPTION DIALOG_EDIT_HINT 'Double-Click for a List of Contacts'  +
|POPUP_ENABLED TRUE  +
|POPUP_DIALOG_TYPE LOOKUP  +
|POPUP_TITLE_TEXT 'Select Contact(s) to Add'  +
|POPUP_CAPTION 'List of Contacts'  +
|POPUP_TABLE Contacts +
|POPUP_SELECT Cid,Cname,Cemail  +
|POPUP_WHERE WHERE Cemail IS NOT NULL ORDER BY Cname ASC  +
|POPUP_RETURN_COLUMN Cid  +
|POPUP_SHOW_LINES TRUE  +
|POPUP_RETURN_TYPE column  +
|POPUP_LIST_MULTISELECT TRUE  +
|POPUP_LINES 20

Brad Davidson
bcdavid...@outlook.com

From: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> on behalf of Dan 
Goldberg mailto:d...@lancecamper.com>>
Sent: Monday, August 22, 2022 9:18 AM
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Thx all i put in a bug request to the RBTI crew.

Dan Goldberg
Lance Camper

From: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> on behalf of Doug 
Hamilton mailto:bugl...@wi.rr.com>>
Sent: Monday, August 22, 2022 8:58:23 AM
To: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>>
Subject: Re: [RBASE-L] - Using Multiselect in dialog lookup

Jan et al - to minimize irrelevant options, I tried the following:

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  +
 |MULTISELECT ON +
 |POPUP_TABLE CLIENT +
 |POPUP_SELECT c_CliName,EMAIL +
 |POPUP_WHERE +
 WHERE c_CliName IS NOT NULL +
 ORDER BY c_CliName ASC +
 |POPUP_RETURN_COLUMN EMAIL

Also tried POPUP_LIST_MULTISELECT 'TRUE' in place of MULTISELECT ON
Table and column names have been changed so it works in my system.

I couldn't get multi-select to work with either multi-clicking, Shift-Click or 
Ctrl-Click.

BTW, 'WHERE' is required: | POPUP_WHERE WHERE full_name IS NOT NULL +
Doug
On 8/22/2022 10:14 AM, jan johansen wrote:
Dan,

Shot in the dark but I know that some commands were pretty finicky about the 
order of options.
Have you tried re-ordering the command?
I noticed that your "multiselect" option is after your where clause.

Jan



From: Dan Goldberg 
To: "rbase-l@googlegroups.com" 

Date: Mon, 22 Aug 2022 14:42:52 +
Subject: RE: Re[2]: [RBASE-L] - Using Multiselect in dialog lookup

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 

Sent: Monday, August 22, 2022 7:20 AM
To: rbase-l@googlegroups.com
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_MULTISELE