Re: User environment "List of Tables" Stuck - TeamViewer - Yech!

2017-07-14 Thread Adam Bevan via 4D_Tech
Must be my problem too. Though it would only happen on my windows 10 machine. My mac is unaffected by the issue. Adam Bevan Developer & CEO, Argus Productions Inc. On 13 July 2017 at 21:07, Randy Engle via

Re: Modelling graph image

2018-03-19 Thread Adam Bevan via 4D_Tech
A few years ago I built my own graph method using the svg commands. It did all you’ve indicated but the coloured/symbol points. Though that would have been easy to add. I did not use the graph command though. Sent from my iPhone > On Mar 17, 2018, at 3:43 AM, STARDATA via 4D_Tech

Re: Selection-Based Listbox Sizing/Printing...

2019-07-12 Thread Adam Bevan via 4D_Tech
Hi Robert, I take it that listbox 1 could have more or less rows than listbox 2. You would like to show each row of both listboxes. This would depend on the customer and if there is enough room on the page to display all rows of both listboxes. You could limit the number of rows printed on the

Re: Selection-Based Listbox Sizing/Printing...

2019-07-12 Thread Adam Bevan via 4D_Tech
late a TEXT var with the listbox data > and set that to print variable frame… It seems like a kluge and that a > better solution might be available. > > Thanks, > > Robert > > > > On Jul 12, 2019, at 3:15 PM, Adam Bevan via 4D_Tech < > 4d_tech@lists.4d.com> wrote:

Re: Stylesheet Search?

2019-07-12 Thread Adam Bevan via 4D_Tech
Build a report. Open each form using 'form load'. Call 'form get objects' then call 'object get style sheet' for each object. Adam Bevan Developer & CEO, Argus Productions Inc. On Fri, 12 Jul 2019 at 14:22, Robert ListMail via 4D_Tech <

Re: save listbox

2019-08-13 Thread Adam Bevan via 4D_Tech
Chips solution probably the quickest. I ended up writing to a tab deliminated text file, so I could load it up into a spreadsheet. $vH_FileRef:=Create document($vT_FilePath) LISTBOX GET

Re: Creating Hierarchical Listbox

2019-07-29 Thread Adam Bevan via 4D_Tech
Hi Peter, Sounds like your top level rows have columns populated with data inbetween blank data (columns 7&9) I would recommend re-ordering the rows so that 7&9 become 6&7. APPEND TO ARRAY ($aptr_HierarchyList; ->Column_1) APPEND TO ARRAY ($aptr_HierarchyList; ->Column_2) APPEND TO ARRAY

Re: printing listboxes

2019-08-12 Thread Adam Bevan via 4D_Tech
Hi Chip, I know that 'calculated' columns do print in v12 and v16. The only thing I haven't done is use relate one in my 'calculated' column methods. Adam Bevan Developer & CEO, Argus Productions Inc. On Mon, 12 Aug 2019 at 13:28, Chip Scheide via

Re: Drag n drop (between processes)

2019-08-12 Thread Adam Bevan via 4D_Tech
I throw the data i want dropped into an object for dragndrop. Then when i drop I know what iam getting as i include the table and record numbers. Where i dragged it from(process,form,object) are also included. Made my listbox drag an drop so much easier to handle and very generic. Sent from my

Re: Help Tips for list boxes?

2019-09-03 Thread Adam Bevan via 4D_Tech
AJUI_Tip looks nice but it requires a picture object on every page on every form you want it to work. I instead use a window in a new process and call it on mouse enter and leave. Similar result. as well, my custom help tips don't disappear after 5 seconds. Adam Bevan Developer & CEO, Argus

Re: Help Tips for list boxes?

2019-09-03 Thread Adam Bevan via 4D_Tech
; > On Tue, 3 Sep 2019 at 17:50, Adam Bevan via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > > AJUI_Tip looks nice but it requires a picture object on every page on > > every form you want it to work. > > I instead use a window in a new process and call it on mouse

Re: QUERY WITH ARRAY - SQL Equivalent?

2019-09-18 Thread Adam Bevan via 4D_Tech
Because of the SQL gotcha in v12 I always have a case of statement to run 4D queries instead. For something like what is described, I send the query to another process and return the array of record ID's. Allows for the query but doesn't change the

Re: Object notation replacement for use of Self in a script — v18

2020-04-29 Thread Adam Bevan via 4D_Tech
*OBJECT Get pointer*(Object named;"") does return the Form object. If you standardise your naming convention of the form field objects you could determine the sub object and attribute you're looking for. example: FormObj_Wrap_Trim("en_company";"name") FormObj_Wrap_Trim: $vT_Object:=*$1*

Re: ON MOUSE ENTER

2020-08-13 Thread Adam Bevan via 4D_Tech
On mouse enter it triggers only once on entering the list box. If your mouse moves within the listbox it would not trigger again and you could not trigger any code. If you use listbox get cell position and on mouse move. This might get you what you need. Sent from my iPad > On Aug 14, 2020,

Re: JSON Plugin for 4Dv17

2021-04-08 Thread Adam Bevan via 4D_Tech
This is supported natively. $vJ_Object:=New object $vJ_Object.value1:="stuff" $vJ_Object.value2:="morestuff" $vJ_Object.value3:="otherstuff" $vT_Text:=Json Stringify($vJ_Object;*) TEXT TO DOCUMENT($vT_DocPath;$vT_Text) Adam Bevan Argus Productions Inc.