[RBASE-L] - Tip of the Day: Tab Order Sequence in the Form Designer

2016-12-08 Thread A. Razzak Memon
Thursday, December 08, 2016 Tip of the Day: Tab Order Sequence in the Form Designer Product...: R:BASE X/X Enterprise (Version 10) Build.: 10.0.2.11130 or higher Section...: Forms Keywords..: Tab Order, Form Designer Did you know the tab order of form controls, specifically w

[RBASE-L] - R:BASE Online Resources

2016-12-08 Thread A. Razzak Memon
Thursday, December 08, 2016 To all our new and young users who have recently joined 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://w

[RBASE-L] - property commands

2016-12-08 Thread Jim Belisle
Using RABSE 9.5. Creating a form in which the tab order normally stops at field a. In the edit mode, however, I want the cursor to go to a different field. In the on after start EEP I use the following PROPERTY commands for the edit mode. The comp_proc field I want to bypass. The comp_pcadd I wan

[RBASE-L] - RE: property commands

2016-12-08 Thread Dan Goldberg
I am thinking you need to turn off the tabstop first. PROPERTY comp_proc TABSTOP 'FALSE' PROPERTY comp_proc READONLY 'TRUE' PROPERTY comp_proc ENABLED 'FALSE' PROPERTY comp_pcadd SET_FOCUS 'TRUE' Dan Goldberg From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of

[RBASE-L] - RE: property commands

2016-12-08 Thread Jim Belisle
Dan, Thanks. I had it set up that way at first. I decided to change the tab order to see if that would help. So far that seems to help. I have to test in the enter mode as well to make sure. Appreciate the help. James Belisle Making Information Systems People Friendly Since 1990 [cid:image001.

[RBASE-L] - Property command

2016-12-08 Thread Tom Hart
Using Rbase X have a scrolling region for that has a field with 'T' taxable or 'N' nontaxable. If it is 'T' I want it to show green, if 'N' to show red. What is the best to accomplish this Tom Hart -- You received this message because you are subscribed to the Google Groups "RBASE-L" group. T

Re: [RBASE-L] - Property command

2016-12-08 Thread jan johansen
Tom, I believe in a scrolling region you will only be able to change the color based on the current 'row' if that makes a difference to you. Otherwise a DB grid or variable list will show all 'T' as green. Jan -Original Message- From: Tom Hart To: rbase-l@googlegroups.com Date: Thu, 8 D

Re: [RBASE-L] - Property command

2016-12-08 Thread A. Razzak Memon
Switch your control from Scrolling Region to Enhanced DBGrid control. Using the Enhanced DBGrid control, you can customized each cell of a column, including cell background/font color, based on column value. Very Best R:egards, Razzak At 03:16 PM 12/8/2016, Tom Hart wrote: Using Rbase X hav

Re: [RBASE-L] - Property command

2016-12-08 Thread Tom Hart
I think my problem is I have a lookup, can that be done in a dbgrid? Tom On Thu, Dec 8, 2016 at 3:05 PM, A. Razzak Memon wrote: > Switch your control from Scrolling Region to Enhanced DBGrid control. > > Using the Enhanced DBGrid control, you can customized each cell of a > column, including cel

Re: [RBASE-L] - Property command

2016-12-08 Thread Tom Hart
Based on an itemNumber I lookup all relevant info from that, can that be accomplished in a dbgrid? Tom On Thu, Dec 8, 2016 at 3:17 PM, Tom Hart wrote: > I think my problem is I have a lookup, can that be done in a dbgrid? > Tom > > On Thu, Dec 8, 2016 at 3:05 PM, A. Razzak Memon wrote: > >> Swi

Re: [RBASE-L] - Property command

2016-12-08 Thread A. Razzak Memon
In that case, define a custom VIEW with all lookups, etc. Then, assign the Enhanced DBGrid to that custom VIEW to accomplish your goal. Sometimes you just have to think outside the box :) Very Best R:egards, Razzak At 04:17 PM 12/8/2016, Tom Hart wrote: I think my problem is I have a looku

Re: [RBASE-L] - Property command

2016-12-08 Thread karentellef via RBASE-L
But if the view has >1 table, then the view would not be editable. So this would work only if the DBGrid was read-only, right? Karen -Original Message- From: A. Razzak Memon To: rbase-l Sent: Thu, Dec 8, 2016 3:30 pm Subject: Re: [RBASE-L] - Property command In that case, de