RE: [RBASE-L] - variables in Watch variables Window

2016-11-14 Thread A. Razzak Memon
You are very welcome, Dennis! Enjoy the latest and greatest R:BASE X Enterprise! Razzak At 10:33 AM 11/14/2016, Hodges, Dennis wrote: That fixed it. Thanks, Razzak. -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon

RE: [RBASE-L] - variables in Watch variables Window

2016-11-14 Thread A. Razzak Memon
From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Monday, November 14, 2016 10:10 AM To: rbase-l@googlegroups.com Subject: RE: [RBASE-L] - variables in Watch variables Window Dennis, You have all your Watch Variables window columns squeezed tog

RE: [RBASE-L] - variables in Watch variables Window

2016-11-14 Thread A. Razzak Memon
headers. (see attachment) -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Monday, November 14, 2016 9:50 AM To: rbase-l@googlegroups.com Subject: RE: [RBASE-L] - variables in Watch variables Window Dennis, Are you able

RE: [RBASE-L] - variables in Watch variables Window

2016-11-14 Thread A. Razzak Memon
@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Monday, November 14, 2016 9:13 AM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - variables in Watch variables Window Dennis, 01. Make sure that the Watch Variables window is enabled. Trace Debugger > Main Menu > Layout > Toolbar

Re: [RBASE-L] - variables in Watch variables Window

2016-11-14 Thread A. Razzak Memon
Dennis, 01. Make sure that the Watch Variables window is enabled. Trace Debugger > Main Menu > Layout > Toolbars > Watch Variables 02. To watch variable(s) in Trace Debugger, first you need to add variable(s) to the list of Watch Variables using the [F6] key or right-click anywhere in the "Wa

Re: [RBASE-L] - DELETE a form or report programatically

2016-11-13 Thread A. Razzak Memon
November 12, 2016 10:45:37 AM PST, "A. Razzak Memon" wrote: Manuel, Here's how ... To delete a form ... DELETE ROWS FROM SYS_FORMS3 WHERE SYS_FORM_NAME = 'FormNameToDelete' 'FormNameToDelete' could be a variable DELETE ROWS FROM SYS_FORMS3 WHERE SYS_FORM_NA

Re: [RBASE-L] - DELETE a form or report programatically

2016-11-12 Thread A. Razzak Memon
Manuel, Here's how ... To delete a form ... DELETE ROWS FROM SYS_FORMS3 WHERE SYS_FORM_NAME = 'FormNameToDelete' 'FormNameToDelete' could be a variable DELETE ROWS FROM SYS_FORMS3 WHERE SYS_FORM_NAME = .vFormName To delete a report ... DELETE ROWS FROM SYS_REPORTS3 WHERE SYS_REPORT_NAME = '

Re: [RBASE-L] - renaming columns using #

2016-11-02 Thread A. Razzak Memon
At 04:34 PM 11/2/2016, Dan Goldberg wrote: I am trying to run a routine to rename a whole bunch of columns in a table. I have the command: rename column #3 to t1 in tmpgary nocheck It throws an error. But I can do: browse #3 from tmpgary update tmpgary set #3 = 0 Does anyone know how to refe

RE: [RBASE-L] - Column size change

2016-11-02 Thread A. Razzak Memon
At 10:17 AM 11/2/2016, a...@redcaptransport.net wrote: Thank You Tony and Javier for the responses. As Jim said, if someone does find the program please post or send. Anne, My time and schedule permitting, I'll send you an online invitation https://join.me/RazzakMemon to show you a swift t

Re: [RBASE-L] - Round

2016-10-30 Thread A. Razzak Memon
Claudine, Without knowing all details, such as example, syntax,,etc., I suggest to verify the CHARacter settings of the CONNected database. After CONNecting the database, type SHOW CHAR at the R> prompt, and then make sure that all looks as it should. Hope that provides you with some blue'

[RBASE-L] - R:BASE Online Resources

2016-10-28 Thread A. Razzak Memon
Friday, October 28, 2016 To All Our New Users on this R:BASE List: Here's a comprehensive list of R:BASE Online Resources which you may find helpful. R:BASE Support Home Page: http://www.rbase.com/support/ Current Product Details and Documentation: http://www.rbase.com/rbgx/ R:BASE Tutorial

[RBASE-L] - From The Edge: Managing User Privileges in R:BASE X/XE (Version 10)

2016-10-28 Thread A. Razzak Memon
Friday, October 28, 2016 A technical document on Managing User Privileges in R:BASE X/XE (Version 10) is now available. From The Edge: http://www.razzak.com/fte Article Title: Managing User Privileges in R:BASE X/XE (Version 10) Have fun! Very Best R:egards, Razzak. www.rbase.com www.facebo

Re: [RBASE-L] - Re: What is TabPrint.dll

2016-10-19 Thread A. Razzak Memon
And, that TabPrint.dll in the \RBTI\RBGX or RBTI\RBGXE folder should be "Digitally Signed" with R:BASE Technologies, Inc. signature on it. Right-click > Properties > Digital Signatures > Name of signer: Razzak. At 06:52 PM 10/19/2016, Kenny Camp wrote: I found Razzak's explanation. Should ha

