This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
10411
Web Server - Ask For Help / Re: Timeout session and page buttons (first/prev/next/last)
« on: February 04, 2009, 06:36:08 AM »
_checking_ is done with every request.
But the next/prev buttons etc are asyncronous. Re-directing to the login page requires a synchronous (ie GET or POST) request.
Cheers
Bruce
But the next/prev buttons etc are asyncronous. Re-directing to the login page requires a synchronous (ie GET or POST) request.
Cheers
Bruce
10412
Web Server - Ask For Help / Re: Single Insert Form and Chaining
« on: February 04, 2009, 06:34:28 AM »
yes, if the url on the save button points to a different site, then the "form code" will get skipped.
simply because the request goes to the foreign server, and not to your server. Since your server doesn't get the request, it's hard to do anything with(out) it <g>.
Cheers
Bruce
simply because the request goes to the foreign server, and not to your server. Since your server doesn't get the request, it's hard to do anything with(out) it <g>.
Cheers
Bruce
10413
Web Server - Ask For Help / Re: Multi-Select on DROP lists
« on: February 04, 2009, 06:32:30 AM »
I don't have an example of this yet.
Doing the "multi-select" on the list is easy enough, there's a template setting for that.
However you have to "manually" interpret the selection, since it bangs all the items into single field.
Cheers
Bruce
Doing the "multi-select" on the list is easy enough, there's a template setting for that.
However you have to "manually" interpret the selection, since it bangs all the items into single field.
Cheers
Bruce
10414
Web Server - Ask For Help / Re: Unique key with two components no longer working
« on: February 04, 2009, 06:28:13 AM »
Hi Alan,
>> Please can you confirm --- are unique multi-component keys supported? (it was working fine in an earlier version April last year).
at the moment they're not officially supported. If they work, or worked before, it's by accident not design.
I have a goal in mind to support multi-component keys, but it's not at the top of the list at the moment.
Cheers
Bruce
>> Please can you confirm --- are unique multi-component keys supported? (it was working fine in an earlier version April last year).
at the moment they're not officially supported. If they work, or worked before, it's by accident not design.
I have a goal in mind to support multi-component keys, but it's not at the top of the list at the moment.
Cheers
Bruce
10415
Web Server - Ask For Help / Re: Child browse on form is silent
« on: February 01, 2009, 09:50:01 PM »
Hi Casey,
The first suggestion is to use the latest PR build. It may, or may not, be fixed in that build, but it's the only build I can (practically) debug, so it's definitely the starting point.
Cheers
Bruce
The first suggestion is to use the latest PR build. It may, or may not, be fixed in that build, but it's the only build I can (practically) debug, so it's definitely the starting point.
Cheers
Bruce
10416
Web Server - Ask For Help / Re: Storing Images
« on: February 01, 2009, 08:02:36 AM »
How many users is "a lot" ?
Folders on disk can handle > 100 000 files. But it slows the machine down to read a folder with that many files.
Cheers
Bruce
Folders on disk can handle > 100 000 files. But it slows the machine down to read a folder with that many files.
Cheers
Bruce
10417
Web Server - Ask For Help / Re: How to Upload to a different folder
« on: February 01, 2009, 08:00:51 AM »
you can read about p_action in the netweb.clw file.
Look for the processLink method, and see what it does with the parameter.
In the same way you can also search netweb.clw to see where uploads folder is being set, and where it is being used. In that way oyu can determine the best embed point to use to set it to what you want just before you use it.
Cheers
Bruce
Look for the processLink method, and see what it does with the parameter.
In the same way you can also search netweb.clw to see where uploads folder is being set, and where it is being used. In that way oyu can determine the best embed point to use to set it to what you want just before you use it.
Cheers
Bruce
10418
Web Server - Ask For Help / Re: Drop Field tab problem
« on: February 01, 2009, 07:57:57 AM »
Sounds like the string field is "resetting" the drop field.
Is the drop field in the string fields' Reset list?
Cheers
Bruce
Is the drop field in the string fields' Reset list?
Cheers
Bruce
10419
Web Server - Ask For Help / Re: Single Insert Form and Chaining
« on: February 01, 2009, 07:55:19 AM »
Is the URL on the save button pointing to a different site?
Cheers
Bruce
Cheers
Bruce
10420
Web Server - Ask For Help / Re: NetWebPage - Delete Record
« on: January 30, 2009, 06:46:36 AM »
The NetTalk program is a regular clarion program.
So if you want to do a delete in hand-code, then just do a delete in hand-code.
ie
Relate:MyTable.DeleteRecord(false)
It's all good...
Cheers
Bruce
So if you want to do a delete in hand-code, then just do a delete in hand-code.
ie
Relate:MyTable.DeleteRecord(false)
It's all good...
Cheers
Bruce
10421
Web Server - Ask For Help / Re: How to span fields in a form
« on: January 30, 2009, 06:44:56 AM »
click on
http://www.nettalkcentral.com/index.php?option=com_smf&Itemid=36&topic=743.0
and it'll be right on your monitor...
so what are you really asking? As in, what part of this can't you do?
Cheers
Bruce
http://www.nettalkcentral.com/index.php?option=com_smf&Itemid=36&topic=743.0
and it'll be right on your monitor...
so what are you really asking? As in, what part of this can't you do?
Cheers
Bruce
10422
Web Server - Ask For Help / Re: How to Upload to a different folder
« on: January 30, 2009, 06:43:17 AM »
put some debugging in so you can see what the property is set to before you change it, and after you change it.
Cheers
Bruce
Cheers
Bruce
10423
News And Views / Re: Version 4.31 PR 30 uploaded
« on: January 30, 2009, 01:17:12 AM »
Version 4.31 PR 30 has been uploaded
10424
News And Views / Re: Version 4.31 PR 19 uploaded
« on: January 30, 2009, 01:15:09 AM »
PR 30 is up.
10425
Web Server - Ask For Help / Re: NetWebPage - Delete Record
« on: January 29, 2009, 10:43:49 PM »
Hi David,
If I'm not mistaken the Delete in a NetWebForm is a Relate:Delete anyway.
However there are ValidateDelete and PostDelete embed points on the form where you can do additional things if you want.
For example, in ValidateDelete you can do the delete manually, and then set the
ans = 0
(meaning "no further action required")
Cheers
Bruce
If I'm not mistaken the Delete in a NetWebForm is a Relate:Delete anyway.
However there are ValidateDelete and PostDelete embed points on the form where you can do additional things if you want.
For example, in ValidateDelete you can do the delete manually, and then set the
ans = 0
(meaning "no further action required")
Cheers
Bruce