Re: SVG - how to encode angle brackets as text?

2017-01-25 Thread Kirk Brooks
t > > into the viewer tool. It only seems to be angle brackets. I tried > escaping > > them to no avail. I even tried rendering the text into a picture and then > > setting the picture in the $svgRef object but the Viewer also barfed on > > that. > > > > Anyone have some insigh

Re: SVG - how to encode angle brackets as text?

2017-01-24 Thread Kirk Brooks
Ok, so this is an edge case. The ultimate workaround was to just build the image in pure SVG using lines. On Tue, Jan 24, 2017 at 11:39 AM, Kirk Brooks <lists.k...@gmail.com> wrote: > I'm playing with some SVG and using the *SVGTool_SHOW_IN_VIEWER.* I > notice that when I attempt

Re: Equals is not always transitive

2017-01-24 Thread Kirk Brooks
html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ** > -- Kirk Brooks San Francisco, CA

SVG - how to encode angle brackets as text?

2017-01-24 Thread Kirk Brooks
d rendering the text into a picture and then setting the picture in the $svgRef object but the Viewer also barfed on that. Anyone have some insight? Thanks​ -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group

Re: Sierra 10.12.3

2017-01-23 Thread Kirk Brooks
tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.co

Re: Maintenance & Security Log

2017-01-22 Thread Kirk Brooks
more like a bug in 4D... > If you delete an object, it should know how to delete the object method. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqn

Re: v13 - text field Copy/Paste

2017-01-19 Thread Kirk Brooks
lds which are displayed on a tab control. > I enter some text. > Cut the text > paste the text > > AND... the pasted text is largerlike from 10 (original) to 12 > (pasted) points!?!? -- Ki

Re: v13 - Listbox Cell level colors

2017-01-19 Thread Kirk Brooks
Chip, No, not in v13. Your only options are for the entire row or the entire column. On Thu, Jan 19, 2017 at 6:52 AM, Chip Scheide <4d_o...@pghrepository.org> wrote: > Can I set the font and/or background color for a specific cell in a > selection listbox? > -- Kirk Brooks Sa

Re: How to get the IP address of the 4D web server within 4D?

