Re: "Your password does not allow you to use this form"

2018-05-24 Thread JPR via 4D_Tech
[JPR]

Hi Pat,

Yes, I did write the Label Editor long time ago. 

But no, I don't have the slightest idea regarding this problem :-(

Anyway, if it's a problem in V13, it should have arisen years ago, and I 
received no complains regarding this splendid jewel of a code used 
enthusiastically by labels fanatics since 6.5 ;-)

More seriously, the problem probably comes from licences, for it has never been 
decided that old label editor would be connected with VP.

My very best,

JPR

> On 24 May 2018, at 21:00, 4d_tech-requ...@lists.4d.com wrote:
> 
> Message: 6
> Date: Thu, 24 May 2018 18:47:44 +0100
> From: Pat Bensky 
> To: 4D iNug Technical <4d_tech@lists.4d.com>
> Subject: Re: "Your password does not allow you to use this form"
> Message-ID:
>   

OBJ Module and Date Issue

2018-05-24 Thread Cannon Smith via 4D_Tech
If anyone is using the OBJ module in v16r6 or v17, please be aware there is a 
bug in 4D (reported as ACI0098267) that causes problems with dates. The OBJ 
module stores dates in an object as a string in the format “2018-05-24” and 
handles the conversion back and forth as necessary. If the object gets 
converted to a blob (OBJ_Save_ToBlob  or OBJ_Save_ToGZIP), when it is converted 
back to an object 4D is inexplicably changing the string value from 
“2018-05-24” to “2018-05-25T06:00:00.000T” which really messes up the 
conversion logic inside the OBJ module.

The workaround is to change line 20 of OBJP_ConvertToDate to check for a length 
>= 10 instead of just = 10.

HTH.

--
Cannon.Smith
Synergy Farm Solutions Inc.
Hill Spring, AB Canada
403-626-3236




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Keith Culotta via 4D_Tech
This happened to me recently on a Mac that had no printers yet added to the 
Print System.

Keith - CDI

> On May 24, 2018, at 3:48 PM, Keisuke Miyako via 4D_Tech 
> <4d_tech@lists.4d.com> wrote:
> 
> could it be that the table has no defined output forms (and the editor is 
> somehow looking for it) ?
> does the same happen using the same code and version with a brand new 
> structure?
> 
> ---
> 
> partners have access to the source code of 4D Label Editor,
> https://blog.4d.com/component-source-code-sharing-4d-partners/
> 
> but the method C_OPEN_EDITOR is evidently called when PRINT LABEL decides to 
> display the UI.
> if you are getting the error before the editor is displayed, it would be 
> outside the remit of the component.
> 
> ---
> 
> I once had a customer who wanted to display the editor with settings loaded 
> from s previously saved project file,
> but evidently the new 64-bit editor is design to either display the UI with 
> no settings or load settings and print immediately.
> 
> so we had to dismiss the official label editor.
> https://github.com/miyako/4d-component-label-editor
> 
> 
> 
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Email Errors - Intermittent - Socket Descriptor Error

2018-05-24 Thread Keisuke Miyako via 4D_Tech
4D Internet Commands mostly relays winsock errors and error messages.

https://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx

so you can google "10038" or "WSAENOTSOCK" outside of 4D
if you need more technical information.

2018/05/24 11:05、Randy Engle via 4D_Tech 
<4d_tech@lists.4d.com> のメール:
Error Text:  "Specified socket descriptor is not valid for this application  
[10038]"
I've not got a clue what this means



**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Programmatic control of reject new connections

2018-05-24 Thread Keisuke Miyako via 4D_Tech
how about using On Server Open Connection Database Method?

http://doc.4d.com/4Dv16/4D/16/On-Server-Open-Connection-Database-Method.301-3047535.en.html

if you want to base the logic on the number of connected users (for example you 
want the ceiling at max-1 for admin) you could use

http://doc.4d.com/4Dv16/4D/16.1/GET-SERIAL-INFORMATION.301-3375127.en.html

and

http://doc.4d.com/4Dv16/4D/16.3/Count-users.301-3651690.en.html



**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Keisuke Miyako via 4D_Tech
could it be that the table has no defined output forms (and the editor is 
somehow looking for it) ?
does the same happen using the same code and version with a brand new structure?

