Re: [RBASE-L] - Sample Applications: Report Output Options

2017-02-07 Thread A. Razzak Memon

Tom,

No worries!

Here's the code behind the [Continue] button.

Feel free to reach out to me if you need further help.

Razzak.

-- Start here ...
-- Continue ...
-- Author: A. Razzak Memon
-- Date Created: February 6, 2017
-- Last Updated:
IF vReportOutput IS NULL THEN
   PAUSE 2 USING 'You MUST Select Report Output' ICON WARNING +
   BUTTON 'Click here to continue ...' +
   OPTION BACK_COLOR WHITE +
   |MESSAGE_FONT_NAME Tahoma +
   |MESSAGE_FONT_COLOR RED +
   |MESSAGE_FONT_SIZE 11
   RETURN
ENDIF
SWITCH (.vReportOutput)
   CASE 'Screen'
 CLS
 PRINT Conditional_Check_Boxes +
 OPTION SCREEN|WINDOW_STATE MAXIMIZED|ZOOM_TYPE PERCENTAGE +
 |ZOOMPERCENT 90|PREVIEW_CAPTION 'Total Sales by Company'
 BREAK
   CASE 'Printer'
 CLS
 PRINT Conditional_Check_Boxes OPTION PRINTER
 BREAK
   CASE 'PDF'
 IF (CHKFILE('PDF')) <> 1 THEN
MD PDF
 ENDIF
 CLS
 PRINT Conditional_Check_Boxes OPTION PDF +
 |SHOW_CANCEL_DIALOG OFF +
 |FILENAME PDF\Conditional_Check_Boxes.PDF +
 |TITLE Total Sales by Company +
 |SUBJECT Total Sales by Company +
 |AUTHOR Total Sales by Company +
 |KEYWORDS Total Sales by Company +
 |OPEN ON
 BREAK
   CASE 'XLS'
 IF (CHKFILE('XLS')) <> 1 THEN
 MD XLS
 ENDIF
 CLS
 PRINT Conditional_Check_Boxes +
 OPTION XLS +
 |SHOW_CANCEL_DIALOG OFF +
 |FILENAME XLS\Conditional_Check_Boxes.xls +
 |ALL_TEXT_IN_GENERAL_FORMAT ON +
 |CELL_ATTR ON +
 |INCLUDE_IMAGES OFF +
 |INCLUDE_LINES OFF +
 |INCLUDE_RICH_TEXT OFF +
 |INCLUDE_SHAPES OFF +
 |LINE_SPACE 0 +
 |ONE_SHEET_PER_PAGE OFF +
 |OPEN ON
 BREAK
   DEFAULT
 BREAK
ENDSW
RETURN
-- End here ...




At 07:35 PM 2/7/2017, you wrote:


Razz,
I am really lost on what is happening, could I 
see your code for the printer dialog, because I 
checked everything I know.  My sample app I 
created only has 1 report and 1 external form so 
I do not know what other resources I would need.


Tom Hart

On Tue, Feb 7, 2017 at 7:48 AM, A. Razzak Memon 
<raz...@rbase.com> wrote:

Tom,

So, my sample application worked. Did you expect 
anything different?  What does that explain to you?


I suggest to re-visit your entire compiler 
project (.rcp) and review each section under 
[Additional Resources] and verify "Source", if applicable, including:


. External Form Files
. R:BASE Forms
. R:BASE Reports
. R:BASE Labels
. Themes
. Runtime Licenses
. Plugins
. Misc. Files

Very Best R:egards,

Razzak


At 08:37 AM 2/7/2017, Tom Hart wrote:

Razz,
Your sample app worked, but I had made a very 
simple app to print something and John got same 
results, did not print directly.  He then 
recompiled it and said it worked, so I tried his 
app but still would not print directly.  I 
also tried on my older laptop with same results.

This is my eep

print PR_Testreport option printer
return

This still sends it to printer screen not directly to the printer

On Tue, Feb 7, 2017 at 12:49 AM, A. Razzak Memon 
<raz...@rbase.com> wrote:

Tuesday, February 7, 2017