2017-01-16 Thread Kirk Brooks
cted. I should have just re-started everything when things began to look wonky. On Mon, Jan 16, 2017 at 7:18 AM, Jeffrey Kain <jeffrey.k...@gmail.com> wrote: > MAXLONG is for a signed 4D longint -- so your IP which is greater than > MAXLONG would be expressed as a negative number (4D doesn

Re: How to get the IP address of the 4D web server within 4D?

2017-01-15 Thread Kirk Brooks
IP converter which gives me 192.168.1.3 => 3232235779 or 0xC0A80103 ​But this is bigger than MAXLONG = 2147483647 => 127.255.255.255 ​​So I don't see how I can even encode an IP where the first quad is greater than 127. -- Kirk

Re: How to get the IP address of the 4D web server within 4D?

2017-01-15 Thread Kirk Brooks
If I set a value WGO returns that value - not the actual IP the web server is on. ​ ​This is v15.3, Mac, BTW. ​ -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.

Re: Tip: Binary insertion code

2017-01-15 Thread Kirk Brooks
ll I can rely on the straight forward 4D approach. But as I write that I can also see the benefits of a little more structure in constructing my objects - even if they aren't on a scale where using Find in array vs. Find in sorted array will make a measurable difference. -- Kirk Brooks San Francisco, C

Re: How to get the IP address of the 4D web server within 4D?

2017-01-15 Thread Kirk Brooks
com> wrote: > You want *Get database parameter *command. > > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.co

How to get the IP address of the 4D web server within 4D?

2017-01-15 Thread Kirk Brooks
I thought I saw this recently but I can't find it now - given a copy of 4D running the web server how can I get the IP address it's listening to? I thought WEB GET OPTION would do it but it doesn't dynamically (it only seems to return whatever value WEB SET OPTION installed). Thanks -- Kirk

Re: Tip: Binary insertion code

2017-01-15 Thread Kirk Brooks
ed binary searches on arrays back in V14 R4, so everyone with > V15 and up has it. Who knew? > > http://doc.4d.com/4Dv15/4D/15.3/Find-in-sorted-array.301-3152640.en.html > > -- Kirk Brooks San Francisco, CA === *

Re: OB commands, confirming a few points

2017-01-11 Thread Kirk Brooks
ecomes is it there or not. But like I said, in 4D I look at c-objects as agnostic data containers. So an object array being able to contain multiple data types is a feature. ​But I may be thinking too small. What are some cases where ​"you need to know the internals of an object in orde

Re: Initiating a new process

2017-01-11 Thread Kirk Brooks
I never found some real issue with this schema. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Opt

Re: Combined Getter and Setter

2017-01-09 Thread Kirk Brooks
e right. I seem to be settling on a general convention of module_verb_descriptor​ ​so​ ​Object_get_whatever​ ​I really want to the methods to sort together by 'module' - but as soon as I say that I can think of several times I violated it. As they say, "it depends."​ -- Kirk

Re: Combined Getter and Setter

2017-01-08 Thread Kirk Brooks
cated than separating them by function. This is one of those places where the elegance of fewer methods is not worth the increased ​complexity to make it work. -- Kirk Brooks San Francisco, CA === ** 4D Internet

Re: 4D UI code questions and observations

2017-01-08 Thread Kirk Brooks
t for typical forms the limiting factor tends to be the human more than the machine or the code. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html

Re: 4D UI code questions and observations

2017-01-07 Thread Kirk Brooks
s the actual code out of the object, which I think is a good thing, into the form controller and I can deal with it however I need to from there. How would that contribute to 'losing events'? -- Kirk Brooks San F

Re: 4D UI code questions and observations

2017-01-07 Thread Kirk Brooks
y get this feature by > clearing out the variable name area in the object's property list.) Also, > I'm striving to move the code out of scripts entirely. At this point, I'm > doing a bunch with listboxes so I've ended up with some listbox-specific > behaviors and questions. Oh, in ca

Re: Tip (?): Escaping escape characters

2017-01-06 Thread Kirk Brooks
's particularly hard in this environment. Pretty much everyone wants good testing until we have to spend the resources to actually achieve it. ​What sort of stuff was the 'inspirational group' in Brisbane doing?​ -- Kirk Brooks Sa

Re: Why does a converted v13 db limit text vars to 32k?

2017-01-06 Thread Kirk Brooks
remember there was a bug where if you upgrade from v11 straight to v13 > unicode mode was deactivated yet the compatibility dialog told otherwise. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users

Re: Why does a converted v13 db limit text vars to 32k?

2017-01-06 Thread Kirk Brooks
On Thu, Jan 5, 2017 at 2:08 PM, Kirk Brooks <lists.k...@gmail.com> wrote: > What's the dang deal here? > ​Well, I'm not really sure what the deal is but I resolved it by running MSC, correcting a few other, unrelated problems, and then running 'repair'. Verified with: ​C_TEXT($tex

Re: Tip (?): Escaping escape characters

2017-01-06 Thread Kirk Brooks
ying to do is something like this: $code:="$text:=\"\"damn\" dog \\on hill\r\n" $code:=$code+"ALERT(___escape ($text)+\"\r\r\"+$text)" and then run $code. ​In this context the method makes sense. I've found it challenging to have 4

Re: Component Code Passing Parameters to Method in Host DB

2017-01-05 Thread Kirk Brooks
> dereference to the text values which I expect. I don't understand the > syntax errors. > > Any idea what I may be doing wrong? > > -- Kirk Brooks San Francisco, CA === ** 4D Internet Use

Re: Why does a converted v13 db limit text vars to 32k?

2017-01-05 Thread Kirk Brooks
...@gmail.com> wrote: > Are you using an old codec in BLOB TO TEXT or Convert Text with these > variables - anything with "Mac" in their name? Like "Mac text without > length" or "Mac C string"? > > -- > Jeffrey Kain > jeffrey.k...@gmail.com > &g

Why does a converted v13 db limit text vars to 32k?

2017-01-05 Thread Kirk Brooks
Working with an old project that's currently at v13. Text vars are truncating to 32k. I initially thought this would be because of the Unicode setting but even after enabling and restarting with Unicode they still truncate. What's the dang deal here? Thanks -- Kirk Brooks San Francisco, CA

Zipping a datafile - wow

2016-12-11 Thread Kirk Brooks
is a little over 1 gig. I zipped it and got a 747 mb file - about twice as large as the first .zip file. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html

About using the Hidden Rows Array on listboxes

2016-12-09 Thread Kirk Brooks
fashion? I'm working in v13 at the moment. ​Thanks​ -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html

Re: Query editor in v15

2016-12-09 Thread Kirk Brooks
Guy, ​That's a good point.​ On Fri, Dec 9, 2016 at 1:52 PM, Guy Algot <g...@macjedi.ca> wrote: > Whatever you want to call it, I think Lee’s comment is spot on. Have you > seen how many ‘features’ get voted for in the forum but we get a new editor… > -- Kirk Brooks Sa

Re: Query editor in v15

2016-12-09 Thread Kirk Brooks
<leehi...@gmail.com> wrote: > > I.e., I'm not clear what itch got scratched with that change. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com

Re: How can I catch a 4D drop on a web area?

2016-12-07 Thread Kirk Brooks
. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options: http://lists.4d.com/mailman/options/4d_tech

How can I catch a 4D drop on a web area?

2016-12-07 Thread Kirk Brooks
Subject pretty much says it all - give a web area on a 4D form how can I catch a drop in the javascript on the displayed page? For example, an element is dragged from an hList or listbox to a div on the web area. How can I coerce the web area into generating the javascript ondrop event? -- Kirk

Re: v14 on macOS Sierra?

2016-12-07 Thread Kirk Brooks
r and 4D v15 would be clicking on > the tabs in the "Connection To Server" dialog. > > Click on "Available" then "Custom" then "Available" again and at this point > you would have crashed. > > Not even need t

Re: Move Object

2016-12-06 Thread Kirk Brooks
s: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** -- Kirk Brooks San Francisco, CA === ***

Re: v14 on macOS Sierra?

2016-12-06 Thread Kirk Brooks
: '-[WK4D_CarbonWindowFrame contentFill]: unrecognized selector sent to instance 0x1252a190' -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive

Re: v14 on macOS Sierra?

2016-12-06 Thread Kirk Brooks
87+) are signed and should bypass > the App Translocation feature of Sierra. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: ht

Re: Unusual follow up question

2016-12-05 Thread Kirk Brooks
> note to the list or am I the only one seeing it? > > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.h

Re: v14 on macOS Sierra?

2016-12-05 Thread Kirk Brooks
e experience, how shall I put this nicely - did not fail to suck. Are you saying Parallels fails to suck? And more importantly can you drive at least one external monitor with it? -- Kirk Brooks San F

Re: About using the same data file in two different structures...

2016-12-05 Thread Kirk Brooks
) > FAQ: http://lists.4d.com/faqnug.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > *******