---

partners have access to the source code of 4D Label Editor,
https://blog.4d.com/component-source-code-sharing-4d-partners/

but the method C_OPEN_EDITOR is evidently called when PRINT LABEL decides to 
display the UI.
if you are getting the error before the editor is displayed, it would be 
outside the remit of the component.

---

I once had a customer who wanted to display the editor with settings loaded 
from s previously saved project file,
but evidently the new 64-bit editor is design to either display the UI with no 
settings or load settings and print immediately.

so we had to dismiss the official label editor.
https://github.com/miyako/4d-component-label-editor



**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Programmatic control of reject new connections

2018-05-24 Thread Alberto Bachler via 4D_Tech
Hi Charles,


What I do is to set a semaphore on the server and clear it after the task is 
execute.
On the On startup method for (if application type is 4D Remote) I test that 
semaphore.
If the semaphore is set I notify the user and quit 4D.

BTW, no user can connect to the server until On Server Startup method has been 
executed.
So if you execute your code on methods called from On Server Startup (no new 
process) remote connections would not be possible.


Alberto.



> El 24-05-2018, a las 16:02, Charles Miller via 4D_Tech <4d_tech@lists.4d.com> 
> escribió:
> 
> Hi All,
> 
> subj says it all;. Has anyone figured out a way to control this setting via
> program?
> 
> If it can be done can anyone please advise how.
> 
> If not would others like the ability to do this. I would so that when I
> distribute new versions, I can start with that set when I have code that
> has to run before users can log in
> 
> Thanks and regards
> 
> Chuck
> 
> 
> -- 
> -
> Chuck Miller Voice: (617) 739-0306 Fax: (617) 232-1064
> Informed Solutions, Inc.
> Brookline, MA 02446 USA Registered 4D Developer
>   Providers of 4D, Sybase & SQL Server connectivity
>  http://www.informed-solutions.com
> -
> This message and any attached documents contain information which may be
> confidential, subject to privilege or exempt from disclosure under
> applicable law.  These materials are intended only for the use of the
> intended recipient. If you are not the intended recipient of this
> transmission, you are hereby notified that any distribution, disclosure,
> printing, copying, storage, modification or the taking of any action in
> reliance upon this transmission is strictly prohibited.  Delivery of this
> message to any person other than the intended recipient shall not
> compromise or waive such confidentiality, privilege or exemption
> from disclosure as to this communication.
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Programmatic control of reject new connections

2018-05-24 Thread Charles Miller via 4D_Tech
Hi All,

subj says it all;. Has anyone figured out a way to control this setting via
program?

If it can be done can anyone please advise how.

If not would others like the ability to do this. I would so that when I
distribute new versions, I can start with that set when I have code that
has to run before users can log in

Thanks and regards

Chuck


-- 
-
 Chuck Miller Voice: (617) 739-0306 Fax: (617) 232-1064
 Informed Solutions, Inc.
 Brookline, MA 02446 USA Registered 4D Developer
   Providers of 4D, Sybase & SQL Server connectivity
  http://www.informed-solutions.com
-
This message and any attached documents contain information which may be
confidential, subject to privilege or exempt from disclosure under
applicable law.  These materials are intended only for the use of the
intended recipient. If you are not the intended recipient of this
transmission, you are hereby notified that any distribution, disclosure,
printing, copying, storage, modification or the taking of any action in
reliance upon this transmission is strictly prohibited.  Delivery of this
message to any person other than the intended recipient shall not
compromise or waive such confidentiality, privilege or exemption
from disclosure as to this communication.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Pat Bensky via 4D_Tech
Hey John,
Hmmm, I don't think so ... Also I don't think I can get support form 4D on
this as it's V13, not a current version.
Maybe JPR can offer some help - I believe he wrote the label editor.

JPR? Hello!

Pat

On 24 May 2018 at 17:45, johnbdhPop via 4D_Tech <4d_tech@lists.4d.com>
wrote:

