Ticket #364 ( Closed )

Short Description ADO Field Lengh Problem
Entered By: steveo When: 1999-08-03 15:14:12 Build: 1.03.07A
Categories Type: Question   Department: Product   Category: SurferScript
Description
I want to send the whole screen as a single field to my ASP script. It appears that the field length is set a 100 bytes. Is there a wat to increase this? Steve Olensky Here is the code... This only returns the first 100 characters.
Append By: jurbanczyk@legacytoweb.com  When: 1999-08-04 09:44:46  New Status: Pending Customer
Comment Thanks for submitting this question. I will research and get back to you as soon as possible. By when do you need an answer to this question?
Append By: steveo  When: 1999-08-04 11:36:43  New Status: Pending IE
Comment I really need this solved today. I am totally stopped until I can get this fixed. Bill Thorne mentioned something about a registry setting, however I can't find anything documented on this.
Append By: jurbanczyk@legacytoweb.com  When: 1999-08-04 11:42:08  New Status: Pending Customer
Comment Thanks for answering back. I will see what I can find out and answer back by the end of the day today.
Append By: jurbanczyk@legacytoweb.com  When: 1999-08-04 16:05:00  New Status: Pending Customer
Comment I believe this is what you are looking for. If not, please let me know. In version 2.0 of Screensurfer, there is a registry setting called Maximum String Size. Download version 2.0 of Screensurfer, execute regedit and do the following: Double-click on HKEY_LOCAL_MACHINE Double-click on Software Double-click on Intelligent Environments " " " Screensurfer " " " Config " " " Maximum String Size and change the maximum string size to whatever you want. Again, if this does not help please let me know. Thanks!
Append By: steveo  When: 1999-08-04 16:54:47  New Status: Pending IE
Comment This is currently set at 1000 (3E8). I don't think this is the correct setting, as we are only getting 100 bytes back.
Append By: jurbanczyk@legacytoweb.com  When: 1999-08-04 17:14:15  New Status: Pending Customer
Comment In your original note, you said that you sent the code and I never could see the code. Can you please send the code again on how you are currently attempting to send the whole screen as a single field to your ASP script? Thanks!
Append By: steveo  When: 1999-08-04 17:31:38  New Status: Pending IE
Comment
Append By: steveo  When: 1999-08-04 17:32:21  New Status: Pending IE
Comment
<tesection ReturnCaseParty>
<teaction enter "[pf4]" skipcode>
<teresult table ScnLine>
<teloop screen 1 5>
  <teif screen(3,8,1)==" ">
   <tebreak>
  </teif>
    <teset ScnLine.Line=TextScreen(1,1920)>
    <teresult row ScnLine>
 <teaction enter "[pf14]" skipcode>
</teloop>
</tesection>
Append By: steveo  When: 1999-08-04 17:33:52  New Status: Pending IE
Comment Sorry, Here is all the code...
<tedeclare row ScnLine
  Line text 1920>

<tesection ReturnCaseParty>
<teaction enter "[pf4]" skipcode>
<teresult table ScnLine>
<teloop screen 1 5>
  <teif screen(3,8,1)==" ">
   <tebreak>
  </teif>
    <teset ScnLine.Line=TextScreen(1,1920)>
    <teresult row ScnLine>
 <teaction enter "[pf14]" skipcode>
</teloop>
</tesection>
Append By: jurbanczyk@legacytoweb.com  When: 1999-08-05 10:52:10  New Status: Closed
Comment Problem resolved....Documentation on TextScreen function is incorrect....the first parameter should be 0 instead of 1 otherwise you will miss the first character on the screen. Will create a ticket for the documentation change.