Re: v14 on macOS Sierra?

2016-12-05 Thread Kirk Brooks
net Users Group (4D iNUG) > FAQ: http://lists.4d.com/faqnug.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ***

Re: v14 on macOS Sierra?

2016-12-05 Thread Kirk Brooks
16, 9:35 AM, "4D_Tech on behalf of Kirk Brooks" < > 4d_tech-boun...@lists.4d.com on behalf of lists.k...@gmail.com> wrote: > > Ed, > Tell me more then. I signed up for the public beta just because I'd > heard > that but v15.3 still crashes right off when

Re: v14 on macOS Sierra?

2016-12-05 Thread Kirk Brooks
wrote: > That comes as news to me as I am running 10.12.2 (Public Beta 4) without > any issues using 15.3. > > Ed > > On 12/5/16, 9:05 AM, "4D_Tech on behalf of Kirk Brooks" < > 4d_tech-boun...@lists.4d.com on behalf of lists.k...@gmail.com> wrote: > >

Re: v14 on macOS Sierra?

2016-12-05 Thread Kirk Brooks
Gerald, On Mon, Dec 5, 2016 at 7:58 AM, Gerald Balzer <gbal...@balzer-computing.ch> wrote: > This applies to all current 4D versions. Even 15 and 16(?). > ​v15.3 doesn't run on 10.12.2. -- Kirk Brooks San F

