Re: [RBASE-L] - Choose command with headers

2021-02-23 Thread 'Karen Tellef' via RBASE-L
EXCELLENT point both of you.  I do try to stop using rather old technology 
(like scrolling regions).  I actually had another RBase programmer ask me if I 
had ever used Headers in Choose because he was trying to get it to work and 
couldn't so I told him I'd mess around with it a bit and get back to him

Karen
 
 
 
-Original Message-
From: baue...@gmail.com 
To: RBASE-L 
Sent: Tue, Feb 23, 2021 11:43 am
Subject: Re: [RBASE-L] - Choose command with headers

I'm with jan... been my pick for some years.

On Tuesday, February 23, 2021 at 11:36:43 AM UTC-5 janj wrote:

Karen, I guess I would have just done a quick form using a VariableListView. 
Jan   


From: "'Karen Tellef' via RBASE-L" 
To: "rba...@googlegroups.com" 
Date: Tue, 23 Feb 2021 15:06:52 + (UTC)
Subject: [RBASE-L] - Choose command with headers
 I played around with being able to put HEADERS above the columns in a CHOOSE 
command.  I think every programmer has wanted that since the "beginning of 
time"! I started out with RBTI's example code that runs against ConComp and it 
works great to display 2 columns of data.  What I tried to do was add a third 
column to their example (the sys_table_type in the command below).  It took 
quite a while, but my conclusions are: 1.  You must have Vertical Lines ON.  I 
am unable to get it to work without having vertical lines on. 2.  I then 
fiddled with the Vertical Line Breaks line until the headers lined up perfect 
with the vertical lines.  No rhyme or reason, I just plugged in random numbers 
til it worked. 3.  Then I played with the Text Breaks line until the data all 
lined up perfectly. Has anyone used this?  Am I correct in that you must have 
Vertical Lines ON?  And I'm guessing there's no shortcut to guessing on the 2 
list of numbers since pixels would depend on your font size, etc. I'll attach a 
picture of my choose command with the 3rd column added.  Code below.  CHOOSE 
vTableViewName FROM #VALUES FOR +
((LJS(SYS_TABLE_NAME,35))&LJS(SYS_COMMENT,75) & 
ljs(sys_table_type,10)),SYS_TABLE_NAME FROM SYS_TABLES +
WHERE SYS_TABLE_TYPE <> 'SYSTEM TABLE' ORDER BY SYS_TABLE_NAME ASC +
CHKBOX 1 TITLE 'Select Table/View' +
CAPTION 'Tables' LINES 26 FORMATTED +
OPTION TITLE_BACK_COLOR WHITE +
|TITLE_FONT_NAME Segoe UI  +
|TITLE_FONT_SIZE 16 +
|TITLE_FONT_COLOR BLACK +
|TITLE_BOLD ON +
|LIST_BACK_COLOR WHITE +
|LIST_FONT_NAME Tahoma +
|LIST_FONT_SIZE 9 +
|LIST_FONT_COLOR NAVY +
|WINDOW_BACK_COLOR WHITE +
|BUTTON_OK_CAPTION &Continue +
|BUTTON_CANCEL_CAPTION C&ancel +
|BUTTONS_SHOW_GLYPH ON +
|LINE_COLOR black +
|ZEBRA_STRIPES ON +
|ZEBRA_ODD_COLOR 3DLIGHT +
|ZEBRA_EVEN_COLOR WINDOW +
|HORIZONTAL_LINES ON +
|VERTICAL_LINES ON +
|VERTICAL_LINE_BREAKS 150,450 +
|TEXT_BREAKS 36,112 +
|HEADERS Table Name,Description,Type

Karen  

--
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+u...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/660651785.1231586.1614092812858%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 view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/6a2e1631-944c-4a2f-8446-74d2950f18f9n%40googlegroups.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/1680405237.1324863.1614106434983%40mail.yahoo.com.


Re: [RBASE-L] - Choose command with headers

2021-02-23 Thread baue...@gmail.com
I'm with jan... been my pick for some years.[image: lvwChoose.jpg]

On Tuesday, February 23, 2021 at 11:36:43 AM UTC-5 janj wrote:

> Karen,
>  
> I guess I would have just done a quick form using a VariableListView.
>  
> Jan
>  
>  
>   
>
> From: "'Karen Tellef' via RBASE-L" 
> To: "rba...@googlegroups.com" 
> Date: Tue, 23 Feb 2021 15:06:52 + (UTC)
> Subject: [RBASE-L] - Choose command with headers
>   
> I played around with being able to put HEADERS above the columns in a 
> CHOOSE command.  I think every programmer has wanted that since the 
> "beginning of time"!
>  
> I started out with RBTI's example code that runs against ConComp and it 
> works great to display 2 columns of data.  What I tried to do was add a 
> third column to their example (the sys_table_type in the command below).  
> It took quite a while, but my conclusions are:
>  
> 1.  You must have Vertical Lines ON.  I am unable to get it to work 
> without having vertical lines on.
>  
> 2.  I then fiddled with the Vertical Line Breaks line until the headers 
> lined up perfect with the vertical lines.  No rhyme or reason, I just 
> plugged in random numbers til it worked.
>  
> 3.  Then I played with the Text Breaks line until the data all lined up 
> perfectly.
>  
> Has anyone used this?  Am I correct in that you must have Vertical Lines 
> ON?  And I'm guessing there's no shortcut to guessing on the 2 list of 
> numbers since pixels would depend on your font size, etc.
>  
> I'll attach a picture of my choose command with the 3rd column added.  
> Code below.
>  
>  
> CHOOSE vTableViewName FROM #VALUES FOR +
> ((LJS(SYS_TABLE_NAME,35))&LJS(SYS_COMMENT,75) & 
> ljs(sys_table_type,10)),SYS_TABLE_NAME FROM SYS_TABLES +
> WHERE SYS_TABLE_TYPE <> 'SYSTEM TABLE' ORDER BY SYS_TABLE_NAME ASC +
> CHKBOX 1 TITLE 'Select Table/View' +
> CAPTION 'Tables' LINES 26 FORMATTED +
> OPTION TITLE_BACK_COLOR WHITE +
> |TITLE_FONT_NAME Segoe UI  +
> |TITLE_FONT_SIZE 16 +
> |TITLE_FONT_COLOR BLACK +
> |TITLE_BOLD ON +
> |LIST_BACK_COLOR WHITE +
> |LIST_FONT_NAME Tahoma +
> |LIST_FONT_SIZE 9 +
> |LIST_FONT_COLOR NAVY +
> |WINDOW_BACK_COLOR WHITE +
> |BUTTON_OK_CAPTION &Continue +
> |BUTTON_CANCEL_CAPTION C&ancel +
> |BUTTONS_SHOW_GLYPH ON +
> |LINE_COLOR black +
> |ZEBRA_STRIPES ON +
> |ZEBRA_ODD_COLOR 3DLIGHT +
> |ZEBRA_EVEN_COLOR WINDOW +
> |HORIZONTAL_LINES ON +
> |VERTICAL_LINES ON +
> |VERTICAL_LINE_BREAKS 150,450 +
> |TEXT_BREAKS 36,112 +
> |HEADERS Table Name,Description,Type
>
>  
>  
>  
>   
> Karen
>  
>  
>
> --
> 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+u...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/rbase-l/660651785.1231586.1614092812858%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 view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/6a2e1631-944c-4a2f-8446-74d2950f18f9n%40googlegroups.com.


Re: [RBASE-L] - Choose command with headers

2021-02-23 Thread jan johansen
Karen,



I guess I would have just done a quick form using a VariableListView.



Jan







From: "'Karen Tellef' via RBASE-L" 
To: "rbase-l@googlegroups.com" 
Date: Tue, 23 Feb 2021 15:06:52 + (UTC)
Subject: [RBASE-L] - Choose command with headers


I played around with being able to put HEADERS above the columns in a CHOOSE 
command.  I think every programmer has wanted that since the "beginning of 
time"!


I started out with RBTI's example code that runs against ConComp and it 
works great to display 2 columns of data.  What I tried to do was add a 
third column to their example (the sys_table_type in the command below).  It 
took quite a while, but my conclusions are:


1.  You must have Vertical Lines ON.  I am unable to get it to work without 
having vertical lines on.


2.  I then fiddled with the Vertical Line Breaks line until the headers 
lined up perfect with the vertical lines.  No rhyme or reason, I just 
plugged in random numbers til it worked.


3.  Then I played with the Text Breaks line until the data all lined up 
perfectly.


Has anyone used this?  Am I correct in that you must have Vertical Lines ON? 
 And I'm guessing there's no shortcut to guessing on the 2 list of numbers 
since pixels would depend on your font size, etc.


I'll attach a picture of my choose command with the 3rd column added.  Code 
below.




