Error Code: -1728

View: New views
5 Messages — Rating Filter:   Alert me  

Error Code: -1728

by Subhranil :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

I am  creating link for next or prev set of records([Link_NextGroup],[Link_PrevGroup]).
When I go the page first time it is showing first set records and correct found count.
If I click next  it throws an error , Error Code: -1728.

Thanks,
Subhranil.

Parent Message unknown Re: Error Code: -1728

by Steve Piercy :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

From the Lasso Language Guide Appendix A - Error Codes:

-1728   No records found. No records were found in the specified database.

I assume your datasource FileMaker, yes?

You might want to search the Nabble archives for that specific error code.  I seem to recall reading about that error code in the past.
http://www.nabble.com/forum/Search.jtp?query=1728&local=y&forum=739

Also it would be helpful to provide a code sample of the inline which finds no records.

--steve


On Thursday, July 24, 2008, kutty_qt@... (Subhranil) pronounced:

>
>Hi all,
>
>I am  creating link for next or prev set of
>records([Link_NextGroup],[Link_PrevGroup]).
>When I go the page first time it is showing first set records and correct
>found count.
>If I click next  it throws an error , Error Code: -1728.
>
>Thanks,
>Subhranil.
>--
>View this message in context:
>http://www.nabble.com/Error-Code%3A--1728-tp18627977p18627977.html
>Sent from the Lasso - Talk mailing list archive at Nabble.com.
>
>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy               Web Site Builder               Soquel, CA
<web@...>                  <http://www.StevePiercy.com/>

--
This list is a free service of LassoSoft: http://www.LassoSoft.com/
Search the list archives: http://www.ListSearch.com/Lasso/Browse/
Manage your subscription: http://www.ListSearch.com/Lasso/


Re: Error Code: -1728

by Subhranil :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks Steve,

I am using Filemake 9 server advance.
Actually for link tag I am not using (Action_Params) inside my Inline.
I retrive all actions paramas into variables before the Inline .
Use these variables in Inline. I missed the -SkipRecords, thats why the error is coming when click next.
But I am facing problem to retrive skiprecords like
[Variable: 'SkipRecords'=(action_param: '-SkipRecords')]

It is not working.
How I able to get skiprecords value?

Thanks,
Subhranil.

Parent Message unknown Re: Error Code: -1728

by Gary Clark-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Subhranil,

I usually pass my SkipRecords value as a hidden form field or as part  
of the URL in a parameter you specify, so:

<input type="hidden" name="mySkipRecValue" value="10">
or
http://XXX.XXX.com?mySkipRecValue=10&blah=blah...

HTH

Gary Clark



On 24 Jul 2008, at 11:29, Subhranil wrote:

>
> Thanks Steve,
>
> I am using Filemake 9 server advance.
> Actually for link tag I am not using (Action_Params) inside my Inline.
> I retrive all actions paramas into variables before the Inline .
> Use these variables in Inline. I missed the -SkipRecords, thats why  
> the
> error is coming when click next.
> But I am facing to retrive skiprecords like
> [Variable: 'SkipRecords'=(action_param: '-SkipRecords')]
>
> It is not working.
> How I able to get skiprecords value?
>
> Thanks,
> Subhranil.
> --
> View this message in context: http://www.nabble.com/Error-Code%3A--1728-tp18627977p18629126.html
> Sent from the Lasso - Talk mailing list archive at Nabble.com.
>
>
> --
> This list is a free service of LassoSoft: http://www.LassoSoft.com/
> Search the list archives: http://www.ListSearch.com/Lasso/Browse/
> Manage your subscription: http://www.ListSearch.com/Lasso/
>
>


--
This list is a free service of LassoSoft: http://www.LassoSoft.com/
Search the list archives: http://www.ListSearch.com/Lasso/Browse/
Manage your subscription: http://www.ListSearch.com/Lasso/


Re: Error Code: -1728

by Subhranil :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks Gray,

I did it little different way.
Rather using <input type="hidden" name="mySkipRecValue" value="10">  I take a map of action params and get the -SkipRecords.


var: 'theVar'=(action_params);

var: 'theRecordMap'= (map);

loop: ($theVar->size);
        var: 'tempElement'=($theVar->(get: (loop_count)));
        $theRecordMap->(insert: ($tempElement->First)=($tempElement->Second));
/loop;
var: 'keys' = $theRecordMap->keys;
var: 'values' = $theRecordMap->Values;
var: 'pos'=$keys->(FindPosition: '-skiprecords');
var: 'val'= $pos->(get:1);
var: 'skipRecords'=$values->(get:$val);

Thanks,
Subhranil.

Gary Clark-2 wrote:
Hi Subhranil,

I usually pass my SkipRecords value as a hidden form field or as part  
of the URL in a parameter you specify, so:

<input type="hidden" name="mySkipRecValue" value="10">
or
http://XXX.XXX.com?mySkipRecValue=10&blah=blah...

HTH

Gary Clark



On 24 Jul 2008, at 11:29, Subhranil wrote:

>
> Thanks Steve,
>
> I am using Filemake 9 server advance.
> Actually for link tag I am not using (Action_Params) inside my Inline.
> I retrive all actions paramas into variables before the Inline .
> Use these variables in Inline. I missed the -SkipRecords, thats why  
> the
> error is coming when click next.
> But I am facing to retrive skiprecords like
> [Variable: 'SkipRecords'=(action_param: '-SkipRecords')]
>
> It is not working.
> How I able to get skiprecords value?
>
> Thanks,
> Subhranil.
> --
> View this message in context: http://www.nabble.com/Error-Code%3A--1728-tp18627977p18629126.html
> Sent from the Lasso - Talk mailing list archive at Nabble.com.
>
>
> --
> This list is a free service of LassoSoft: http://www.LassoSoft.com/
> Search the list archives: http://www.ListSearch.com/Lasso/Browse/
> Manage your subscription: http://www.ListSearch.com/Lasso/
>
>


--
This list is a free service of LassoSoft: http://www.LassoSoft.com/
Search the list archives: http://www.ListSearch.com/Lasso/Browse/
Manage your subscription: http://www.ListSearch.com/Lasso/
LightInTheBox - Buy quality products at wholesale price