A sample application to illustrate the use of most commonly used report
output options is now available.

R:BASE Sample Applications: 
<http://www.Razzak.com/SampleApplications/>http://www.Razzak.com/SampleApplications/


Application Title: Report Output Options - R:BASE X Enterprise (Version 10)

Please Note:

. There are no pre-requisites to install and run this sample application.

. There is no need to have any version of R:BASE installed on your computer.

. This application is designed and intended to illustrate the use of most
  commonly used report output options

  In addition ...

. This compiled and fully secured database and self-running application is
  provided to demonstrate the use of R:Compiler for R:BASE X Enterprise
  (Version 10) and the suggested method to design, develop, and distribute
  your compiled applications for mobile devices, such as Tablet PCs.

. This compiled application also demonstrates the speed of loading your
  project using R:Compiler for R:BASE X Enterprise (Version 10).

. You may install this application in a network and MS Cloud environment
  to really see the performance and capabilities of R:BASE X Enterprise.

. Mobile PC and/or Touch Screen users will also enjoy the new interface.

Have fun!

Very Best R:egards,

Razzak.




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



--
You received this message because you are 
subscribed to the Google Groups "RBASE-L" group.
To unsubscri

Re: [RBASE-L] - Sample Applications: Report Output Options

2017-02-07 Thread Tom Hart
Razz,
I am really lost on what is happening, could I see your code for the
printer dialog, because I checked everything I know.  My sample app I
created only has 1 report and 1 external form so I do not know what other
resources I would need.

Tom Hart

On Tue, Feb 7, 2017 at 7:48 AM, A. Razzak Memon  wrote:

> Tom,
>
> So, my sample application worked. Did you expect anything different?  What
> does that explain to you?
>
> I suggest to re-visit your entire compiler project (.rcp) and review each
> section under [Additional Resources] and verify "Source", if applicable,
> including:
>
> . External Form Files
> . R:BASE Forms
> . R:BASE Reports
> . R:BASE Labels
> . Themes
> . Runtime Licenses
> . Plugins
> . Misc. Files
>
> Very Best R:egards,
>
> Razzak
>
>
> At 08:37 AM 2/7/2017, Tom Hart wrote:
>
> Razz,
>> Your sample app worked, but I had made a very simple app to print
>> something and John got same results, did not print directly.  He then
>> recompiled it and said it worked, so I tried his app but still would not
>> print directly.  I also tried on my older laptop with same results.
>> This is my eep
>>
>> print PR_Testreport option printer
>> return
>>
>> This still sends it to printer screen not directly to the printer
>>
>> On Tue, Feb 7, 2017 at 12:49 AM, A. Razzak Memon <> raz...@rbase.com>raz...@rbase.com> wrote:
>> Tuesday, February 7, 2017
>>
>> A sample application to illustrate the use of most commonly used report
>> output options is now available.
>>
>> R:BASE Sample Applications: 
>> http://www.Razzak.com/SampleApplications/
>>
>> Application Title: Report Output Options - R:BASE X Enterprise (Version
>> 10)
>>
>> Please Note:
>>
>> . There are no pre-requisites to install and run this sample application.
>>
>> . There is no need to have any version of R:BASE installed on your
>> computer.
>>
>> . This application is designed and intended to illustrate the use of most
>> Â  commonly used report output options
>>
>> Â  In addition ...
>>
>> . This compiled and fully secured database and self-running application is
>> Â  provided to demonstrate the use of R:Compiler for R:BASE X Enterprise
>> Â  (Version 10) and the suggested method to design, develop, and
>> distribute
>> Â  your compiled applications for mobile devices, such as Tablet PCs.
>>
>> . This compiled application also demonstrates the speed of loading your
>> Â  project using R:Compiler for R:BASE X Enterprise (Version 10).
>>
>> . You may install this application in a network and MS Cloud environment
>> Â  to really see the performance and capabilities of R:BASE X Enterprise.
>>
>> . Mobile PC and/or Touch Screen users will also enjoy the new interface.
>>
>> Have fun!
>>
>> Very Best R:egards,
>>
>> Razzak.
>>
>
>
>
> --
> 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.
>

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