Re: [RBASE-L] - Re: What is TabPrint.dll

2016-10-19 Thread A. Razzak Memon
At 06:52 PM 10/19/2016, Kenny Camp wrote: I found Razzak's explanation. Should have done more searching first. Kenny, After reading the "Tip of the Day:", if you still have any questions, or need a sample application to illustrate the use of such feature, feel free to reach out to me. Yes, y

Re: [RBASE-L] - Dropping of Outlook emails

2016-10-19 Thread A. Razzak Memon
At 02:39 PM 10/19/2016, Karen Tellef wrote: So there's another option called PROPERTY compid ACCEPT_EMAIL_DROP TRUE that is supposed to work for dragging an Outlook email over. I do not have Outlook here that I can test this on. Has anyone (or Razzak) done this and have some screen prints of wh

Re: [RBASE-L] - Capturing Tab key from DBEdit field

2016-10-18 Thread A. Razzak Memon
At 09:16 AM 10/18/2016, Hodges, Dennis wrote: How can I capture the tab key when I am exiting a dbedit object? Dennis, Use the (LASTKEY(0)) function to accomplish your goal. Here's how ... Use the following code as "On Exit EEP" ... -- Start here -- On Exit EEP SET VARIABLE vLast = (LAS

Re: [RBASE-L] - New topic: My retirement

2016-10-18 Thread A. Razzak Memon
Gunnar, You were always a great R:BASE user and developer, but you were an even better friend throughout the 18+ years I had the pleasure of knowing you personally. Congratulations on your retirement! Razzak At 06:20 AM 10/18/2016, you wrote: Seven years ago i did formaly go in to retiremen

[RBASE-L] - Sample Applications: Creating Secure Backups On-Demand

2016-10-17 Thread A. Razzak Memon
Tuesday, October 18, 2016 And you thought R:BASE X Enterprise database backup couldn't get any easier! Did you know that you can create a secure backup of your "live database" in a multi-user LAN, WAN, or Cloud environment, on-demand? The newly implemented SHARECPY command in R:BASE X and R:BAS

Re: [RBASE-L] - DBGrids

