NetTalk Central

Show Posts

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.


Messages - jtdunn

Pages: [1] 2 3
1
Web Server - Ask For Help / Re: PR27 serious problem
« on: December 29, 2008, 05:58:54 PM »
I just downloaded PR 27 and am experiencing the same thing!  This is what I am getting:

Internet Explorer cannot open the Internet site http://127.0.0.1:1180/OrderForm.

Operation aborted.

John

2
Web Server - Ask For Help / Re: Strange PR 25 behavior
« on: December 24, 2008, 06:34:41 AM »
Hi Bruce,

I installed PR 26 and most of the odd problems have gone away!  That's the good news.  The bad news is that using the large change buttons to change records from a browse produces a file i/o error (but using the browse row change buttons work) and the large select button on lookup browses does not return a record to the calling page (but selecting from a browse row select button does work).  I have removed most of the large delete buttons from my browses so I am not sure if they are still not working.

John

3
Web Server - Ask For Help / Re: Strange PR 25 behavior
« on: December 24, 2008, 05:16:52 AM »
Hi Bruce,

Yes, I agree that it looks as if something went wrong with the installation because so many things are now broken I don't know where to start.  I have one page where almost all of the buttons do not work (that is, there is no response when clicking on them).  Selecting a record from any look-up browse does not return the selected value and when changing a record via the change button below the browse a file i/o error is displayed although I can change records from the change buttons on the browse itself (as you recall, I experienced this problem on one procedure before).  The delete button under the list/browse is still not working either.

I did check the 'This is a HEADER' to ON (my message was not clear about that) and that did not make a difference with the /> characters being displayed everywhere.

I'm re-installing now with fingers crossed that everything will be all right.

Thanks,

John

4
Web Server - Ask For Help / Strange PR 25 behavior
« on: December 23, 2008, 12:52:24 PM »
I just upgraded to PR 25 and am now getting these characters: /> all over.  After investigating, I discovered that somehow the p_web.br property is set to /> instead of <br /> or <br></br>.  If I set the p_web.br property at the beginning of my PageHeaderTag (NetWebSource) procedure to <br /><13,10> then all appears to be fine (except that I have a number of other things that used to work and are not working correctly now ... I have more investigating to do on those).

I can't figure out where p_web.br is getting set to: />.  I check the docs and in the PageHeaderTag procedure properties I checked off 'This is a HEADER'.

John

5
Web Server - Ask For Help / Re: 4.31 PR22: Delete doesn't work at all
« on: December 04, 2008, 12:05:03 PM »
Hi Alberto,

Yes, I can confirm the same in 4.31 PR22.

John

6
Web Server - Ask For Help / Re: Adding new NetWebServerWorker method
« on: November 29, 2008, 05:53:18 AM »
Hi Bruce,

Thanks!  I'll create a new derived NetWebServerWorker class. 

John

7
Web Server - Ask For Help / Adding new NetWebServerWorker method
« on: November 28, 2008, 03:32:14 PM »
I added a new NetWebServerWorker method via the template interface but it is not recognised in the procedure that calls it.  I can see in the code that the new method (_SetViewSQL) is added to the p_web class and I am making the call like this: p_web._SetViewSQL(... but I get an unknown procedure error.  What am I missing?

Thanks,

John

8
Web Server - Ask For Help / Re: Incorrect behavior on hide condtion
« on: November 28, 2008, 03:27:50 PM »
Thanks for the tip Poul, I'll try it but I'm not sure it will address the basic problem.  When the check box is unchecked, the 'Category:' prompt is not unhidden.  The Category Field and Lookup button are unhidden.

9
Web Server - Ask For Help / Incorrect behavior on hide condtion
« on: November 28, 2008, 07:36:42 AM »
On a report setup page I two options.  The first is a check box to allow the user to include all categories in the report.  When the 'All Categories' checkbox is checked the Category Prompt, Entry Field and Lookup Button are hidden and when unchecked they should be unhidden.  It works for the Entry Field and Lookup Button but not the prompt.  If I go to the lookup page and return then the Category Prompt is visible but it does not get hidden if I uncheck the All Categories check box.  Attached is a word document with screen shots of the settings on the NetWebForm and the behavior in the browser.

John


[attachment deleted by admin]

10
Web Server - Ask For Help / Re: Problem with a 'Contains' locator
« on: November 25, 2008, 09:41:28 AM »
Hi Poul,

vEMSItem:CstCatID is a column in the SQL view but was not in the Clarion View.  Adding it as a hot field added it to the Clarion View.  Still, that should not be necessary under 'normal' circumstances as is evident when using only that one condition in the filter.  That worked and vEMSItem:CstCatID was not included as a hot field.  What is mystifying is that with two conditions in the filter I had to add the vEMSItem:CstCatID as a hot field for the filter to work correctly.

John

11
Web Server - Ask For Help / Re: Record not found error (version 4.31 PR 19)
« on: November 25, 2008, 09:01:09 AM »
Hi Bruce,

Whoops, that is a typo (and not in the actual code).  Regardless, calling the XHTML is conditional (so the Record Not Found error occurs regardless if the XHTML is sent or not).  I found that the problem is fixed by removing what seems to be an extra call to the SendPacket routine.

Thanks,

John

12
Web Server - Ask For Help / Re: Record not found error (version 4.31 PR 19)
« on: November 25, 2008, 08:02:14 AM »
Hi Bruce,

When then XHTML entry is in place in the NetWebBrowse procedure this code is generated:

    do SendPacket
  If (bOrders = False)
    Do AfterSubheading
    do SendPacket
  End

If I comment out the first do SendPacket the XHTML routine processes correctly and I no longer get the Record Not Found error. 

When the XHTML entry is deleted the code snippet above is completely removed ... that is, there is no call to the Send Packet routine at this point in the code and all works well (without my message box of course).  So it seems as if there is an extra call to the SendPack routine that should not be there.

John

13
Web Server - Ask For Help / Re: Record not found error (version 4.31 PR 19)
« on: November 25, 2008, 07:39:56 AM »
Hi Bruce,

Believe it or not but I have pinpointed the problem.  I have add an XHMTL entry in the browse.  The routine name is:

AfterSubheading

The condition is:

bOrders = False

The location is:

After Sub-Heading

and the XHMTL is:

<table width=100%>
  <tr>
    <td>
       <br />
       <br />
      <p class="MyMessageBox" style="Width: 85%;">
      Press one of the 'Add Order' Buttons below to create an order!
      <p />
    </td>
  </tr>
</table>

when this is in place I get the record not found error.  When I remove it, all is okay.  Basically the message in the XHMTL is displayed when there are no open, submitted or processing orders.  Otherwise the message is not displayed.

So now to figure out why this is causing the problem.

John

14
Web Server - Ask For Help / Re: Record not found error (version 4.31 PR 19)
« on: November 25, 2008, 07:05:26 AM »
Hi Bruce,

I am rebuilding my 'problem' OrderBrowse procedure step by step and so far it is working correctly.  At some point I will either hit the problem or complete all of my changes without the problem resurfacing (my hope).  I'll let you know how it goes.

John

15
Web Server - Ask For Help / Re: Record not found error (version 4.31 PR 19)
« on: November 25, 2008, 06:07:09 AM »
Hi Bruce, Please disregard my last message about the delete button.  I unchecked the Delete button option on the Form tab but left the condition and this removes the form delete button but leaves the delete button column in the browse.  If the status ~= 1 it removes/hides the row button but does not shift over the print button beside it.  So all is okay now for conditional deleting.  Still have that nagging record not found error, though.

Pages: [1] 2 3