CHOOSE vTableViewName FROM #VALUES FOR +
((LJS(SYS_TABLE_NAME,35))&LJS(SYS_COMMENT,75) & 
ljs(sys_table_type,10)),SYS_TABLE_NAME FROM SYS_TABLES +
WHERE SYS_TABLE_TYPE <> 'SYSTEM TABLE' ORDER BY SYS_TABLE_NAME ASC +
CHKBOX 1 TITLE 'Select Table/View' +
CAPTION 'Tables' LINES 26 FORMATTED +
OPTION TITLE_BACK_COLOR WHITE +
|TITLE_FONT_NAME Segoe UI  +
|TITLE_FONT_SIZE 16 +
|TITLE_FONT_COLOR BLACK +
|TITLE_BOLD ON +
|LIST_BACK_COLOR WHITE +
|LIST_FONT_NAME Tahoma +
|LIST_FONT_SIZE 9 +
|LIST_FONT_COLOR NAVY +
|WINDOW_BACK_COLOR WHITE +
|BUTTON_OK_CAPTION &Continue +
|BUTTON_CANCEL_CAPTION C&ancel +
|BUTTONS_SHOW_GLYPH ON +
|LINE_COLOR black +
|ZEBRA_STRIPES ON +
|ZEBRA_ODD_COLOR 3DLIGHT +
|ZEBRA_EVEN_COLOR WINDOW +
|HORIZONTAL_LINES ON +
|VERTICAL_LINES ON +
|VERTICAL_LINE_BREAKS 150,450 +
|TEXT_BREAKS 36,112 +
|HEADERS Table Name,Description,Type









Karen






--
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/660651785.1231586.1614092812858%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 view this discussion on the web visit 
https://groups.google.com/d/msgid/rbase-l/WC20210223163636.1100F7%40jjcalibrations.com.


RE: [RBASE-L] - CHOOSE command

2018-02-12 Thread Lena Dammstrom
I cannot dispute "life would be easier"!!!


-Original Message-
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
A. Razzak Memon
Sent: Monday, February 12, 2018 7:42 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - CHOOSE command

Good Morning Lena,

How about taking the leap and migrating all legacy DOS stuff to "XE", Olympic 
style? Life will be much easier and productive!

I know that is very easy for me to say :)

Very Best R:egards,

Razzak


At 08:35 AM 2/12/2018, Lena Dammstrom wrote:

>Razzak
>Thank you for the confirmation
>Also Albert thank you for your response
>
>Regards
>Lena
>
>Lena Dammstrom
>Software Developer
>
>Email:ldammst...@qmiusa.com
>Toll Free: 800-446-2500
>International: 01 630-529-7111
>Extension: 1037
>
>www.qmiusa.com
>
>--
>The information transmitted, including attachments, is intended only 
>for the person(s) or entity to which it is addressed and may contain 
>confidential and/or privileged material.  Any review, retransmission, 
>dissemination or other use of, or taking of any action in reliance upon 
>this information by persons or entities other than the intended 
>recipient is prohibited.  If you received this in error, please contact 
>the sender and destroy any copies of this information.
>
>-Original Message-
>From: rbase-l@googlegroups.com
>[mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon
>Sent: Friday, February 09, 2018 5:54 PM
>To: rbase-l@googlegroups.com
>Subject: Re: [RBASE-L] - CHOOSE command
>
>FWIW ...
>
>The INITVAL option for CHOOSE command was implemented on August 10, 
>2016, R:BASE X and R:BASE X Enterprise (Version 10), Build: 
>10.0.1.20909.
>
>Very Best R:egards,
>
>Razzak
>
>
>At 05:20 PM 2/9/2018, Albert Berry wrote:
>
> >I just checked 9.5_64 WIN and INITVAL is not in the help search. 
> >Maybe it was added in RBGX
> >
> >>On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:
> >>
> >>Hi all.
> >>
> >>I am wondering/trying to confirm…
> >> >
> >>Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?
> >>
> >>My gut is telling windows only.
> >>
> >>Regards
> >>Lena


--
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.
For more options, visit https://groups.google.com/d/optout.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


RE: [RBASE-L] - CHOOSE command

2018-02-12 Thread A. Razzak Memon

Good Morning Lena,

How about taking the leap and migrating all 
legacy DOS stuff to "XE", Olympic style? Life 
will be much easier and productive!


I know that is very easy for me to say :)

Very Best R:egards,

Razzak


At 08:35 AM 2/12/2018, Lena Dammstrom wrote:


Razzak
Thank you for the confirmation
Also Albert thank you for your response

Regards
Lena

Lena Dammstrom
Software Developer

Email:ldammst...@qmiusa.com
Toll Free: 800-446-2500
International: 01 630-529-7111
Extension: 1037

www.qmiusa.com

--
The information transmitted, including 
attachments, is intended only for the person(s) 
or entity to which it is addressed and may 
contain confidential and/or privileged 
material.  Any review, retransmission, 
dissemination or other use of, or taking of any 
action in reliance upon this information by 
persons or entities other than the intended 
recipient is prohibited.  If you received this 
in error, please contact the sender and destroy any copies of this information.


-Original Message-
From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon

Sent: Friday, February 09, 2018 5:54 PM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - CHOOSE command

FWIW ...

The INITVAL option for CHOOSE command was 
implemented on August 10, 2016, R:BASE X and 
R:BASE X Enterprise (Version 10), Build: 10.0.1.20909.