Re: ​About using the same data file in two different structures...

2016-12-05 Thread Kirk Brooks
further believe that you can > setup more then 1 mirror. In the situation you are talking about the > mirrors would be the remote site(s) -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (

Re: ​About using the same data file in two different structures...

2016-12-04 Thread Kirk Brooks
or "mirror" operation. It's a simple "updater" operation, with unlimited > logical needs at each end depending on the specific project and it's own > unique needs for master/satellite updation needs, sometimes in a two way > manner. I'm a fan of "low tech&quo

Re: About using the same data file in two different structures...

2016-12-04 Thread Kirk Brooks
Hi Tim, Thanks for this. And explains why the .match file gets stashed in the Logs folder. On Sun, Dec 4, 2016 at 5:08 PM, Tim Nevels <timnev...@mac.com> wrote: > On Dec 4, 2016, at 12:36 PM, Kirk Brooks wrote: > > > Miyako, > > Playing with your UUID tool cla

Re: EXECUTE ON SERVER Attribute - Is there similar for single-user?

2016-12-04 Thread Kirk Brooks
l three. There are very few places anymore that I really need the > overhead of spawning a new process and trying to time them together. In > fact, I can’t think a a single reason to do so once you are using 4D

Re: About using the same data file in two different structures...

2016-12-03 Thread Kirk Brooks
esource name...) > https://github.com/miyako/4d-utility-uuid-manager > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: h

Re: About using the same data file in two different structures...

2016-12-03 Thread Kirk Brooks
ould still have the same uuid. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options: http://l

Re: About using the same data file in two different structures...

2016-12-03 Thread Kirk Brooks
a > mis-matched structure-data file combo? To prevent people corkscrewing open > ​ ​ > other people's data files? > ​I never thought of that. And in my youth I used to manage bars and restaurants which made me very attentive to scams. -- Ki

Re: About using the same data file in two different structures...

2016-12-03 Thread Kirk Brooks
lds. - Open Structure B. Create Table 1 & name it [_species_] and give it 5 text fields. - Re-open Structure B and open the datafile created by Structure A. ​What I'm seeing is the table names don't seem to matter as long as the Tables and Fields have exactly the same numbers

Re: About using the same data file in two different structures...

2016-12-03 Thread Kirk Brooks
. That could be an issue here too I hadn't thought of. On Sat, Dec 3, 2016 at 3:04 PM, David Adams <dpad...@gmail.com> wrote: > Ignoring the big picture questions ​I'm interested in your thoughts on the big picture if you're up for sharing. ​ -- Kirk Brooks San Fran

Re: Question about Web Areas and local cache