[RBASE-L] - pack table command stuck

2017-02-07 Thread Dan Goldberg
So I deleted about 400k rows from a table in our live database today. I decided 
to run the command

Pack table tablename

It has been running almost 2 hours now. I do not want to stop it because I am 
afraid it will corrupt the database.

Is there a way to stop it without corrupting the database?

TIA

Dan Goldberg

-- 
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] - anti virus for business

2017-02-07 Thread Steve Johnson
  I've been using Kaspersky on about 30 machines of various flavors for at least 10 years with no problems. My apps,are relatively small so I can't comment on the speed issue, but you can exclude file extensions  in Kaspersky. My one time file errors was with one client who would leave their Rbase ‎application on overnight on a regular basis. The problem was somehow connected to the backup program running overnight on their server where the data files were located. Since only one machine was involved, I just moved the data files to the local machine. Their IT guys could not figure out what was happening, but data was often missing the following day.  Maybe my strange episode might be helpful to anyone experiencing something similar.S JohnsonBlackBerry Z30From: Javier ValenciaSent: Tuesday, February 7, 2017 11:24 AMTo: rbase-l@googlegroups.comReply To: rbase-l@googlegroups.comSubject: RE: [RBASE-L] - anti virus for businessI have been using Vipre for a while now and I have had good luck with it. A few years ago they offered a lifetime license for all the computers in your home for a very reasonable one time cost and I have it installed in at least 10 computers for several years now at no additional cost. The one time I had an issue, tech support asked for time when I would be available and they accessed my computer remotely and cleaned, you just don’t get that type of support from others. They have now several flavors of corporate licenses depending on your needs and size of your firm. I typically exclude individual extensions and also the compiled executables and seems to work fine. I have a client that uses the Windows built-in anti-virus and they have had several problems with it. I normally run MalwareBytes for several cycles until no traces are found and then setup an anti-virus. I had McAfee before but much like Symantec, it had a big footprint and was very slow. Vipre has a small footprint and is pretty speedy. I understand that Kaspersky is pretty good and even when I can get it at no cost through my internet provide but I decided to stay with Vipre. Also, Kaspersky is based in Russia and it is said to have ties to the Russian government which makes me hesitant to use it…although they might actually be better positioned to fight malware since most of it comes from Russia in the first place. J Javier, Javier Valencia, PE14315 S. Twilight Ln.Olathe, KS 66062Home: 913-397-9605Office: 913-829-0888Cell: 913-915-3137 From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of Dan GoldbergSent: Tuesday, February 07, 2017 9:38 AMTo: rbase-l@googlegroups.comSubject: RE: [RBASE-L] - anti virus for business I have the RX* files excluded, my compile exe, and the dll. But something still is funky with Avast. Sometimes when I am downloading files from the internet they will be corrupt. I go home and try it on my home pc and  they work fine. Dan Goldberg From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of Jim BelisleSent: Tuesday, February 7, 2017 7:20 AMTo: rbase-l@googlegroups.comSubject: RE: [RBASE-L] - anti virus for business Our IT people did the same thing re. RBASE. By excluding the RX extensions, our speed increased. James Belisle Making Information Systems People Friendly Since 1990 From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of Albert BerrySent: Tuesday, February 07, 2017 9:18 AMTo: rbase-l@googlegroups.comSubject: Re: [RBASE-L] - anti virus for business Dan, try excluding the folder where the compiled app resides. I’m not sure about the corporate version, but in the pro edition you can exclude certain file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4. Albert On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L  wrote: I'll tell ya what I can't recommend.  Back when I used anti-virus, I used Symantec Webroot and loved it.  But you could NOT exclude any files, so you couldn't exclude an RBase database...Karen  -Original Message-From: Dan Goldberg To: rbase-l Sent: Tue, Feb 7, 2017 9:00 amSubject: [RBASE-L] - anti virus for businessJust would like to poll what anti virus people use with Rbase and runs good.  Recommendations are welcome. Got about 74 machines with it installed right now. I am using Avast Business Security but a