Very Best R:egards,

Razzak


At 05:20 PM 2/9/2018, Albert Berry wrote:

>I just checked 9.5_64 WIN and INITVAL is not in the help search. Maybe
>it was added in RBGX
>
>>On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:
>>
>>Hi all.
>>
>>I am wondering/trying to confirm…
>> >
>>Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?
>>
>>My gut is telling windows only.
>>
>>Regards
>>Lena



--
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.
For more options, visit https://groups.google.com/d/optout.


RE: [RBASE-L] - CHOOSE command

2018-02-12 Thread Lena Dammstrom
Razzak
Thank you for the confirmation
Also Albert thank you for your response

Regards
Lena



Lena Dammstrom
Software Developer

Email:ldammst...@qmiusa.com
Toll Free: 800-446-2500
International: 01 630-529-7111
Extension: 1037

www.qmiusa.com

--
The information transmitted, including attachments, is intended only for the 
person(s) or entity to which it is addressed and may contain confidential 
and/or privileged material.  Any review, retransmission, dissemination or other 
use of, or taking of any action in reliance upon this information by persons or 
entities other than the intended recipient is prohibited.  If you received this 
in error, please contact the sender and destroy any copies of this information.

-Original Message-
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
A. Razzak Memon
Sent: Friday, February 09, 2018 5:54 PM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - CHOOSE command

FWIW ...

The INITVAL option for CHOOSE command was implemented on August 10, 2016, 
R:BASE X and R:BASE X Enterprise (Version 10), Build: 10.0.1.20909.

Very Best R:egards,

Razzak


At 05:20 PM 2/9/2018, Albert Berry wrote:

>I just checked 9.5_64 WIN and INITVAL is not in the help search. Maybe
>it was added in RBGX
>
>>On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:
>>
>>Hi all.
>>
>>I am wondering/trying to confirm…
>> >
>>Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?
>>
>>My gut is telling windows only.
>>
>>Regards
>>Lena


--
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.
For more options, visit https://groups.google.com/d/optout.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [RBASE-L] - CHOOSE command

2018-02-09 Thread A. Razzak Memon

FWIW ...

The INITVAL option for CHOOSE command was 
implemented on August 10, 2016, R:BASE X and 
R:BASE X Enterprise (Version 10), Build: 10.0.1.20909.


Very Best R:egards,

Razzak


At 05:20 PM 2/9/2018, Albert Berry wrote:

I just checked 9.5_64 WIN and INITVAL is not in 
the help search. Maybe it was added in RBGX



On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:

Hi all.

I am wondering/trying to confirm…
>
Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?

My gut is telling windows only.

Regards
Lena



--
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.
For more options, visit https://groups.google.com/d/optout.


Re: [RBASE-L] - CHOOSE command

2018-02-09 Thread Albert Berry
I just checked 9.5_64 WIN and INITVAL is not in the help search. Maybe it was 
added in RBGX 

> On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:
> 
> Hi all.
>  
> I am wondering/trying to confirm…
> Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?
>  
> My gut is telling windows only.
>  
> Regards
> Lena
> 
> 
>  
> Lena Dammstrom
> Software Developer  
> Email:  ldammst...@qmiusa.com 
> Toll Free:  800-446-2500
> International:  01 630-529-7111
> Extension:  1037
> www.qmiusa.com 
>  
>  
> .
> This email may contain material that is confidential, privileged and/or 
> attorney work product for the sole use of the intended recipient. Any review, 
> reliance or distribution by others or forwarding without express permission 
> is strictly prohibited. If you are not the intended recipient, please contact 
> the sender and delete all copies
> 
> -- 
> 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 
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [RBASE-L] - CHOOSE command

2018-02-09 Thread Albert Berry
I have DOS versions up to 7 in a developer’s pack. I can look for your version 
if it is that early. 
Albert

> On Feb 9, 2018, at 3:00 PM, Lena Dammstrom  wrote:
> 
> Hi all.
>  
> I am wondering/trying to confirm…
> Is the OPTION INITVAL available for CHOOSE command in RBase for DOS?
>  
> My gut is telling windows only.
>  
> Regards
> Lena
> 
> 
>  
> Lena Dammstrom
> Software Developer  
> Email:  ldammst...@qmiusa.com 
> Toll Free:  800-446-2500
> International:  01 630-529-7111
> Extension:  1037
> www.qmiusa.com 
>  
>  
> .
> This email may contain material that is confidential, privileged and/or 
> attorney work product for the sole use of the intended recipient. Any review, 
> reliance or distribution by others or forwarding without express permission 
> is strictly prohibited. If you are not the intended recipient, please contact 
> the sender and delete all copies
> 
> -- 
> 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 
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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.
For more options, visit https://groups.google.com/d/optout.