RE: [RBASE-L] - date picker cutting off

2018-05-02 Thread A. Razzak Memon
something in my settings lol Dan Goldberg -Original Message- From: rbase-l@googlegroups.com On Behalf Of A. Razzak Memon Sent: Wednesday, May 2, 2018 2:44 PM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - date picker cutting off Dan, Here's what I get when using the San Dieg

RE: [RBASE-L] - date picker cutting off

2018-05-02 Thread Dan Goldberg
Thx for your help. Looks like it has already been fixed! I thought I did something in my settings lol Dan Goldberg -Original Message- From: rbase-l@googlegroups.com On Behalf Of A. Razzak Memon Sent: Wednesday, May 2, 2018 2:44 PM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L

Re: [RBASE-L] - date picker cutting off

2018-05-02 Thread A. Razzak Memon
Dan, Here's what I get when using the San Diego SAT Edition of R:BASE X Enterprise. SET VAR vDate DATE = NULL SET VAR vDate = (GETDATE('Select Date')) See attached screenshots. Very Best R:egards, Razzak At 05:32 PM 5/2/2018, Dan Goldberg wrote: My date picker is cutting off. Not sure why.

Re: [RBASE-L] - Date Picker

2017-04-13 Thread Carpet Broker, Dick Fey
Chitiea SafeSectors, Inc. 909.238.9012 Mobile -- Original Message -- Sent: 4/7/2017 3:37:05 PM Subject: RE: [RBASE-L] - Date Picker From: "Javier Valencia" mailto:javier.valen...@vtgonline.com>> To: rbase-l@googlegroups.com <mailto:rbase-l@g

Re: [RBASE-L] - Date Picker

2017-04-07 Thread A. Razzak Memon
Dick, Here is an example of universal external form that will provide you with two variable Date Pickers to always start with first and last dates of current month. External Form Name: GeStartAndEndDates.rff This external form can be used with any database, and can be called from anywhere in

RE: [RBASE-L] - Date Picker

2017-04-07 Thread Javier Valencia
When I need start and end dates, I have a form that that has standard periods but you can select individual dates as well. By default the form stars with the first day of the current year as the start date and the current date as the end date. It return two variable vDate_from and vDate_to

RE: [RBASE-L] - Date Picker

2017-04-06 Thread Dan Goldberg
var vdate2 = .vedate recalc variables clear var vedate return Dan Goldberg From: rbase-l@googlegroups.com [mailto:rbase-l@googlegroups.com] On Behalf Of Tom Hart Sent: Wednesday, April 5, 2017 3:08 PM To: rbase-l@googlegroups.com Subject: Re: [RBASE-L] - Date Picker I use a var date picker (one for

Re: [RBASE-L] - Date Picker

2017-04-05 Thread Tom Hart
I use a var date picker (one for start date/one for end date) and it defaults to current date in both. Tom Hart On Wed, Apr 5, 2017 at 10:08 AM, Albert Berry wrote: > Assign the ending date field a component id e.g.: cEndingDate > Assign the beginning: cBeginDate > Add an exit eep to the beginn

Re: [RBASE-L] - Date Picker

2017-04-05 Thread Albert Berry
Assign the ending date field a component id e.g.: cEndingDate Assign the beginning: cBeginDate Add an exit eep to the beginning date SET VAR vEndDate DATE SET VAR vEndDateT TEXT GETPROPERTY cBeginDate TEXTVALUE ‘vEndDateT’ SET VAR vEndDate = .vEndDateT PROPERTY cEndDate TEXTVALUE .vEndDate RETURN