[RBASE-L] - R:BASE Online Resources

2017-02-07 Thread A. Razzak Memon

Tuesday, February 7, 2017

To all our new and young users who have recently joined this R:BASE List:

Welcome to R:BASE List!

Here's a comprehensive list of R:BASE Online Resources which you may 
find helpful.


R:BASE Sample Applications:
http://www.razzak.com/sampleapplications

R:BASE Technical Documents (From the Edge):
http://www.razzak.com/fte/

R:BASE Support Home Page:
http://www.rbase.com/support/

Current Product Details and Documentation:
http://www.rbase.com/rbgx/

R:BASE Tutorial:
http://www.rtutorial.com

R:BASE Online Syntax:
http://www.rsyntax.com

R:BASE Form Properties:
http://www.rbase.com/support/FormProperties.pdf

R:BASE Training:
http://www.rbaseuniversity.com

R:BASE Solutions (Vertical Market Applications):
http://www.rbasesolutions.com

Product Registration:
http://www.rbase.com/register/

Official R:BASE Page on Facebook:
http://www.facebook.com/rbase/

Very Best R:egards,

Razzak.

www.rbase.com

--
34 years of continuous innovation!
19 Years of R:BASE Technologies, Inc. making R:BASE what it is today!
--

--
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] - anti virus for business

2017-02-07 Thread Dan Goldberg
Thx all for your info. I am going to look into vipre to see their offerings. I 
know some of them out there are bulky and vipre sounds lightweight.

Dan Goldberg

From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Brad Davidson
Sent: Tuesday, February 7, 2017 8:33 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

I’ll chime in here with Javier, been using Vipre across our 30 station LAN, 
using a standard PC as the “vipre server”, running the Business Console which 
allows deployment, group policies, etc.. for all PC combinations we need, small 
footprint, exclude files, etc…  Been using Vipre for past 8 years no issues to 
speak of, just to remember to exclude the entire DB and scratch folders upon 
new computer induction into LAN.

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 Javier Valencia
Sent: Tuesday, February 07, 2017 8:24 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

I have been using Vipre for a while now and I have had good luck with it. A few 
years ago they offered a lifetime license for all the computers in your home 
for a very reasonable one time cost and I have it installed in at least 10 
computers for several years now at no additional cost. The one time I had an 
issue, tech support asked for time when I would be available and they accessed 
my computer remotely and cleaned, you just don’t get that type of support from 
others. They have now several flavors of corporate licenses depending on your 
needs and size of your firm. I typically exclude individual extensions and also 
the compiled executables and seems to work fine.

I have a client that uses the Windows built-in anti-virus and they have had 
several problems with it. I normally run MalwareBytes for several cycles until 
no traces are found and then setup an anti-virus. I had McAfee before but much 
like Symantec, it had a big footprint and was very slow. Vipre has a small 
footprint and is pretty speedy.

I understand that Kaspersky is pretty good and even when I can get it at no 
cost through my internet provide but I decided to stay with Vipre. Also, 
Kaspersky is based in Russia and it is said to have ties to the Russian 
government which makes me hesitant to use it…although they might actually be 
better positioned to fight malware since most of it comes from Russia in the 
first place. ☺

Javier,

Javier Valencia, PE
14315 S. Twilight Ln.
Olathe, KS 66062
Home: 913-397-9605
Office: 913-829-0888
Cell: 913-915-3137

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Dan Goldberg
Sent: Tuesday, February 07, 2017 9:38 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

I have the RX* files excluded, my compile exe, and the dll. But something still 
is funky with Avast. Sometimes when I am downloading files from the internet 
they will be corrupt. I go home and try it on my home pc and  they work fine.

Dan Goldberg

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Jim Belisle
Sent: Tuesday, February 7, 2017 7:20 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

Our IT people did the same thing re. RBASE. By excluding the RX extensions, our 
speed increased.

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 Albert Berry
Sent: Tuesday, February 07, 2017 9:18 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business

Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.

Albert

On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
mailto:rbase-l@googlegroups.com>> wrote:

I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen


-Original Message-
From: Dan Goldberg mailto:d...@lancecamper.com>>
To: rbase-l mailto:rbase-l@googlegroups.com>>
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommen

Re[2]: [RBASE-L] - anti virus for business

2017-02-07 Thread Bruce Chitiea
Two Win10 machines with RBGXE Single User, Uncompiled development 
environments.


1. Windows Defender, no issues (and no extra expense);

2. Symantec Corporate Endpoint Protection, no issues.

Bruce Chitiea
SafeSectors, Inc.
909.238.9012 Mobile

-- Original Message --
Sent: 2/7/2017 7:18:19 AM
Subject: Re: [RBASE-L] - anti virus for business
From: "Albert Berry" 
To: rbase-l@googlegroups.com
Cc:

Dan, try excluding the folder where the compiled app resides. I’m not 
sure about the corporate version, but in the pro edition you can exclude 
certain file extensions. I’ve mine marked not to check rx1, rx2, rx3 and 
rx4.


Albert

On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
 wrote:


I'll tell ya what I can't recommend.  Back when I used anti-virus, I 
used Symantec Webroot and loved it.  But you could NOT exclude any 
files, so you couldn't exclude an RBase database...


Karen


-Original Message-
From: Dan Goldberg 
To: rbase-l 
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business

Just would like to poll what anti virus people use with Rbase and runs 
good.  Recommendations are welcome. Got about 74 machines with it 
installed right now.


I am using Avast Business Security but am thinking it might be a cause 
for my Rbase corruption problem.




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

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



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

--
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] - anti virus for business

2017-02-07 Thread Brad Davidson
I’ll chime in here with Javier, been using Vipre across our 30 station LAN, 
using a standard PC as the “vipre server”, running the Business Console which 
allows deployment, group policies, etc.. for all PC combinations we need, small 
footprint, exclude files, etc…  Been using Vipre for past 8 years no issues to 
speak of, just to remember to exclude the entire DB and scratch folders upon 
new computer induction into LAN.

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 
Javier Valencia
Sent: Tuesday, February 07, 2017 8:24 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

I have been using Vipre for a while now and I have had good luck with it. A few 
years ago they offered a lifetime license for all the computers in your home 
for a very reasonable one time cost and I have it installed in at least 10 
computers for several years now at no additional cost. The one time I had an 
issue, tech support asked for time when I would be available and they accessed 
my computer remotely and cleaned, you just don’t get that type of support from 
others. They have now several flavors of corporate licenses depending on your 
needs and size of your firm. I typically exclude individual extensions and also 
the compiled executables and seems to work fine.

I have a client that uses the Windows built-in anti-virus and they have had 
several problems with it. I normally run MalwareBytes for several cycles until 
no traces are found and then setup an anti-virus. I had McAfee before but much 
like Symantec, it had a big footprint and was very slow. Vipre has a small 
footprint and is pretty speedy.

I understand that Kaspersky is pretty good and even when I can get it at no 
cost through my internet provide but I decided to stay with Vipre. Also, 
Kaspersky is based in Russia and it is said to have ties to the Russian 
government which makes me hesitant to use it…although they might actually be 
better positioned to fight malware since most of it comes from Russia in the 
first place. ☺

Javier,

Javier Valencia, PE
14315 S. Twilight Ln.
Olathe, KS 66062
Home: 913-397-9605
Office: 913-829-0888
Cell: 913-915-3137

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Dan Goldberg
Sent: Tuesday, February 07, 2017 9:38 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

I have the RX* files excluded, my compile exe, and the dll. But something still 
is funky with Avast. Sometimes when I am downloading files from the internet 
they will be corrupt. I go home and try it on my home pc and  they work fine.

Dan Goldberg

From: rbase-l@googlegroups.com 
[mailto:rbase-l@googlegroups.com] On Behalf Of Jim Belisle
Sent: Tuesday, February 7, 2017 7:20 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

Our IT people did the same thing re. RBASE. By excluding the RX extensions, our 
speed increased.

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 Albert Berry
Sent: Tuesday, February 07, 2017 9:18 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business

Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.

Albert

