RE: RE: [RBASE-L] - Date Chooser Dialog?

2018-04-19 Thread Kayza Kleinman
-ERROR- Syntax is incorrect for the command DIALOG (2045)

That's what I get - I'm using Copy / paste to avoid typos.

Kayza Kleinman
Director of the Nonprofit Helpdesk 
CIO
Jewish Community Council of Greater Coney Island, Inc
www.jccgci.org
www.nphd.org

-Original Message-
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
A. Razzak Memon
Sent: Thursday, April 19, 2018 11:44 PM
To: rbase-l@googlegroups.com
Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?

Try this very simple example and see what you get ...

-- Dialog with Popup as Date
CLEAR VAR vDate,vEndKey
SET VAR vDate DATE = NULL
SET VAR vDate DATE = NULL
DIALOG 'Enter Date (mm/dd/) or Double-Click for Calendar' +
vDate=34 vEndKey 1 +
CAPTION 'DIALOG with Date Pop-up' ICON WINDOWS +
OPTION POPUP_ENABLED TRUE +
|POPUP_DIALOG_TYPE DATE
RETURN

Have fun!

Razzak


At 11:31 PM 4/19/2018, Kayza Kleinman wrote:

>I just checked the quotes. Still not working.
>
>
>Kayza Kleinman
>Director of the Nonprofit Helpdesk
>CIO
>Jewish Community Council of Greater Coney Island, Inc www.jccgci.org 
>www.nphd.org
>
>-Original Message-
>From: rbase-l@googlegroups.com
>[mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon
>Sent: Wednesday, April 18, 2018 11:43 PM
>To: rbase-l@googlegroups.com
>Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?
>
>Match the example QUOTE settings to yours.
>
>If you are using double quotes, correct the example QUOTE settings 
>accordingly.
>
>Razzak
>
>At 11:36 PM 4/18/2018, Ken Shapiro wrote:
>
> >Paste the command into an empty rbase editor window. Add return at 
> >the end, and then use r:style to check the syntax.
> >
> >Ken
> >
> >From: rbase-l@googlegroups.com
> >[mailto:rbase-l@googlegroups.com] On Behalf Of Kayza Kleinman
> >Sent: Wednesday, April 18, 2018 11:28 PM
> >To: rbase-l@googlegroups.com
> >Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?
> >
> >It looks great, but I keep on getting “syntax errorÃr†. I have 
> >RDocs, and tried using the template that it gave me and I’™m 
> >still getting a syntax error. That̢۪s the whole message.
>.
> >
> >
> >Kayza Kleinman
> >Director of the Nonprofit Helpdesk
> >CIO
> >Jewish Community Council of Greater Coney Island, Inc 
> >www.jccgci.org
> >www.nphd.org
> >
> >From: 'James Bentley' via RBASE-L [mailto:rbase-l@googlegroups.com]
> >Sent: Wednesday, April 18, 2018 10:18 AM
> >To: rbase-l@googlegroups.com
> >Subject: Re: RE: [RBASE-L] - Date Chooser Dialog?
> >
> >Also, consider the use of DIALOG command. Here is example from RBase help.
> >
> >DIALOG 'Enter Date to Browse:' vBrowseDate=26 vEndKey 1 +
> >
> >CAPTION 'Enter Date' +
> >
> >ICON APP +
> >
> >OPTION DIALOG_EDIT_HINT 'Double-Click for Calendar' +
> >
> >|POPUP_ENABLED TRUE +
> >
> >|POPUP_DIALOG_TYPE DATE +
> >
> >|POPUP_CALENDAR_BACK_COLOR SILVER +
> >
> >|POPUP_CALENDAR_DAYS_COLOR RED +
> >
> >|POPUP_CALENDAR_FILLDAYS_COLOR NAVY +
> >
> >|POPUP_CALENDAR_DAYSOFWEEK_COLOR  +
> >
> >|POPUP_CALENDAR_LINES_COLOR BLACK +
> >
> >|POPUP_CALENDAR_SELBACK_COLOR NAVY +
> >
> >|POPUP_CALENDAR_SELFORE_COLOR WHITE +
> >
> >|POPUP_CALENDAR_TODAYFRAME_COLOR RED
> >
> >
> >
> >Jim Bentley, American Celiac Society 1-504-305-2968
> >
> >
> >On Tuesday, April 17, 2018, 11:19:09 PM CDT, Kayza Kleinman 
> ><kklein...@jccgci.org> wrote:
> >
> >
> >
> >Thanks!
> >
> >
> >
> >This is perfect.
> >
> >
> >
> >
> >
> >Kayza Kleinman
> >
> >Director of the Nonprofit Helpdesk
> >
> >CIO
> >
> >Jewish Community Council of Greater Coney Island, Inc
> >
> >www.jccgci.org
> >
> >www.nphd.org
> >
> >
> >
> >From: karentellef via RBASE-L
> >[mailto:rbase-l@googlegroups.com]
> >Sent: Tuesday, April 17, 2018 9:34 AM
> >To: rbase-l@googlegroups.com
> >Subject: Re: [RBASE-L] - Date Chooser Dialog?
> >
> >
> >
> >If you want a calendar, do this:
> >
> >set var vdate = (getdate('title here'))
> >
> >Karen
> >
> >
> >
> >
> >
> >
> >
> >-Original Message-
> >From: Kayza Kleinman 
> ><kklein...@jccgci.org>
> >To: 'rbase-l@googlegroups.com'
> ><rbase-l@googlegroups.com>
> >Sent: Tue, Apr 17, 2018 12:26 am
> >Subject: [RBASE-L] - Date Chooser Dialog?
> >
> >I often need to get dates from users before I run a report or form. 
> >Is there a way to build a dialog that gives a date chooser similar to 
> >what you can do in a form, without  having to create a form for it?
> >
> >Thanks!
> >
> >
> >
> >
> >
> >Kayza Kleinman
> >
> >Director of the Nonprofit Helpdesk
> >
> >CIO
> >
> >Jewish Community Council of Greater Coney Island, Inc
> >
> >3001 West 37th Street
> >
> >Brooklyn NY 11224
> >
> >718 449-5000 x 2266
> >
> >fax 347-946-6390
> >
> >www.jccgci.org
> >
> >www.nphd.org
> >
> >
> >
> >
> >
> >--
> >For group guidelines, 

RE: RE: [RBASE-L] - Date Chooser Dialog?

2018-04-19 Thread A. Razzak Memon

Try this very simple example and see what you get ...

-- Dialog with Popup as Date
   CLEAR VAR vDate,vEndKey
   SET VAR vDate DATE = NULL
   SET VAR vDate DATE = NULL
   DIALOG 'Enter Date (mm/dd/) or Double-Click for Calendar' +
   vDate=34 vEndKey 1 +
   CAPTION 'DIALOG with Date Pop-up' ICON WINDOWS +
   OPTION POPUP_ENABLED TRUE +
   |POPUP_DIALOG_TYPE DATE
   RETURN

Have fun!

Razzak


At 11:31 PM 4/19/2018, Kayza Kleinman wrote:


I just checked the quotes. Still not working.


Kayza Kleinman
Director of the Nonprofit Helpdesk
CIO
Jewish Community Council of Greater Coney Island, Inc
www.jccgci.org
www.nphd.org

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

Sent: Wednesday, April 18, 2018 11:43 PM
To: rbase-l@googlegroups.com
Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?

Match the example QUOTE settings to yours.

If you are using double quotes, correct the 
example QUOTE settings accordingly.


Razzak

At 11:36 PM 4/18/2018, Ken Shapiro wrote:

>Paste the command into an empty rbase editor window. Add return at the
>end, and then use r:style to check the syntax.
>
>Ken
>
>From: rbase-l@googlegroups.com
>[mailto:rbase-l@googlegroups.com] On Behalf Of Kayza Kleinman
>Sent: Wednesday, April 18, 2018 11:28 PM
>To: rbase-l@googlegroups.com
>Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?
>
>It looks great, but I keep on getting “syntax errorÃr†. I have RDocs,
>and tried using the template that it gave me and I’™m still getting a
>syntax error. That̢۪s the whole message.
.
>
>
>Kayza Kleinman
>Director of the Nonprofit Helpdesk
>CIO
>Jewish Community Council of Greater Coney Island, Inc
>www.jccgci.org
>www.nphd.org
>
>From: 'James Bentley' via RBASE-L [mailto:rbase-l@googlegroups.com]
>Sent: Wednesday, April 18, 2018 10:18 AM
>To: rbase-l@googlegroups.com
>Subject: Re: RE: [RBASE-L] - Date Chooser Dialog?
>
>Also, consider the use of DIALOG command. Here is example from RBase help.
>
>DIALOG 'Enter Date to Browse:' vBrowseDate=26 vEndKey 1 +
>
>CAPTION 'Enter Date' +
>
>ICON APP +
>
>OPTION DIALOG_EDIT_HINT 'Double-Click for Calendar' +
>
>|POPUP_ENABLED TRUE +
>
>|POPUP_DIALOG_TYPE DATE +
>
>|POPUP_CALENDAR_BACK_COLOR SILVER +
>
>|POPUP_CALENDAR_DAYS_COLOR RED +
>
>|POPUP_CALENDAR_FILLDAYS_COLOR NAVY +
>
>|POPUP_CALENDAR_DAYSOFWEEK_COLOR  +
>
>|POPUP_CALENDAR_LINES_COLOR BLACK +
>
>|POPUP_CALENDAR_SELBACK_COLOR NAVY +
>
>|POPUP_CALENDAR_SELFORE_COLOR WHITE +
>
>|POPUP_CALENDAR_TODAYFRAME_COLOR RED
>
>
>
>Jim Bentley, American Celiac Society 1-504-305-2968
>
>
>On Tuesday, April 17, 2018, 11:19:09 PM CDT,
>Kayza Kleinman <kklein...@jccgci.org> wrote:
>
>
>
>Thanks!
>
>
>
>This is perfect.
>
>
>
>
>
>Kayza Kleinman
>
>Director of the Nonprofit Helpdesk
>
>CIO
>
>Jewish Community Council of Greater Coney Island, Inc
>
>www.jccgci.org
>
>www.nphd.org
>
>
>
>From: karentellef via RBASE-L
>[mailto:rbase-l@googlegroups.com]
>Sent: Tuesday, April 17, 2018 9:34 AM
>To: rbase-l@googlegroups.com
>Subject: Re: [RBASE-L] - Date Chooser Dialog?
>
>
>
>If you want a calendar, do this:
>
>set var vdate = (getdate('title here'))
>
>Karen
>
>
>
>
>
>
>
>-Original Message-
>From: Kayza Kleinman <kklein...@jccgci.org>
>To: 'rbase-l@googlegroups.com'
><rbase-l@googlegroups.com>
>Sent: Tue, Apr 17, 2018 12:26 am
>Subject: [RBASE-L] - Date Chooser Dialog?
>
>I often need to get dates from users before I
>run a report or form. Is there a way to build a
>dialog that gives a date chooser similar to what
>you can do in a form, without  having to create a form for it?
>
>Thanks!
>
>
>
>
>
>Kayza Kleinman
>
>Director of the Nonprofit Helpdesk
>
>CIO
>
>Jewish Community Council of Greater Coney Island, Inc
>
>3001 West 37th Street
>
>Brooklyn NY 11224
>
>718 449-5000 x 2266
>
>fax 347-946-6390
>
>www.jccgci.org
>
>www.nphd.org
>
>
>
>
>
>--
>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
>rb 
ase-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

RE: RE: [RBASE-L] - Date Chooser Dialog?

2018-04-19 Thread Kayza Kleinman
I just checked the quotes. Still not working.


Kayza Kleinman
Director of the Nonprofit Helpdesk 
CIO
Jewish Community Council of Greater Coney Island, Inc
www.jccgci.org
www.nphd.org

-Original Message-
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
A. Razzak Memon
Sent: Wednesday, April 18, 2018 11:43 PM
To: rbase-l@googlegroups.com
Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?

Match the example QUOTE settings to yours.

If you are using double quotes, correct the example QUOTE settings accordingly.

Razzak

At 11:36 PM 4/18/2018, Ken Shapiro wrote:

>Paste the command into an empty rbase editor window. Add return at the 
>end, and then use r:style to check the syntax.
>
>Ken
>
>From: rbase-l@googlegroups.com
>[mailto:rbase-l@googlegroups.com] On Behalf Of Kayza Kleinman
>Sent: Wednesday, April 18, 2018 11:28 PM
>To: rbase-l@googlegroups.com
>Subject: RE: RE: [RBASE-L] - Date Chooser Dialog?
>
>It looks great, but I keep on getting “syntax error†. I have RDocs, 
>and tried using the template that it gave me and I’m still getting a 
>syntax error. That’s the whole message.
>
>
>Kayza Kleinman
>Director of the Nonprofit Helpdesk
>CIO
>Jewish Community Council of Greater Coney Island, Inc
>www.jccgci.org
>www.nphd.org
>
>From: 'James Bentley' via RBASE-L [mailto:rbase-l@googlegroups.com]
>Sent: Wednesday, April 18, 2018 10:18 AM
>To: rbase-l@googlegroups.com
>Subject: Re: RE: [RBASE-L] - Date Chooser Dialog?
>
>Also, consider the use of DIALOG command. Here is example from RBase help.
>
>DIALOG 'Enter Date to Browse:' vBrowseDate=26 vEndKey 1 +
>
>CAPTION 'Enter Date' +
>
>ICON APP +
>
>OPTION DIALOG_EDIT_HINT 'Double-Click for Calendar' +
>
>|POPUP_ENABLED TRUE +
>
>|POPUP_DIALOG_TYPE DATE +
>
>|POPUP_CALENDAR_BACK_COLOR SILVER +
>
>|POPUP_CALENDAR_DAYS_COLOR RED +
>
>|POPUP_CALENDAR_FILLDAYS_COLOR NAVY +
>
>|POPUP_CALENDAR_DAYSOFWEEK_COLOR  +
>
>|POPUP_CALENDAR_LINES_COLOR BLACK +
>
>|POPUP_CALENDAR_SELBACK_COLOR NAVY +
>
>|POPUP_CALENDAR_SELFORE_COLOR WHITE +
>
>|POPUP_CALENDAR_TODAYFRAME_COLOR RED
>
>
>
>Jim Bentley, American Celiac Society 1-504-305-2968
>
>
>On Tuesday, April 17, 2018, 11:19:09 PM CDT, 
>Kayza Kleinman <kklein...@jccgci.org> wrote:
>
>
>
>Thanks!
>
>
>
>This is perfect.
>
>
>
>
>
>Kayza Kleinman
>
>Director of the Nonprofit Helpdesk
>
>CIO
>
>Jewish Community Council of Greater Coney Island, Inc
>
>www.jccgci.org
>
>www.nphd.org
>
>
>
>From: karentellef via RBASE-L 
>[mailto:rbase-l@googlegroups.com]
>Sent: Tuesday, April 17, 2018 9:34 AM
>To: rbase-l@googlegroups.com
>Subject: Re: [RBASE-L] - Date Chooser Dialog?
>
>
>
>If you want a calendar, do this:
>
>set var vdate = (getdate('title here'))
>
>Karen
>
>
>
>
>
>
>
>-Original Message-
>From: Kayza Kleinman <kklein...@jccgci.org>
>To: 'rbase-l@googlegroups.com' 
><rbase-l@googlegroups.com>
>Sent: Tue, Apr 17, 2018 12:26 am
>Subject: [RBASE-L] - Date Chooser Dialog?
>
>I often need to get dates from users before I 
>run a report or form. Is there a way to build a 
>dialog that gives a date chooser similar to what 
>you can do in a form, without  having to create a form for it?
>
>Thanks!
>
>
>
>
>
>Kayza Kleinman
>
>Director of the Nonprofit Helpdesk
>
>CIO
>
>Jewish Community Council of Greater Coney Island, Inc
>
>3001 West 37th Street
>
>Brooklyn NY 11224
>
>718 449-5000 x 2266
>
>fax 347-946-6390
>
>www.jccgci.org
>
>www.nphd.org
>
>
>
>
>
>--
>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.
>--
>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 

Re: [RBASE-L] - form timing

2018-04-19 Thread jan johansen
Thanks all who responded.

I noticed the following commonality in the forms that were throwing the 
errors.

1. These are bound (attached to table) forms
2. These are extremely old (7.0) forms
3. They have sub-tables

So for now, I've inserted a 250mS delay in the On After Start eep before 
evaluating the component id's and have asked
the users to let me know if they are still seeing the errors.

Jan


-Original Message-
From: "jan johansen" 
To: rbase-l@googlegroups.com
Date: Thu, 12 Apr 2018 11:08:06 -0700
Subject: [RBASE-L] - form timing


Group,

I'm trying to track down some general annoyances.

I am well aware of componentid's and when to call a component.
However, I have users that occasionally will open a form and get the message 
'component  not found in current form'.
When I check the forms, the componentid exists.

This doesn't happen all the time and I'm leaning towards network timing, 
anti-virus, etc.

Has anybody else experienced this and if so, what did you do?


Jan
 --
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php 
[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 
[mailto:rbase-l+unsubscr...@googlegroups.com].
For more options, visit https://groups.google.com/d/optout 
[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] - What users are in the database

2018-04-19 Thread Brad Davidson
>From server run command, type: compmgmt.msc, then, shared folders, open files.

Brad Davidson
CIO, Director
Aero-Craft Hydraulics, Inc.
[http://www.aero-craft.com/image/108353241_scaled_1500x274.png]
[Awards Logo]
951.736.4690
brad.david...@aero-craft.com
www.aero-craft.com

From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Stephen Markson
Sent: Thursday, April 19, 2018 7:34 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - What users are in the database

Hi James,

Pardon me if this is a dumb questions, but how do you “use Windows to see who 
has RBASE open”.


Regards,

Stephen Markson
The Pharmacy Examining Board of Canada
416.979.2431 x251

From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Jim Belisle
Sent: April-18-18 3:02 PM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - What users are in the database

You can also use Windows to see who has RBASE open. I use that all the time so 
check and sometimes disconnect users.

James Belisle

Making Information Systems People Friendly Since 1990
[cid:image001.jpg@01CD8CE2.FB048F50]

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Carpet Broker, Dick Fey
Sent: Wednesday, April 18, 2018 1:26 PM
To: RBase Maillist
Subject: [RBASE-L] - What users are in the database

Seems like I used to know a command that would show which users had the
DB open.
Of course that was before my brain was fried.

Any clues ?

Dick Fey


--
Carpet Broker Inc
P: 913-894-9211
F: 913-894-0138


--
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.
--
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] - What users are in the database

2018-04-19 Thread Dan Goldberg
Look at the computer management-shared folders-open files  on the server that 
is sharing rbase.

Dan Goldberg

From: rbase-l@googlegroups.com  On Behalf Of Stephen 
Markson
Sent: Thursday, April 19, 2018 7:34 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - What users are in the database

Hi James,

Pardon me if this is a dumb questions, but how do you “use Windows to see who 
has RBASE open”.


Regards,

Stephen Markson
The Pharmacy Examining Board of Canada
416.979.2431 x251

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Jim Belisle
Sent: April-18-18 3:02 PM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - What users are in the database

You can also use Windows to see who has RBASE open. I use that all the time so 
check and sometimes disconnect users.

James Belisle

Making Information Systems People Friendly Since 1990
[cid:image001.jpg@01CD8CE2.FB048F50]

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Carpet Broker, Dick Fey
Sent: Wednesday, April 18, 2018 1:26 PM
To: RBase Maillist
Subject: [RBASE-L] - What users are in the database

Seems like I used to know a command that would show which users had the
DB open.
Of course that was before my brain was fried.

Any clues ?

Dick Fey


--
Carpet Broker Inc
P: 913-894-9211
F: 913-894-0138


--
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.
--
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] - What users are in the database

2018-04-19 Thread Stephen Markson
Hi James,

Pardon me if this is a dumb questions, but how do you “use Windows to see who 
has RBASE open”.


Regards,

Stephen Markson
The Pharmacy Examining Board of Canada
416.979.2431 x251

From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Jim Belisle
Sent: April-18-18 3:02 PM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - What users are in the database

You can also use Windows to see who has RBASE open. I use that all the time so 
check and sometimes disconnect users.

James Belisle

Making Information Systems People Friendly Since 1990
[cid:image001.jpg@01CD8CE2.FB048F50]

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Carpet Broker, Dick Fey
Sent: Wednesday, April 18, 2018 1:26 PM
To: RBase Maillist
Subject: [RBASE-L] - What users are in the database

Seems like I used to know a command that would show which users had the
DB open.
Of course that was before my brain was fried.

Any clues ?

Dick Fey


--
Carpet Broker Inc
P: 913-894-9211
F: 913-894-0138


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

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