2016-10-13 Thread A. Razzak Memon
At 12:52 PM 10/13/2016, karentellef via RBASE-L wrote: I was looking at your "form control & properties" document on your website. It doesn't (yet) show TEXTVALUE as being available for DBGrids. I guess I'll have to play around with this (is it in Enterprise only? One of my 10 clients is not o

Re: [RBASE-L] - DBGrids

2016-10-13 Thread A. Razzak Memon
At 12:52 PM 10/13/2016, karentellef via RBASE-L wrote: I was looking at your "form control & properties" document on your website. It doesn't (yet) show TEXTVALUE as being available for DBGrids. I guess I'll have to play around with this (is it in Enterprise only? One of my 10 clients is not o

Re: [RBASE-L] - Print all column names of all tables in database

2016-10-12 Thread A. Razzak Memon
At 03:06 PM 10/12/2016, Kaleb Wade wrote: I'm looking for a way to generate a list to print out all the column names and data types in every table of a database grouped by table name. Essentially it would be a printout of the what the Data Dictionary (F3) shows. Any suggestions? Take a look

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Add-on Products

2016-10-09 Thread A. Razzak Memon
Monday, October 10, 2016 To All Users of R:BASE X and R:BASE X Enterprise Add-on Products: Updates are now available for the following add-on products for R:BASE X and R:BASE X Enterprise (Version 10): Build: 10.0.2.11010 - Update 2 . R:BASE Editor X . R:BASE Plugin Power Pack X * . R:BASE Dep

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Update 2

2016-10-09 Thread A. Razzak Memon
Monday, October 10, 2016 To All Users of R:BASE X and R:BASE X Enterprise (Version 10): R:BASE X and R:BASE X Enterprise (Version 10) - Update 2 is now available. http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Build: 10.0.2.11010 - Update 2 . R:BASE X (Version 10) . R:BASE

RE: [RBASE-L] - 9.5 SMTP on compiled application

2016-10-05 Thread A. Razzak Memon
Very Best R:egards, Razzak At 08:23 PM 10/4/2016, Claudine Robbins wrote: Thank you Razzak! ~Claudine -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Tuesday, October 04, 2016 6:46 PM To: rbase-l@googlegroups.c

RE: [RBASE-L] - 9.5 SMTP on compiled application

2016-10-04 Thread A. Razzak Memon
|EMAIL_TO_LIST claudinerobb...@comcast.net + |EMAIL_SUBJECT Employee List + |EMAIL_PORT 25 + |EMAIL_SHOW_DIALOG ON RETURN -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Tuesday, October 04, 2016 4:27 PM To: rbase-l@g

RE: [RBASE-L] - 9.5 SMTP on compiled application

2016-10-04 Thread A. Razzak Memon
At 05:05 PM 10/4/2016, Claudine Robbins wrote: In the meantime, what's the trick to making printing a report work with EMAIL ON? Claudine, Here are a few examples ... --Multiple Attachment Example: CONNECT RRBYW18 PRINT Invoice WHERE TransID = 1031 + OPTION PDF|FILENAME Invoice_1031.PDF + |E

Re: [RBASE-L] - Check boxes on reports

2016-10-03 Thread A. Razzak Memon
That was easy, wasn't it? Have fun! Razzak At 10:45 AM 10/3/2016, 'Patti Jakusz' via RBASE-L wrote: Thank you, this works great. Patti From: A. Razzak Memon To: rbase-l@googlegroups.com Sent: Thursday, September 29, 2016 1:49 PM Subject: Re: [RBASE-L] - Check boxes on re

Re: [RBASE-L] - Re: OT - new laptop

2016-09-29 Thread A. Razzak Memon
At 11:08 AM 9/29/2016, Michael Byerley wrote: My HP envy I-7 16GB 500GB harddrive Win10, starts from 0 to login screen in under 17 seconds. It starts just as fast as my Surface 4 Pro with the same specs. My ... . Dell XPS 15, i7, 1TB SSD, 16GB RAM, Windows 10 Pro (64-bit), starts from 0 to

RE: [RBASE-L] - How to drop a foreign key in a table using SQL

2016-09-28 Thread A. Razzak Memon
At 10:38 AM 9/28/2016, Tony IJntema wrote: Yesterday I have asked an enhancement, which will take care of this situation, who knows You just never know! Remember, nothing is impossible. Very Best R:egards, Razzak. -- You received this message because you are subscribed to the Google Gro

RE: [!! SPAM] RE: [RBASE-L] - 9.5 SMTP on compiled application

2016-09-26 Thread A. Razzak Memon
Of A. Razzak Memon Sent: Monday, September 26, 2016 1:46 PM To: rbase-l@googlegroups.com Subject: [!! SPAM] RE: [RBASE-L] - 9.5 SMTP on compiled application Claudine: Ahh! I was trying to provide you with a totally automated technique when using the compiled applications, using R:Compiler and

RE: [RBASE-L] - 9.5 SMTP on compiled application

2016-09-26 Thread A. Razzak Memon
ngs | Report/Label Designer | E-Mail Settings, where is this login information used within R:BASE? PRINT OPTION PDF |OPTION EMAIL ON? Thank you. Claudine -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Monday, Septembe

Re: [RBASE-L] - 9.5 SMTP on compiled application

2016-09-26 Thread A. Razzak Memon
At 01:09 PM 9/26/2016, Claudine Robbins wrote: I use SET VAR vrmail = (UDF('@RMail.DLL','C:\temp\email.mal')) to send email reports and it has worked flawlessly. Over the weekend, I de-commissioned my Exchange server and purchased email from a third party. In my full R:BASE 9.5 install, I a

Re: [RBASE-L] - Printing distines from a table - Rbase X

2016-09-26 Thread A. Razzak Memon
At 06:18 PM 9/25/2016, Bill Niehaus wrote: R:Base X Is there a way to print a report based upon distinct values for a column (trial) in a table that may have up to 300 rows with a common value for the column (trial)? I would like to get one row for each unique value in the table along with

[RBASE-L] - From The Edge: Using R:BASE X and R:BASE X Enterprise Plugins

2016-09-22 Thread A. Razzak Memon
Friday, September 23, 2016 A technical document on Using R:BASE X and R:BASE X Enterprise Plugins is now available. From The Edge: http://www.razzak.com/fte Have fun! Very Best R:egards, Razzak. www.rbase.com www.facebook.com/rbase -- 34 years of continuous innovation! 18 Years of R:BASE Tec

RE: [RBASE-L] - R:BASE Cloud Training Event in San Diego, CA

2016-09-22 Thread A. Razzak Memon
rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Thursday, September 22, 2016 8:08 AM To: rbase-l@googlegroups.com Subject: RE: [RBASE-L] - R:BASE Cloud Training Event in San Diego, CA Dan: If the requested topic will help everyone in the class, then YES! Very Best R:egards, Razzak

RE: [RBASE-L] - R:BASE Cloud Training Event in San Diego, CA

2016-09-22 Thread A. Razzak Memon
Dan: If the requested topic will help everyone in the class, then YES! Very Best R:egards, Razzak At 10:45 AM 9/22/2016, Dan Goldberg wrote: Do you know if you will include R:Scope training in the future? -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegrou

RE: [RBASE-L] - RBase/Oterro XE / Windows Standard Server 2012

2016-09-18 Thread A. Razzak Memon
yours. Just one version difference. Thanks for your reply. Buddy -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Sunday, September 18, 2016 12:05 AM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - RBase/Oterr

RE: [RBASE-L] - R:Base editor default font

2016-09-17 Thread A. Razzak Memon
@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: September-16-16 12:31 PM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - R:Base editor default font At 11:08 AM 9/16/2016, Stephen Markson wrote: >I'm sorry if this is incredibly obvious stupid,

Re[2]: [RBASE-L] - R:Base editor default font

2016-09-17 Thread A. Razzak Memon
ining Board of Canada 416.979.2431 x251 -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: September-16-16 12:31 PM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - R:Base editor default font At 11:08 AM 9/16/2016, Stephe

Re: [RBASE-L] - how do you change a null value in the database

2016-09-16 Thread A. Razzak Memon
At 05:36 AM 9/16/2016, Bishop CIV Denise K wrote: This is one of the command I used before I converted from 6 to 9.5 CHA A_1 TO 00 IN RECRUIT WHE A_1 FAI I don't know the new command that will change a null value to a number Here's how ... If the A_1 column in RECRUIT is defined as INTEGE

Re: [RBASE-L] - Save PDF file in a table

2016-09-15 Thread A. Razzak Memon
they don't want external files stored on the network, and (3) they do not need to access these PDF files outside of RBase. At this particular client, lots of people access the PDF files outside of RBase. Karen -Original Message----- From: A. Razzak Memon To: rbase-l Sent: Thu, Sep 15, 2

Re: [RBASE-L] - Save PDF file in a table

2016-09-15 Thread A. Razzak Memon
FWIW ... Our Banking, Government, Insurance, Manufacturing, Fabrication, and Security clients using R:BASE X Enterprise (Version 10) have no problem storing and managing all kinds of files inside R:BASE for so many reasons as compared to leaving everything outside. Have you used R:BASE X En

Re: [RBASE-L] - Save PDF file in a table

2016-09-15 Thread A. Razzak Memon
At 07:58 AM 9/15/2016, Daniele wrote: Using a Form how can I save and then print a PDF file in a column of a table ? Daniele, Take a look at the following sample applications that illustrate the use of managing external files in R:BASE, including PDF. Sample Applications: http://www.razzak.

[RBASE-L] - Updated R:BASE X Enterprise Plugins for Cloud

2016-09-14 Thread A. Razzak Memon
To All Users of Running R:BASE X Enterprise Applications on Cloud: Here is a complete list of updated R:BASE X Enterprise Plugins that are fine-tuned to work smoothly in a RDWeb Cloud environment on MS Windows 2012R2 server, such as Microsoft Azure, Google Cloud Platform (GCP), IBM SoftLayer, A

[RBASE-L] - Running R:BASE X Enterprise Applications on Cloud

2016-09-14 Thread A. Razzak Memon
To R:BASE Community: If you are planning on deploying your R:BASE X Enterprise applications on Cloud, such as Microsoft Azure, Google Cloud Platform (GCP), IBM SoftLayer, Amazon Web Services (AWS), or even your own, make sure that your compiled applications are re-compiled using the latest upd

Re: [RBASE-L] - Activate scanner from a form

2016-09-14 Thread A. Razzak Memon
At 12:57 PM 9/14/2016, Daniele wrote: Many thanks Razzak. It all works perfectly. Daniele, I am glad. You wouldn't expect anything less, would you? Feel free to reach out to me if you need further help. Very Best R:egards, Razzak. Da: rbase-l@googlegroups.com A: rbase-l@googlegroups.

Re: [RBASE-L] - Activate scanner from a form

2016-09-14 Thread A. Razzak Memon
At 06:10 AM 9/14/2016, Daniele wrote: I would like to create a button on a form that activates a scanner and store the scanned image in a data-base table. How can I do this? There are two different approaches to accomplish such task. Here's how ... 01. While running the form in Edit or En

Re: [RBASE-L] - Tip of the Day: Using New Scratch Pad in R:BASE X

2016-09-09 Thread A. Razzak Memon
The best is yet to come! Just watch me. Razzak On Fri, Sep 9, 2016 at 1:51 PM, Albert Berry wrote: > That is the neatest new thing I have seen in quite a while! Thanks Razzak > and team. > > Albert > > > > On 2016-09-09 7:44 AM, A. Razzak Memon wrote: > >> Fr

[RBASE-L] - Tip of the Day: Using New Scratch Pad in R:BASE X

2016-09-09 Thread A. Razzak Memon
Friday, September 9, 2016 Tip of the Day: Using New Scratch Pad in R:BASE X Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build.: 10.0.1.10909 or higher Section...: Productivity Tools Keywords..: Scratch Pad Did you know that you can keep track of all yo

[RBASE-L] - Released: Oterro X/XE (Version 10) - Update 1

2016-09-08 Thread A. Razzak Memon
Friday, September 9, 2016 To All Users of Oterro X/XE (Version 10): Oterro X/XE (Version 10) Update 1 is now available. These special updates of Oterro X/XE (Version 10), Build: 10.0.1.20909 include all the engine-level fixes and enhancements which have been implemented in the latest released u

[RBASE-L] - Released: R:Docs X (Version 10) - Update 1

2016-09-08 Thread A. Razzak Memon
Friday, September 9, 2016 To All Users of R:Docs X (Version 10): R:Docs X Update 1 (Build: 10.0.1.20909) is now available! http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Product Description: http://www.rbase.com/products/rdocs This is a FREE update for all active subscriber

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Update 1

2016-09-08 Thread A. Razzak Memon
Friday, September 9, 2016 To All Users of R:BASE X and R:BASE X Enterprise (Version 10): R:BASE X and R:BASE X Enterprise (Version 10) - Update 1 is now available. http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Build: 10.0.1.20909 - Update 1 . R:BASE X (Version 10) . R:BASE

Re: [RBASE-L] - Announcing the Release of R:Mail Viewer X

2016-09-08 Thread A. Razzak Memon
At 11:33 AM 9/8/2016, Bruce Chitiea wrote: Does R:Mail Viewer facilitate parsing and extraction of replies and forwards nested within a messge? That would be yuuuge for legal forensics! Bruce: Remember, nothing is impossible! When you make an investment in R:BASE and R:BASE Technologies, In

[RBASE-L] - Tips of the Day: Using R:Mail Viewer X

2016-09-08 Thread A. Razzak Memon
Thursday, September 8, 2016 Tip of the Day: Using R:Mail Viewer X Many of our R:BASE Corporate clients and users of their complex R:BASE applications are required to save every e-mail correspondence (MS Outlook, MS Outlook Express, Eudora) as an external file, usually associated with a unique

[RBASE-L] - Announcing the Release of R:Mail Viewer X

2016-09-08 Thread A. Razzak Memon
Unlimited License http://www.rbase.com/products/ For pricing information, please contact the R:BASE Technologies Sales Team at: 1+724.733.0053 or e-mail to: mailto:sa...@rbase.com?subject=RMailViewerX Very Best R:egards, Razzak. A. Razzak Memon Founder, President & CEO R:BASE Technologies,

Re: [RBASE-L] - Rbase X Forms Code View - Editing

2016-09-07 Thread A. Razzak Memon
At 05:12 PM 9/7/2016, Dan Goldberg wrote: I am starting to use Rbase X and like some of the new goodies like code view. Can you edit the code in code view? If so, how do I turn it on? I am so glad to hear that! Need a refresher course? http://www.rbaseuniversity.com While in Form Designer

Re: [RBASE-L] - RBase X open database in the current folder

2016-09-07 Thread A. Razzak Memon
At 02:21 PM 9/7/2016, Dan Goldberg wrote: If I go into the folder containing my database and click on the RX1 file using Rbase 9.5 it will open the database and the current folder inside rbase will be the folder containing the database. With RBX if I click on the RX1 file to open it shows the

Re: [RBASE-L] - "unload all for views"

2016-09-07 Thread A. Razzak Memon
At 11:17 AM 9/7/2016, karentellef via RBASE-L wrote: According to my cheat-sheet notes document, in version 9 an "unload all for views" was introduced to give all view definitions. I can't get this to work. Is that syntax incorrect? I'm trying it in both 9 and 10 UNLOAD STRUCTURE FOR VIE

RE: [RBASE-L] - Print all

2016-09-06 Thread A. Razzak Memon
all Razzak,   Sorry. Got lost in translation. I need to output all the invoices as individual pdf's. Like I said, I can only think of using a cursor.   Jan   -Original Message- From: "A. Razzak Memon" To: rbase-l@googlegroups.com Date: Tue, 06 Sep 2016 14:02:54

RE: [RBASE-L] - Print all

2016-09-06 Thread A. Razzak Memon
Jan, Unless I am missing something, printing a report as PDF with appropriate WHERE clause should print the entire report as one PDF document.  Very Best R:egards, Razzak  Original message From: jan johansen Date: 9/6/16 1:56 PM (GMT-06:00) To: rbase-l@googlegroups.com Sub

[RBASE-L] - Announcing the Release of R:CAD Viewer X

2016-09-06 Thread A. Razzak Memon
License http://www.rbase.com/products/ For pricing information, please contact the R:BASE Technologies Sales Team at: 1+724.733.0053 or e-mail to: mailto:sa...@rbase.com?subject=RCADViewerX Very Best R:egards, Razzak. A. Razzak Memon Founder, President & CEO R:BASE Technologies, Inc. www.rbase

[RBASE-L] - Sample Applications: Using [Enter] Key for NEXTROW in DB Grid

2016-09-06 Thread A. Razzak Memon
Tuesday, September 6, 2016 A sample application to illustrate the use of [Enter] key for NEXTROW in DB Grid is now available. R:BASE Sample Applications: http://www.Razzak.com/SampleApplications/ Application Title: Using [Enter] Key for NEXTROW in DB Grid Please Note: . There are no pre-requi

Re: [RBASE-L] - Re: another Report designer issue

2016-09-05 Thread A. Razzak Memon
At 06:38 PM 9/5/2016, Lin MacDonald wrote: I forgot to mention, it also will not delete any reports so I can't get rid of any of these new ones that I create that do not work! Lin: It seems that you have copied the report name with space(s). Thus the reason for not being able to rename or de

RE: [RBASE-L] - F8 vs Enter in Rbase X

2016-09-05 Thread A. Razzak Memon
At 11:23 AM 9/5/2016, Bill Niehaus wrote: We have a form with a DBGrid where a user enters information in one column. The user would like to move down one row by using the Enter key instead of the tab or F8 key. Is there a way to move down a row with the Enter key? Bill, Technically, you

Re: [RBASE-L] - Simple Report Building questions

2016-09-05 Thread A. Razzak Memon
At 02:11 PM 9/5/2016, Lin MacDonald wrote: I am definitely a 'weekend programmer'! I wrote an application several years ago for my department's use and have hardly adjusted it since. Now, I need to make some changes and find that some simple issues are alluding me. The first thing I am comi

Re: [RBASE-L] - Editing a table in Rbase 9.5 vs Rbase X, 32 bit

2016-09-05 Thread A. Razzak Memon
At 11:16 PM 9/4/2016, Michael J. Sinclair wrote: In rbase 9.5 if I try to edit a table using this EDIT refflag FROM scripts0 WHERE patnumbr = 9363 and I hit the letter "X", and then hit the ESC key and click on save, the field changes the value to "X" BUT If I do the same thing in Rbas

Re: [RBASE-L] - Screen display

2016-09-03 Thread A. Razzak Memon
At 08:26 AM 9/3/2016, Mohammed Sattar wrote: We have managed to do by below procedure attached Mohammed Sattar Dhaka Bangladesh Superb work, Mohammed! Thanks for sharing your work with R:BASE community. Very Best R:egards, Razzak. -- You received this message because you are subscribed

RE: [RBASE-L] - select in problem

2016-09-02 Thread A. Razzak Memon
At 10:35 AM 9/2/2016, Dan Goldberg wrote: It works if the list is small but I guess there is a limit on the number of items. Change your holding variable to either NOTE or VARCHAR, as you see fit. Very Best R:egards, Razzak -- You received this message because you are subscribed to the Go

Re: [RBASE-L] - R:BASE Training in Germany

2016-09-01 Thread A. Razzak Memon
At 12:34 PM 8/30/2016, Adrian Huessy wrote: At the wonderful German training we had the chance to meet and train three new young R:BASE developpers. Welcome Fabian, Sebastian and Stefan in the world and community of R:BASE! Adrian, Yes indeed, it was my pleasure, and I had a great time! Th

RE: [RBASE-L] - Re: Can I capture sorting?

2016-08-29 Thread A. Razzak Memon
At 03:45 PM 8/29/2016, Dan Goldberg wrote: It doesn't show up in the rdocs drop down for variable list view. Dan: Look under the GETPROPERTY command. Here's how ... 01. Start R:Docs X 02. Click on GETPROPERTY Command 03. Select Build Syntax for GETPROPERTY Command Category: Variable Co

[RBASE-L] - Digitally Signing and Validating R:BASE Compiled Applications

2016-08-21 Thread A. Razzak Memon
Monday, August 22, 2016 Did you know that you can digitally sign your R:BASE Compiled (.EXE) applications? Digitally signing your R:BASE compiled application (.EXE) confirms the code’s origin and assure users that a malicious third party has not inserted malware. Signing your executables wi

[RBASE-L] - Tip of the Day: Customizing Column Format in Variable Lookup List View

2016-08-19 Thread A. Razzak Memon
Saturday, August 20, 2016 Tip of the Day: Customizing Column Format in Variable Lookup List View Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build.: 10.0.1.10727 or higher Section...: Form Controls (Variable Lookup List View) Keywords..: Variable Lookup

Re: [RBASE-L] - formatting email body

2016-08-17 Thread A. Razzak Memon
At 12:06 PM 8/17/2016, Jim Belisle wrote: I am writing code so the Body of the email is a variable. In an email body, I want to make one line both red text and bold. How do I go about doing that? Take a look at this ... R:Mail: http://www.rbase.com/products/rmail/ R:Mail Editor: http://www.r

[RBASE-L] - R:BASE X Enterprise - Super Advanced Training Course Outline

2016-08-16 Thread A. Razzak Memon
Tuesday, August 16, 2016 To All Attendees of 2016 R:BASE X Enterprise SAT in Erlangen, Germany: Updated R:BASE X Enterprise (Version 10) SAT Course Outline is now available. http://www.rbaseuniversity.com For your viewing pleasure ... Here's a preview of 2016 R:BASE X Enterprise SAT Switchboa

[RBASE-L] - From The Edge: Hot Keys (R:BASE X and R:BASE X Enterprise)

2016-07-29 Thread A. Razzak Memon
Friday, July 29, 2016 To All Users of R:BASE X and R:BASE X Enterprise (Version 10): Would you like to have some fun using the "Hot Keys" in the latest version and updates of R:BASE X and R:BASE X Enterprise? Version: R:BASE X and R:BASE X Enterprise (Version 10) Build..: 10.0.1.20727 and highe

[RBASE-L] - From The Edge: Using the R:BASE On-Screen Keyboard (ROSK)

2016-07-28 Thread A. Razzak Memon
Thursday, July 28, 2016 To R:BASE Community, From The Edge: Using the R:BASE On-Screen Keyboard (ROSK) Versions.: R:BASE X and R:BASE X Enterprise (Version 10) Section..: Utilities, Productivity Tools The updated "Using the R:BASE On-Screen Keyboard (ROSK)" technical document is now ava

[RBASE-L] - Tip of the Day: Customizing Input Language for ROSK

2016-07-28 Thread A. Razzak Memon
Thursday, July 28, 2016 Tip of the Day: Customizing Input Language for ROSK Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build.: 10.0.1.10727 or higher Section...: R:BASE On-Screen Keyboard (ROSK) Keywords..: ROSK, Input Language The R:BASE On-Screen Ke

RE: [RBASE-L] - Tip of the Day: RECALCulating Specific Variable(s)

2016-07-27 Thread A. Razzak Memon
makes the code easier to read. Javier, Javier Valencia, PE O: 913-829-0888 H: 913-397-9605 C: 913-915-3137 -Original Message- From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: Wednesday, July 27, 2016 11:13 AM To: rbase-l@google

RE: [RBASE-L] - Tip of the Day: RECALCulating Specific Variable(s)

2016-07-27 Thread A. Razzak Memon
etPrice, vTargetCost, vTargetShipped Thanks, Doug On 7/27/2016 9:56 AM, A. Razzak Memon wrote: > Wednesday, July 27, 2016 > > Tip of the Day: RECALCulating Specific Variable(s) > Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version > 10) > Build.: 10.0.1.10727 or hi

Re: [RBASE-L] - Tip of the Day: RECALCulating Specific Variable(s)

2016-07-27 Thread A. Razzak Memon
/2016 9:56 AM, A. Razzak Memon wrote: Wednesday, July 27, 2016 Tip of the Day: RECALCulating Specific Variable(s) Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build.: 10.0.1.10727 or higher Section...: EEPs Keywords..: RECALC VARIABLES Traditionally, usin

[RBASE-L] - Tip of the Day: RECALCulating Specific Variable(s)

2016-07-27 Thread A. Razzak Memon
Wednesday, July 27, 2016 Tip of the Day: RECALCulating Specific Variable(s) Product...: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build.: 10.0.1.10727 or higher Section...: EEPs Keywords..: RECALC VARIABLES Traditionally, using the RECALC VARIABLES command recal

[RBASE-L] - Released: Oterro X/XE (Version 10) - Update 1

2016-07-26 Thread A. Razzak Memon
Wednesday, July 27, 2016 To All Users of Oterro X/XE (Version 10): Oterro X/XE (Version 10) Update 1 is now available. These special updates of Oterro X/XE (Version 10), Build: 10.0.1.20727 include all the engine-level fixes and enhancements which have been implemented in the latest released up

[RBASE-L] - Released: R:Docs X (Version 10) - Update 1

2016-07-26 Thread A. Razzak Memon
Wednesday, July 27, 2016 To All Users of R:Docs X (Version 10): R:Docs X Update 1 (Build: 10.0.1.20727) is now available! http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Product Description: http://www.rbase.com/products/rdocs This is a FREE update for all active subscribers

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Update 1

2016-07-26 Thread A. Razzak Memon
Wednesday, July 27, 2016 To All Users of R:BASE X and R:BASE X Enterprise (Version 10): R:BASE X and R:BASE X Enterprise (Version 10) - Update 1 is now available. http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Build: 10.0.1.20727 - Update 1 . R:BASE X (Version 10) . R:BASE

Re: [RBASE-L] - Using views with a DB tree view

2016-07-26 Thread A. Razzak Memon
At 12:46 PM 7/25/2016, Stuart Hellman wrote: I've created a view which is a union of other views that contains a portion of my original table. I can display the view, but when I click on a node in the DB Tree View, it's as if nothing is selected. The values of my variables which contain the IDs

[RBASE-L] - Running R:BASE Applications on Cloud - Document

2016-07-25 Thread A. Razzak Memon
Monday, July 25, 2016 I hope you all had an opportunity to witness and have first-hand experience of running R:BASE applications on our custom configured and deployed Cloud servers. https://rbase360.com https://rbaseapps.com https://rbasecloud.com All interested participants have been provide

Re: [RBASE-L] - Rbsync

2016-07-21 Thread A. Razzak Memon
At 05:09 PM 7/21/2016, Tom Hart wrote: How do you run Rbsync on a compiled app? Here's how: At least two practical options ... 01. Update the R:Compiler startup file with the following command: DISCONNECT SET AUTOSYNC ON CONNECT dbname ... -- your remaining code here ...

RE: [RBASE-L] - Running R:BASE Applications on Cloud - Update

2016-07-16 Thread A. Razzak Memon
.com [mailto:rbase-l@googlegroups.com] On Behalf Of A. Razzak Memon Sent: July 7, 2016 12:44 PM To: rbase-l@googlegroups.com Subject: [RBASE-L] - Running R:BASE Applications on Cloud - Update Thursday, July 7, 2016 I hope you all had an opportunity to witness and have first-hand experience of run

[RBASE-L] - Running R:BASE Applications on the Cloud

2016-07-08 Thread A. Razzak Memon
Friday, July 8, 2016 To R:BASE Community: If you have not already done so, to explore and have first-hand experience in running R:BASE applications on the Cloud, please send your request to: mailto:cloudt...@rbasecloud.com R:BASE Application Cloud Servers: https://rbase360.com https://rbaseap

[RBASE-L] - Running R:BASE Applications on Cloud - Update

2016-07-07 Thread A. Razzak Memon
Thursday, July 7, 2016 I hope you all had an opportunity to witness and have first-hand experience of running R:BASE applications on our custom configured and deployed Cloud servers. https://rbase360.com https://rbaseapps.com https://rbasecloud.com All interested participants have been provid

[RBASE-L] - Sample Applications: Using DB TreeView Control

2016-07-07 Thread A. Razzak Memon
Thursday, July 7, 2016 A sample application to illustrate the use of DB TreeView control is now available. R:BASE Sample Applications: http://www.Razzak.com/SampleApplications/ Application Title: Using DB TreeView Control in R:BASE X Enterprise Please Note: . There are no pre-requisites to in

Re: [RBASE-L] - Return value of (CVAL('PRN_status'))

2016-07-06 Thread A. Razzak Memon
At 03:53 PM 7/5/2016, Mike Ramsour wrote: Version: R:BASE eXtreme 9.5 64-bit on Windows 7 Professional 64-bit What value should be returned with the (CVAL('PRN_status')) function? Is this only for the current default printer? What if it's a network printer? What I need is to be able to ch

RE: [RBASE-L] - plus sign for multiple rows in detail section

2016-07-06 Thread A. Razzak Memon
At 07:51 PM 7/6/2016, Manuel de Aguiar wrote: Hi Razzak, I would like to request an article in your wonderful website "From the Edge" concerning the use, with examples, of the DB Tree View Object. I am having difficulties with the expandable tree view and a better understanding will be great fo

[RBASE-L] - Tip of the Day: External Print Module Within the TabPrint.dll

2016-07-05 Thread A. Razzak Memon
Tuesday, July 05, 2016 Tip of the Day: Enhanced Print Module With the TabPrint.dll Product..: R:BASE/Runtime/R:Compiler - X/X Enterprise (Version 10) Build: 10.0.1.10627 or higher Section..: Data Browser Keywords.: Print, Data Browser Did you know the R:BASE Data Browser has been enhanced wi

Re: [RBASE-L] - Where Clause for a Date Column, but I only want to search based on month...

2016-06-30 Thread A. Razzak Memon
At 06:47 PM 6/30/2016, asgkuschinsky wrote: I am trying to set up a Where clause that searches a Date column (MM/DD/YY) but I only want to search based off of the month. For example, I want to search all dates in January regardless of the day or year. I've tried several variations, both based

[RBASE-L] - Running R:BASE Applications on Cloud

2016-06-29 Thread A. Razzak Memon
we can do to help you to deploy your R:BASE applications on cloud! Very Best R:egards, Razzak. A. Razzak Memon Founder, President & CEO R:BASE Technologies, Inc. www.rbase.com -- 33 years of continuous innovation! 18 Years of R:BASE Technologies, Inc. making R:BASE what it is t

[RBASE-L] - Tip of the Day: Using Enhanced Appearance Options In R:Charts (X/XE)

2016-06-28 Thread A. Razzak Memon
Tuesday, June 28, 2016 Tip of the Day: Using Enhanced Appearance Options In R:Charts (X/XE) Product..: R:Charts X (Version 10) and R:BASE X Enterprise (Version 10) Build: 10.0.1.10627 or higher Section..: Add-On Products Keywords.: R:Charts Did you know that you can enhance the resolution of

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Add-on Products

2016-06-26 Thread A. Razzak Memon
Monday, June 27, 2016 To All Users of R:BASE X and R:BASE X Enterprise Add-on Products: Updates are now available for the following add-on products for R:BASE X and R:BASE X Enterprise (Version 10): Build: 10.0.1.20627 - Update 1 . R:BASE Editor X . R:BASE Plugin Power Pack X * . R:Charts X *

[RBASE-L] - Released: R:BASE X/XE (Version 10) - Update 1

2016-06-26 Thread A. Razzak Memon
Monday, June 27, 2016 To All Users of R:BASE X and R:BASE X Enterprise (Version 10): R:BASE X and R:BASE X Enterprise (Version 10) - Update 1 is now available. http://www.rbaseupdates.com http://www.rupdates.com (Mirror Site) Build: 10.0.1.20627 - Update 1 . R:BASE X (Version 10) . R:BASE X (

Re: [RBASE-L] - Tent-Card Labels & DB Label Rotation

2016-06-26 Thread A. Razzak Memon
At 06:09 PM 6/26/2016, Bruce Chitiea wrote: I'm setting up "Tent" Cards ... place cards for a formal dinner, each side printed from a DB Label ... if a DB Label can be rotated 180 degrees. On one half of the tent is the guest's name. On the other, their affiliation, which will display upside d

<    5   6   7   8   9   10   11   >