2016-12-02 Thread Kirk Brooks
n/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (

Re: Question about Web Areas and local cache

2016-12-02 Thread Kirk Brooks
.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** > -- Kirk Brooks San Francisco, CA ===

Re: Question about Web Areas and local cache

2016-12-02 Thread Kirk Brooks
mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http

Re: Question about Web Areas and local cache

2016-12-02 Thread Kirk Brooks
FWIW - if the context menu is enabled the Reload command on that does the full relaod. I'd still like to know how to do it via programming. On Thu, Dec 1, 2016 at 5:38 PM, Kirk Brooks <lists.k...@gmail.com> wrote: > Here's something I haven't noticed before - I'm developing some html/j

Re: Passing Object Pointers vs References - slight 'gotcha'

2016-12-01 Thread Kirk Brooks
) and write the results to objects or variables passed as pointers. On Thu, Dec 1, 2016 at 8:36 AM, Peter Jakobsson <li...@netkelvin.com> wrote: > On 1 Dec 2016, at 16:16, Kirk Brooks <lists.k...@gmail.com> wrote: > > > I use all three of the instances discussed: dire

Re: Passing Object Pointers vs References - slight 'gotcha'

2016-12-01 Thread Kirk Brooks
a long time ago) ​you can setup an import form allowing a user to paste in the TSV text. I do this also with everything from a few lines to files a few megs in size. Quick and easy. -- Kirk Brooks San Francisco, CA === *

Re: Here's something cool about using Execute Method

2016-11-29 Thread Kirk Brooks
om/faqnug.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ******

Re: Here's something cool about using Execute Method

2016-11-29 Thread Kirk Brooks
ives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ** > -- Kirk Brooks San Francisco, CA === *

Here's something cool about using Execute Method

2016-11-29 Thread Kirk Brooks
for them) - if params are required get the comments, extract any JSON obj, configure the dialog and get user input - run it using Execute method ​This seems especially well suited to things like maintenance tasks. ​ -- Kirk Brooks San Francisco, CA

Re: v12 & v13 screwup, converted accidentally

2016-11-23 Thread Kirk Brooks
org> wrote: > I pulled a back up copy - it is only 2 days old. > I have the v13 (up to date copy) I can go through the sections I was > working on and check them > > and thanks for the tip on find in design - ill try that -- Monday :) > -- Kirk

Re: Window Management and Background Image (Windows OS)

2016-11-23 Thread Kirk Brooks
t; BMP image and tile it or scale it: > > https://github.com/OrchardSoftware/4D-Win32API > > You can also change the little corner icon of any window, and do other UI > tricks that make a 4D app on Windows look quite nice, rather than 4D's > default of, uh, "abandoned"? &qu

Re: Window Management and Background Image (Windows OS)

2016-11-23 Thread Kirk Brooks
to them like 4D isn't working right. On Tue, Nov 22, 2016 at 10:25 PM, <roofto...@mac.com> wrote: > Thoughts? > > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ

Re: Debugger - catch whenever a variable changes

2016-11-22 Thread Kirk Brooks
right, yes I've used that method before - nice to know it's called a > gate! (makes sense). -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.htm

Re: Character encoding in a PDF