> I had a similar experience last year when trying to deploy client server
> and the problem for me was that the Automatic Row Height checkbox in a List
> Box’s Property list requires a 4D View Pro license to work Client/Server.
> Apparently this is documented everywhere but in the LRM, at least that was
> the case last year.
>
> The command SET LIST AUTO ROW HEIGHT also requires a 4D View Pro license.
>
> If neither of these apply to your situation I suggest you call tech
> support and report the problem. Perhaps there is another command or
> property that falls into this category.
>
> John
>
>
>
>
> On May 23, 2018 at 11:14:12 PM, Pat Bensky via 4D_Tech (
> 4d_tech@lists.4d.com) wrote:
>
> On v13.5:
>
> Forever, we've had a Labels option with this code:
>
> PRINT LABEL(Table(iTableNumber)->;"xxx")
>
> ​This has always worked as expected: it opens the Label Editor with a blank
> label, and a list of fields form the table specified by iTableNumber.
>
> But it now displays the alert "Your password does not allow you to use this
> form" instead of opening the label editor. This happens no matter how the
> user is logged in - even when I'm logged in as Designer.
>
> Note that it works OK in v16.
>
> Any ideas? I can't find any place where access to the label editor can be
> controlled.
>
> PB​
>
> --
> *
> CatBase - Top Dog in Data Publishing
> tel: +44 (0) 207 118 7889
> w: http://www.catbase.com
> skype: pat.bensky
> *
> **
> 4D Internet Users Group (4D iNUG)
> FAQ: http://lists.4d.com/faqnug.html
> Archive: http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub: mailto:4d_tech-unsubscr...@lists.4d.com
> **
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **
>



-- 
*
CatBase - Top Dog in Data Publishing
tel: +44 (0) 207 118 7889
w: http://www.catbase.com
skype: pat.bensky
*
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread johnbdhPop via 4D_Tech
I had a similar experience last year when trying to deploy client server and 
the problem for me was that the Automatic Row Height checkbox in a List Box’s 
Property list requires a 4D View Pro license to work Client/Server. Apparently 
this is documented everywhere but in the LRM, at least that was the case last 
year.

The command SET LIST AUTO ROW HEIGHT also requires a 4D View Pro license.

If neither of these apply to your situation I suggest you call tech support and 
report the problem. Perhaps there is another command or property that falls 
into this category.

John




On May 23, 2018 at 11:14:12 PM, Pat Bensky via 4D_Tech (4d_tech@lists.4d.com) 
wrote:

On v13.5:

Forever, we've had a Labels option with this code:

PRINT LABEL(Table(iTableNumber)->;"xxx")

​This has always worked as expected: it opens the Label Editor with a blank
label, and a list of fields form the table specified by iTableNumber.

But it now displays the alert "Your password does not allow you to use this
form" instead of opening the label editor. This happens no matter how the
user is logged in - even when I'm logged in as Designer.

Note that it works OK in v16.

Any ideas? I can't find any place where access to the label editor can be
controlled.

PB​

--  
*
CatBase - Top Dog in Data Publishing
tel: +44 (0) 207 118 7889
w: http://www.catbase.com
skype: pat.bensky
*
**
4D Internet Users Group (4D iNUG)
FAQ: http://lists.4d.com/faqnug.html
Archive: http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub: mailto:4d_tech-unsubscr...@lists.4d.com
**
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Auto-update and restart 4D Server?

2018-05-24 Thread Chip Scheide via 4D_Tech
disclaimer: never done this.

- trigger the update in 4D, to send the message to all connected user 
(4D code)
 -- the above trigger starts a timer event/deamon which eventually 
shuts down the server
- in the On Shut Down database method, use LEP to trigger a .bat file 
which copies the need files.
 -- the new files will need to be in a specific location, and so will 