On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
mailto:rbase-l@googlegroups.com>> wrote:

I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen


-Original Message-
From: Dan Goldberg mailto:d...@lancecamper.com>>
To: rbase-l mailto:rbase-l@googlegroups.com>>
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.

I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.



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

[RBASE-L] - R:BASE X, U.S. Version, Build: 10.0.2.20126: RunTime Error in form

2017-02-07 Thread Alastair Burr
This is the scenario:

I set trace on at R:>
EDIT USING [Form] WHERE ...
On row entry EEP: no errors
Last line: RETURN
Press [F10]
-ERROR- Expression does not return a valid TIME. 2158
Click [OK]
Error message reappears 3 times then:
Runtime Error!
Program C:\...\RBGX.EXE
R6030
- CRT not initialized

[OK] button unavailable as Windows error:

R:Base X has stopped working... appears

Unable to debug any further.

There are a number of TIME variables which all show as valid in Watch Variables 
at all times until the crash.
This form works in the previous version(s).

Has anybody got any ideas what the cause of this might be?
Thanks & regards,
Alastair.

-- 
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] - anti virus for business

2017-02-07 Thread Javier Valencia
I have been using Vipre for a while now and I have had good luck with it. A few 
years ago they offered a lifetime license for all the computers in your home 
for a very reasonable one time cost and I have it installed in at least 10 
computers for several years now at no additional cost. The one time I had an 
issue, tech support asked for time when I would be available and they accessed 
my computer remotely and cleaned, you just don’t get that type of support from 
others. They have now several flavors of corporate licenses depending on your 
needs and size of your firm. I typically exclude individual extensions and also 
the compiled executables and seems to work fine.
 
I have a client that uses the Windows built-in anti-virus and they have had 
several problems with it. I normally run MalwareBytes for several cycles until 
no traces are found and then setup an anti-virus. I had McAfee before but much 
like Symantec, it had a big footprint and was very slow. Vipre has a small 
footprint and is pretty speedy.
 
I understand that Kaspersky is pretty good and even when I can get it at no 
cost through my internet provide but I decided to stay with Vipre. Also, 
Kaspersky is based in Russia and it is said to have ties to the Russian 
government which makes me hesitant to use it…although they might actually be 
better positioned to fight malware since most of it comes from Russia in the 
first place. J
 
Javier,
 
Javier Valencia, PE
14315 S. Twilight Ln.
Olathe, KS 66062
Home: 913-397-9605
Office: 913-829-0888
Cell: 913-915-3137
 
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Dan Goldberg
Sent: Tuesday, February 07, 2017 9:38 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business
 
I have the RX* files excluded, my compile exe, and the dll. But something still 
is funky with Avast. Sometimes when I am downloading files from the internet 
they will be corrupt. I go home and try it on my home pc and  they work fine.
 
Dan Goldberg
 
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Jim Belisle
Sent: Tuesday, February 7, 2017 7:20 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business
 
Our IT people did the same thing re. RBASE. By excluding the RX extensions, our 
speed increased.
 
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 
Albert Berry
Sent: Tuesday, February 07, 2017 9:18 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business
 
Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.
 
Albert
 
On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L  
wrote:
 
I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen
 
 
-Original Message-
From: Dan Goldberg 
To: rbase-l 
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.
 
I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.
 
 
 
Dan Goldberg
-- 
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.
 
-- 
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.
 
-- 
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.
-- 
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.

-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and st

RE: [RBASE-L] - anti virus for business

2017-02-07 Thread Dan Goldberg
I have the RX* files excluded, my compile exe, and the dll. But something still 
is funky with Avast. Sometimes when I am downloading files from the internet 
they will be corrupt. I go home and try it on my home pc and  they work fine.

Dan Goldberg

From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of 
Jim Belisle
Sent: Tuesday, February 7, 2017 7:20 AM
To: rbase-l@googlegroups.com
Subject: RE: [RBASE-L] - anti virus for business

Our IT people did the same thing re. RBASE. By excluding the RX extensions, our 
speed increased.

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 Albert Berry
Sent: Tuesday, February 07, 2017 9:18 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business

Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.