2016-11-22 Thread Kirk Brooks
adobe.com/content/dam/Adobe/en/devnet/acrobat/ > pdfs/pdf_reference_1-7.pdf > > You could modify the pdfDocPageAddText method for special characters by > altering $1 at the top of the method. For example to get the Euro to show > correctly use: > > $1:=Replace string($1;&qu

Character encoding in a PDF

2016-11-21 Thread Kirk Brooks
ion. The PDF is built in blobs and there are some conversions of blob to text and text to blob along the way. Or this may be an issue of not having complete font information available. Are there any PDF facil readers who can offer some insight here? ​Thanks -- Kirk Bro

Re: Pluggers Software releases NTK Plugin 3.0

2016-11-21 Thread Kirk Brooks
Lee, On Mon, Nov 21, 2016 at 2:14 PM, Lee Hinde <leehi...@gmail.com> wrote: > > For €400-600 (per developer, no server fees etc.) you’re all set. > ​600 euros is less than $640. -- Kirk Brooks Sa

Re: Pluggers Software releases NTK Plugin 3.0

2016-11-21 Thread Kirk Brooks
about it being a pain when trying to develop it. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html

Re: Pluggers Software releases NTK Plugin 3.0

2016-11-21 Thread Kirk Brooks
On Mon, Nov 21, 2016 at 1:58 PM, Peter Jakobsson <li...@netkelvin.com> wrote: > Let me get this straight. > > Is NTK 3.0 essentially starting to compete with Wakanda ? > ​Shhh!​ -- Kirk Brooks

Re: Pluggers Software releases NTK Plugin 3.0

2016-11-21 Thread Kirk Brooks
, 2016 at 2:01 PM, Rob Laveaux <rob.lave...@pluggers.nl> wrote: > Pluggers Software releases NTK Plugin 3.0 > > Networking ToolKit (NTK) is a plugin that offers a rich tool set for > network communication. Version 3.0 includes many new exciting features. -- Kirk

Re: v15.3 seems to be crashing on MACOS 10.12.1 & the new MBP

2016-11-18 Thread Kirk Brooks
a pretty sweet machine. On Fri, Nov 18, 2016 at 9:07 AM, Timothy Penner <tpen...@4d.com> wrote: > Indeed, the 16B2657 build of Sierra does not play well with 4D, while the > older and newer builds of Sierra seem to be much better. > -- Kirk Brooks Sa

Re: Date Question...

2016-11-18 Thread Kirk Brooks
and sort it out later. ​ On Fri, Nov 18, 2016 at 7:19 AM, Dennis, Neil <neil.den...@umb.com> wrote: > > I guess it just affirms the point that date constants are too ambiguous > and not worth your while. > > What do you use instead of date constants to spe

Re: v15.3 seems to be crashing on MACOS 10.12.1 & the new MBP

2016-11-17 Thread Kirk Brooks
ipped by > Apple." > > > > > -- > Douglas von Roeder > 949-336-2902 > > On Thu, Nov 17, 2016 at 11:31 AM, Kirk Brooks <lists.k...@gmail.com> > wrote: > > > Just unboxed a new MBP. And it's pretty fricking awesome! Just saying. > > > > Aft

Re: v15.3 seems to be crashing on MACOS 10.12.1 & the new MBP

2016-11-17 Thread Kirk Brooks
ring minds wanna know, which do you have? > 16B2659 ​ - delivered yesterday ​ > if you are a developer, you can get beta 10.12.2 which per release notes > fixes the 16b257 issue. > ​I'm not. -- Kirk Brooks San Francisco, CA ===

v15.3 seems to be crashing on MACOS 10.12.1 & the new MBP

2016-11-17 Thread Kirk Brooks
13 com.4d.4d 0x004e4222 _main() + 103 14 com.4d.4d 0x3525 start + 53 -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists

Re: Store BLOB's Outside the Data File

2016-11-15 Thread Kirk Brooks
that stuff got corrupted. FWIW I seem to recall that if you did make that change you wanted to loop through all the records and 'touch' them to force a re-save. Cold comfort. -- Kirk Brooks San Francisco, CA

Re: Need help with LEP printing

2016-11-10 Thread Kirk Brooks
en using it for years on Windows. > ​Ah ha! That's the kind of hack I was looking for. Of course it assumes the user has Acrobat on board but that's easy to deal with. Thank you. ​ -- Kirk Brooks San Francisco, CA ===

Need help with LEP printing

2016-11-10 Thread Kirk Brooks
;$stdOut;$srdErr) This is OSX. There's no issue with the PDF - it opens and prints just fine from a reader. Code runs with no errors but also without printing anything. What am I missing? And I also need the solution for doing the same thing on wind

Re: Subform Object Name

2016-11-09 Thread Kirk Brooks
t; instead of text so I can access it directly. I’m in v15r5 which makes this > possible. A very nice technique > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://

Re: Subform Object Name

2016-11-09 Thread Kirk Brooks
has two identical subforms on it named > Sub1 and Sub2. When some code is executing within the context of Sub1, I > want to be able to know I’m in the context of “Sub1”. > -- Kirk Brooks San Francisco, CA === *

Re: Missing Getters - Form Get Input, Form Get Output