the server replacement files
- to trigger the .bat file there are a couple of options (links below) 
to setup a timed task (probably 2 .bat files one that creates the 
scheduled task to execute the 2nd to do the actual copy.
- in the batch file that does the copy you *should* be able to launch 
the 4D app again too.

links for means to create a scheduled task (btw, google-foo to get this 
info)
https://stackoverflow.com/questions/34495872/a-batch-file-that-run-a-program-on-a-specific-date-and-time-and-year
https://superuser.com/questions/751761/schedule-a-bat-file-to-run-at-a-certain-time-within-a-certain-amount-of-minutes
https://www.computerhope.com/issues/ch000785.htm


good luck

on shut down of the server
On Thu, 24 May 2018 10:03:47 -0400, Bob Miller via 4D_Tech wrote:
> Hi Everyone,
> 
> I've been mining the 4D KB looking for a technique whereby I can 
> automatically update a 4D Server merged application.  I'd like to do the 
> following:
> 
>> Set a time when the merged server application will send a notice to 
> users that it will shut down
>> Merged app then shuts down after 5 minutes
>> New .4DC and .4DIndy files replace the existing files in the "Server 
> Database" folder
>> Merged app is relaunched
> 
> I know this was discussed before, but I can't find what I'm looking for. 
> In my scenario, the version of 4D would remain the same, only the 
> structure file would be changed.  Right now I do this manually and every 
> time I do it, I know there's a better way.
> 
> Can anyone point me in a direction, or wish to share some code to do this?
> 
> Windows evironment.
> 
> I imagine that somehow control is passed to an external executable 
> (Windows environment) that then copies the files after the merged app 
> terminates and then after the copy is complete, launches the merged app.
> 
> Thoughts?  Thank you!
> 
> 
> Bob Miller
> Chomerics, a division of Parker Hannifin Corporation
> 
> 
> ll
> "PLEASE NOTE: The preceding information may be confidential or 
> privileged. It only should be used or disseminated for the purpose of 
> conducting business with Parker. If you are not an intended 
> recipient, please notify the sender by replying to this message and 
> then delete the information from your system. Thank you for your 
> cooperation."
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **
---
Gas is for washing parts
Alcohol is for drinkin'
Nitromethane is for racing 
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Chip Scheide via 4D_Tech
Pat,
assuming you are accessing the label editor via a custom menu only 
place I can see that access privs can be set are : in the menu editor, 
for the menu item itself


On Thu, 24 May 2018 12:29:44 +0100, Pat Bensky via 4D_Tech wrote:
> Hi Alan,
> Tried that - it doesn't make any difference.
> 
> Pat
> 
> On 24 May 2018 at 10:50, Alan Chan via 4D_Tech <4d_tech@lists.4d.com> wrote:
> 
>> May be trying to use Char(1) instead of "xxx".
>> 
>> Char(1) works well for us.
>> 
>> Alan Chan
>> 
>> 4D iNug Technical <4d_tech@lists.4d.com> writes:
>>> On v13.5:
>>> 
>>> Forever, we've had a Labels option with this code:
>>> 
>>> PRINT LABEL(Table(iTableNumber)->;"xxx")
>>> 
>>> ​This has always worked as expected: it opens the Label Editor with a
>> blank
>>> label, and a list of fields form the table specified by iTableNumber.
>>> 
>>> But it now displays the alert "Your password does not allow you to use
>> this
>>> form" instead of opening the label editor. This happens no matter how the
>>> user is logged in - even when I'm logged in as Designer.
>>> 
>>> Note that it works OK in v16.
>>> 
>>> Any ideas? I can't find any place where access to the label editor can be
>>> controlled.
>> 
>> **
>> 4D Internet Users Group (4D iNUG)
>> FAQ:  http://lists.4d.com/faqnug.html
>> Archive:  http://lists.4d.com/archives.html
>> Options: https://lists.4d.com/mailman/options/4d_tech
>> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
>> **
> 
> 
> 
> 
> -- 
> *
> CatBase - Top Dog in Data Publishing
> tel: +44 (0) 207 118 7889
> w: http://www.catbase.com
> skype: pat.bensky
> *
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **
---
Gas is for washing parts
Alcohol is for drinkin'
Nitromethane is for racing 
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Auto-update and restart 4D Server?

2018-05-24 Thread Bob Miller via 4D_Tech
Hi Everyone,

I've been mining the 4D KB looking for a technique whereby I can 
automatically update a 4D Server merged application.  I'd like to do the 
following:

> Set a time when the merged server application will send a notice to 
users that it will shut down
> Merged app then shuts down after 5 minutes
> New .4DC and .4DIndy files replace the existing files in the "Server 
Database" folder
> Merged app is relaunched

I know this was discussed before, but I can't find what I'm looking for. 
In my scenario, the version of 4D would remain the same, only the 
structure file would be changed.  Right now I do this manually and every 
time I do it, I know there's a better way.

Can anyone point me in a direction, or wish to share some code to do this?

Windows evironment.

I imagine that somehow control is passed to an external executable 
(Windows environment) that then copies the files after the merged app 
terminates and then after the copy is complete, launches the merged app.

Thoughts?  Thank you!


Bob Miller
Chomerics, a division of Parker Hannifin Corporation


ll
"PLEASE NOTE: The preceding information may be confidential or privileged. It 
only should be used or disseminated for the purpose of conducting business with 
Parker. If you are not an intended recipient, please notify the sender by 
replying to this message and then delete the information from your system. 
Thank you for your cooperation."
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Pat Bensky via 4D_Tech
Hi Alan,
Tried that - it doesn't make any difference.

Pat

On 24 May 2018 at 10:50, Alan Chan via 4D_Tech <4d_tech@lists.4d.com> wrote:

> May be trying to use Char(1) instead of "xxx".
>
> Char(1) works well for us.
>
> Alan Chan
>
> 4D iNug Technical <4d_tech@lists.4d.com> writes:
> >On v13.5:
> >
> >Forever, we've had a Labels option with this code:
> >
> >PRINT LABEL(Table(iTableNumber)->;"xxx")
> >
> >​This has always worked as expected: it opens the Label Editor with a
> blank
> >label, and a list of fields form the table specified by iTableNumber.
> >
> >But it now displays the alert "Your password does not allow you to use
> this
> >form" instead of opening the label editor. This happens no matter how the
> >user is logged in - even when I'm logged in as Designer.
> >
> >Note that it works OK in v16.
> >
> >Any ideas? I can't find any place where access to the label editor can be
> >controlled.
>
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **




-- 
*
CatBase - Top Dog in Data Publishing
tel: +44 (0) 207 118 7889
w: http://www.catbase.com
skype: pat.bensky
*
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Why are columns of a non-focusable listbox not enterable?

2018-05-24 Thread Jeffrey Kain via 4D_Tech
"Why would you want to do that"?

How can something be enterable without getting the focus first?


--
Jeffrey Kain
jeffrey.k...@gmail.com




> On May 24, 2018, at 2:57 AM, Piotr Chabot Stadhouders via 4D_Tech 
> <4d_tech@lists.4d.com> wrote:
> 
> I need some listboxes that are not focusable
> However, as a side effect then the columns of these listboxes are not 
> enterable
> Does anybody know the reason of this? Does this make sense?

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: "Your password does not allow you to use this form"

2018-05-24 Thread Alan Chan via 4D_Tech
May be trying to use Char(1) instead of "xxx".

Char(1) works well for us.

Alan Chan

4D iNug Technical <4d_tech@lists.4d.com> writes:
>On v13.5:
>
>Forever, we've had a Labels option with this code:
>
>PRINT LABEL(Table(iTableNumber)->;"xxx")
>
>​This has always worked as expected: it opens the Label Editor with a blank
>label, and a list of fields form the table specified by iTableNumber.
>
>But it now displays the alert "Your password does not allow you to use this
>form" instead of opening the label editor. This happens no matter how the
>user is logged in - even when I'm logged in as Designer.
>
>Note that it works OK in v16.
>
>Any ideas? I can't find any place where access to the label editor can be
>controlled.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

"Your password does not allow you to use this form"

2018-05-24 Thread Pat Bensky via 4D_Tech
On v13.5:

Forever, we've had a Labels option with this code:

PRINT LABEL(Table(iTableNumber)->;"xxx")

​This has always worked as expected: it opens the Label Editor with a blank
label, and a list of fields form the table specified by iTableNumber.

But it now displays the alert "Your password does not allow you to use this
form" instead of opening the label editor. This happens no matter how the
user is logged in - even when I'm logged in as Designer.

Note that it works OK in v16.

Any ideas? I can't find any place where access to the label editor can be
controlled.

PB​

-- 
*
CatBase - Top Dog in Data Publishing
tel: +44 (0) 207 118 7889
w: http://www.catbase.com
skype: pat.bensky
*
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Why are columns of a non-focusable listbox not enterable?

2018-05-24 Thread Piotr Chabot Stadhouders via 4D_Tech
Hi,

I need some listboxes that are not focusable
However, as a side effect then the columns of these listboxes are not enterable
Does anybody know the reason of this? Does this make sense?

Gr,
Piotr

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**