Albert

On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
mailto:rbase-l@googlegroups.com>> wrote:

I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen


-Original Message-
From: Dan Goldberg mailto:d...@lancecamper.com>>
To: rbase-l mailto:rbase-l@googlegroups.com>>
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.

I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.



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

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

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

-- 
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] - anti virus for business

2017-02-07 Thread Jim Belisle
Our IT people did the same thing re. RBASE. By excluding the RX extensions, our 
speed increased.

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 
Albert Berry
Sent: Tuesday, February 07, 2017 9:18 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business

Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.

Albert

On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
mailto:rbase-l@googlegroups.com>> wrote:

I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen


-Original Message-
From: Dan Goldberg mailto:d...@lancecamper.com>>
To: rbase-l mailto:rbase-l@googlegroups.com>>
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.

I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.



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

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



-- 
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] - anti virus for business

2017-02-07 Thread A. Razzak Memon
If your workstations are configured with MS Windows 10 Professional, 
then the built-in Microsoft Windows Defender is the best option.


Very easy to configure exclusions, such as Files and Folders, File 
Types, and Processes.


Works beautifully with R:BASE X (Version 10), R:BASE X Enterprise 
(Version 10), R:BASE X/XE (Version 10.5), and all R:Compiled X/XE Apps.


Razzak

At 10:00 AM 2/7/2017, Dan Goldberg wrote:

Just would like to poll what anti virus people use with Rbase and 
runs good.  Recommendations are welcome. Got about 74 machines with 
it installed right now.


I am using Avast Business Security but am thinking it might be a 
cause for my Rbase corruption problem.




--
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] - anti virus for business

2017-02-07 Thread Albert Berry
Dan, try excluding the folder where the compiled app resides. I’m not sure 
about the corporate version, but in the pro edition you can exclude certain 
file extensions. I’ve mine marked not to check rx1, rx2, rx3 and rx4.

Albert

> On Feb 7, 2017, at 8:08 AM, karentellef via RBASE-L 
>  wrote:
> 
> I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
> Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
> couldn't exclude an RBase database...
> 
> Karen
> 
> 
> -Original Message-
> From: Dan Goldberg mailto:d...@lancecamper.com>>
> To: rbase-l mailto:rbase-l@googlegroups.com>>
> Sent: Tue, Feb 7, 2017 9:00 am
> Subject: [RBASE-L] - anti virus for business
> 
> Just would like to poll what anti virus people use with Rbase and runs good.  
> Recommendations are welcome. Got about 74 machines with it installed right 
> now.
>  
> I am using Avast Business Security but am thinking it might be a cause for my 
> Rbase corruption problem.
>  
>  
>  
> Dan Goldberg
> -- 
> 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 
> .
> 
> -- 
> 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 
> .

-- 
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] - anti virus for business

2017-02-07 Thread Dan Goldberg
I am with you but unfortunately my users are not that bright. They will open 
anything.

With Avast I can put exclusions but there is still a delay opening 
rbase/compiled apps. If I disable it, it opens faster.

Dan

From: karentellef via RBASE-L [mailto:rbase-l@googlegroups.com]
Sent: Tuesday, February 7, 2017 7:08 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - anti virus for business

I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen


-Original Message-
From: Dan Goldberg mailto:d...@lancecamper.com>>
To: rbase-l mailto:rbase-l@googlegroups.com>>
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.

I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.



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

-- 
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] - anti virus for business

2017-02-07 Thread karentellef via RBASE-L
I'll tell ya what I can't recommend.  Back when I used anti-virus, I used 
Symantec Webroot and loved it.  But you could NOT exclude any files, so you 
couldn't exclude an RBase database...

Karen

 

 

-Original Message-
From: Dan Goldberg 
To: rbase-l 
Sent: Tue, Feb 7, 2017 9:00 am
Subject: [RBASE-L] - anti virus for business



Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.
 
I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.
 
 
 
Dan Goldberg

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


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


[RBASE-L] - anti virus for business

2017-02-07 Thread Dan Goldberg
Just would like to poll what anti virus people use with Rbase and runs good.  
Recommendations are welcome. Got about 74 machines with it installed right now.