2016-11-08 Thread Kirk Brooks
.5/help/Command/en/page1298.html > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options: http://lists.4

Re: Missing Getters - Form Get Input, Form Get Output

2016-11-08 Thread Kirk Brooks
com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ** > -- Kirk Brooks San Francisco, CA === *

Re: Correctly identify object clicked in a form method

2016-11-08 Thread Kirk Brooks
g or disabling groups if you needed that. By knowing the name of the object in project method you can check, uncheck, error check and save the user choice. -- Kirk Brooks San Francisco, CA === ** 4D Inte

Re: Correctly identify object clicked in a form method

2016-11-08 Thread Kirk Brooks
> 4D Internet Users Group (4D iNUG) > FAQ: http://lists.4d.com/faqnug.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > *****

Re: Missing Getters - Form Get Input, Form Get Output

2016-11-08 Thread Kirk Brooks
n/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ****** -- Kirk Brooks San Francisco, CA === ** 4D Internet Us

Re: Correctly identify object clicked in a form method

2016-11-08 Thread Kirk Brooks
field. OBJECT Get pointer(Object > current) returns nil in the form method. No On Data Changed is fired for > boolean fields, but it is for every other type of field. > -- Kirk Brooks San Francisco, CA ===

Re: How to override "Remember Me" on login?

2016-11-07 Thread Kirk Brooks
p (4D iNUG) > FAQ: http://lists.4d.com/faqnug.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > *******

Re: How to override "Remember Me" on login?

2016-11-05 Thread Kirk Brooks
You hold down the Shiftkey duringing login. On Sat, Nov 5, 2016 at 10:06 AM, Kirk Brooks <lists.k...@gmail.com> wrote: > If a user has checked the Remember Me checkbox on the password screen how > do you override this to allow a different user to login? > > Thanks > >

How to override "Remember Me" on login?

2016-11-05 Thread Kirk Brooks
If a user has checked the Remember Me checkbox on the password screen how do you override this to allow a different user to login? Thanks -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D

Re: Does it matter if you lock an IP object before updating?

2016-11-01 Thread Kirk Brooks
method updates > that same array. > > > Richard Wright > DataDomain > rwri...@datadomainsoftware.com > > > > Date: Mon, 31 Oct 2016 22:43:48 -0700 > > From: K

Re: Does it matter if you lock an IP object before updating?

2016-11-01 Thread Kirk Brooks
ously. The buried lede in this story may actually be how easily 4D handles 400 simultaneous processes. -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html A

Re: Does it matter if you lock an IP object before updating?

2016-10-31 Thread Kirk Brooks
e overhead that added. On my macBookPro the un-protected loops took about 2800ms and the protected ones about 3100ms, interpreted. It's not a significant performance issue in my view. -- Kirk Brooks San Francisco, CA === *

Does it matter if you lock an IP object before updating?

2016-10-31 Thread Kirk Brooks
ESS(Current process;1) Else DELAY PROCESS(Current process;2) End if End for End case //Lock_object While (Semaphore("$"+$1)) IDLE End while //Unlock_object CLEAR SEMAPHORE("$"+$1) -- Kirk Brooks San Francisco, CA === ***

Re: How to use Process Tags with c-objects?

2016-10-31 Thread Kirk Brooks
wrote: > Hi Kirk, > You really have 4 modes you can always work with. > -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http

Re: How to use Process Tags with c-objects?

2016-10-30 Thread Kirk Brooks
g.html > Archive: http://lists.4d.com/archives.html > Options: http://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4d_tech-unsubscr...@lists.4d.com > ** > -- Kirk Brooks San Francisco, CA ==

How to use Process Tags with c-objects?

2016-10-30 Thread Kirk Brooks
which makes me think I'm missing something. Is anyone doing this also? Could you share a few tips on how you make it work? Thanks -- Kirk Brooks San Francisco, CA === ** 4D Internet Users Group (4D iNUG) FAQ

<    3   4   5   6   7   8   9   >