I am using Avast Business Security but am thinking it might be a cause for my 
Rbase corruption problem.



Dan Goldberg

-- 
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] - Sample Applications: Report Output Options

2017-02-07 Thread A. Razzak Memon

Tom,

So, my sample application worked. Did you expect 
anything different?  What does that explain to you?


I suggest to re-visit your entire compiler 
project (.rcp) and review each section under 
[Additional Resources] and verify "Source", if applicable, including:


. External Form Files
. R:BASE Forms
. R:BASE Reports
. R:BASE Labels
. Themes
. Runtime Licenses
. Plugins
. Misc. Files

Very Best R:egards,

Razzak


At 08:37 AM 2/7/2017, Tom Hart wrote:


Razz,
Your sample app worked, but I had made a very 
simple app to print something and John got same 
results, did not print directly.  He then 
recompiled it and said it worked, so I tried his 
app but still would not print directly.  I also 
tried on my older laptop with same results.

This is my eep

print PR_Testreport option printer
return

This still sends it to printer screen not directly to the printer

On Tue, Feb 7, 2017 at 12:49 AM, A. Razzak Memon 
<raz...@rbase.com> wrote:

Tuesday, February 7, 2017

A sample application to illustrate the use of most commonly used report
output options is now available.

R:BASE Sample Applications: 
http://www.Razzak.com/SampleApplications/


Application Title: Report Output Options - R:BASE X Enterprise (Version 10)

Please Note:

. There are no pre-requisites to install and run this sample application.

. There is no need to have any version of R:BASE installed on your computer.

. This application is designed and intended to illustrate the use of most
  commonly used report output options

  In addition ...

. This compiled and fully secured database and self-running application is
  provided to demonstrate the use of R:Compiler for R:BASE X Enterprise
  (Version 10) and the suggested method to design, develop, and distribute
  your compiled applications for mobile devices, such as Tablet PCs.

. This compiled application also demonstrates the speed of loading your
  project using R:Compiler for R:BASE X Enterprise (Version 10).

. You may install this application in a network and MS Cloud environment
  to really see the performance and capabilities of R:BASE X Enterprise.

. Mobile PC and/or Touch Screen users will also enjoy the new interface.

Have fun!

Very Best R:egards,

Razzak.




--
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] - Sample Applications: Report Output Options

2017-02-07 Thread Tom Hart
Razz,
Your sample app worked, but I had made a very simple app to print something
and John got same results, did not print directly.  He then recompiled it
and said it worked, so I tried his app but still would not print directly.
I also tried on my older laptop with same results.
This is my eep

print PR_Testreport option printer
return

This still sends it to printer screen not directly to the printer

On Tue, Feb 7, 2017 at 12:49 AM, A. Razzak Memon  wrote:

> Tuesday, February 7, 2017
>
> A sample application to illustrate the use of most commonly used report
> output options is now available.
>
> R:BASE Sample Applications: http://www.Razzak.com/SampleApplications/
>
> Application Title: Report Output Options - R:BASE X Enterprise (Version 10)
>
> Please Note:
>
> . There are no pre-requisites to install and run this sample application.
>
> . There is no need to have any version of R:BASE installed on your
> computer.
>
> . This application is designed and intended to illustrate the use of most
>   commonly used report output options
>
>   In addition ...
>
> . This compiled and fully secured database and self-running application is
>   provided to demonstrate the use of R:Compiler for R:BASE X Enterprise
>   (Version 10) and the suggested method to design, develop, and distribute
>   your compiled applications for mobile devices, such as Tablet PCs.
>
> . This compiled application also demonstrates the speed of loading your
>   project using R:Compiler for R:BASE X Enterprise (Version 10).
>
> . You may install this application in a network and MS Cloud environment
>   to really see the performance and capabilities of R:BASE X Enterprise.
>
> . Mobile PC and/or Touch Screen users will also enjoy the new interface.
>
> Have fun!
>
> Very Best R:egards,
>
> Razzak.
>
> --
> 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.
>

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