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.
1
Web Server - Ask For Help / Re: Pause button on report window
« on: November 07, 2014, 09:15:10 AM »
Yes, my mistake. I had the code on the wrong embed. For some reason I thought I put it on the Pause button but instead had it on the field control itself.
Sometimes you look at things and only see what want.
Thanks
Sometimes you look at things and only see what want.
Thanks
2
Web Server - Ask For Help / Pause button on report window
« on: November 04, 2014, 06:35:20 AM »
For testing purposes my report has a window that pops up when run in stand alone mode and as expected when called from Nettalk the embeds are in place to skip or not display that window
My question is... It looks like the nettalk codes does a post(event:accepted,?Pause) but it seems like the code in the accepted embed never actually executes.
I had some code to in that pause accepted embed to do some validation of the parameters and get some other report data.
Is the pause accepted button code not supposed to execute when called from Nettalk?
If so, should that pre-report processing code be duplicated somewhere else and what is the best embed to put that type of thing in?
Thanks
Lee
My question is... It looks like the nettalk codes does a post(event:accepted,?Pause) but it seems like the code in the accepted embed never actually executes.
I had some code to in that pause accepted embed to do some validation of the parameters and get some other report data.
Is the pause accepted button code not supposed to execute when called from Nettalk?
If so, should that pre-report processing code be duplicated somewhere else and what is the best embed to put that type of thing in?
Thanks
Lee
3
Web Server - Ask For Help / Re: Print button and running reports
« on: November 04, 2014, 06:25:04 AM »
Bruce
I wish I had that webinar about a week or so earlier... great information. After quite a bit of digging on my own I basically came to the same conclusion and used the parameters field on the button as you showed in the webinar. Works perfect for both my situations.
Thanks
Lee
I wish I had that webinar about a week or so earlier... great information. After quite a bit of digging on my own I basically came to the same conclusion and used the parameters field on the button as you showed in the webinar. Works perfect for both my situations.
Thanks
Lee
4
Web Server - Ask For Help / Print button and running reports
« on: October 30, 2014, 05:37:25 AM »
My report is working via button on the form. I am setting a session variable 'orderno' in the forms 'preUpdate' embed that I am getting in the report procedure. This is working.
The report procedure can accept two values ... "orderno' and optionally 'phaseno'. If phaseno is zero it prints all phases.
I want to have two buttons on this form/tab
1) I added button to the BrowsePhase (on each row). When the user presses that button what embed or how do I set the two sessionvalues for passing to the report procedure. I want to ssv('orderno',oeo2:orderno) and ssv('phaseno','oeo2:phase)?
2) On the form I have just the plain 'print' button to call the same report but I only want to pass the 'orderno'. I'm guessing I would have to clear the value in the 'phaseno' sessionvalue. What embed would be used for a button on the form to set these? This would replace the code I used in the preupdate embed.
Thanks
Lee
The report procedure can accept two values ... "orderno' and optionally 'phaseno'. If phaseno is zero it prints all phases.
I want to have two buttons on this form/tab
1) I added button to the BrowsePhase (on each row). When the user presses that button what embed or how do I set the two sessionvalues for passing to the report procedure. I want to ssv('orderno',oeo2:orderno) and ssv('phaseno','oeo2:phase)?
2) On the form I have just the plain 'print' button to call the same report but I only want to pass the 'orderno'. I'm guessing I would have to clear the value in the 'phaseno' sessionvalue. What embed would be used for a button on the form to set these? This would replace the code I used in the preupdate embed.
Thanks
Lee
5
Web Server - Ask For Help / Re: Missing posts
« on: October 30, 2014, 05:25:09 AM »
Sorry about that.
Maybe it will be easier to answer the questions the 2nd time around!
Maybe it will be easier to answer the questions the 2nd time around!
6
Web Server - Ask For Help / Missing posts
« on: October 30, 2014, 04:34:18 AM »
Is it me or did we lose that last couple days of postings?
Will they be recovered or do I need to repost my question?
Thanks
Will they be recovered or do I need to repost my question?
Thanks
7
Web Server - Ask For Help / Re: How to add Print button to Browse
« on: October 24, 2014, 10:26:40 AM »
Sorry, but it's been awhile since I've worked on this Nettalk app and I have a few other questions...
1) I put the print button on the form and it is calling the report procedure. The form has multiple tabs with related browses on other tables but the primary file is the Order table. Do I have to use setvalue, setsessionvalue or filetosessionqueue so that the Order# field is available for the report procedure to 'get'?
2) I see in the report procedure init section where the nettalk code is doing a post(event:accepted,?Pause). I'm not seen the pause /accepted embed code executing... or will it NOT run. In that embed I have some code to get other data and setup some local values. Should I expect that pause/accepted embed to run?
Thanks
LEE
1) I put the print button on the form and it is calling the report procedure. The form has multiple tabs with related browses on other tables but the primary file is the Order table. Do I have to use setvalue, setsessionvalue or filetosessionqueue so that the Order# field is available for the report procedure to 'get'?
2) I see in the report procedure init section where the nettalk code is doing a post(event:accepted,?Pause). I'm not seen the pause /accepted embed code executing... or will it NOT run. In that embed I have some code to get other data and setup some local values. Should I expect that pause/accepted embed to run?
Thanks
LEE
8
Web Server - Ask For Help / Re: How to add Print button to Browse
« on: October 23, 2014, 07:06:04 AM »
Bruce
Thanks. I will keep that in mind too.
Thanks. I will keep that in mind too.
9
Web Server - Ask For Help / Re: How to add Print button to Browse
« on: October 23, 2014, 04:10:12 AM »
Bruce
Ah, ok... didn't think of it that way within the browse. That will work.
For future reference.. if I wanted to add a 'print' button of some sort on a form tab and when pressed it would call a report. Can that be done and how?
Thanks
Ah, ok... didn't think of it that way within the browse. That will work.
For future reference.. if I wanted to add a 'print' button of some sort on a form tab and when pressed it would call a report. Can that be done and how?
Thanks
10
Web Server - Ask For Help / Re: How to add Print button to Browse
« on: October 22, 2014, 04:16:35 AM »
Sorry I have to ask this, but where is the 'other' button? I've never used one before.
11
Web Server - Ask For Help / How to add Print button to Browse
« on: October 21, 2014, 09:19:56 AM »
Hi,
I want to add the 'Print' button to a NetWebBrowse but when I check the 'include Print Button' on the / form tab / print tab window it does not seem to add the button.
Is there something else I need to do to get this to work?
I have a multi-tabbed form, on one tab I have a browse and I want to call a report procedure based upon the browse row that is selected.
Is this the correct way to go about this or is there some other way that this should be done?
Thanks for the help.
Lee
I want to add the 'Print' button to a NetWebBrowse but when I check the 'include Print Button' on the / form tab / print tab window it does not seem to add the button.
Is there something else I need to do to get this to work?
I have a multi-tabbed form, on one tab I have a browse and I want to call a report procedure based upon the browse row that is selected.
Is this the correct way to go about this or is there some other way that this should be done?
Thanks for the help.
Lee
12
Web Server - Ask For Help / Re: Parent Browse resets to 1st row after returning from child browse form
« on: June 20, 2014, 04:33:28 AM »
Bruce
Great! I'll give that a try and let you know how it works.
Thanks
Great! I'll give that a try and let you know how it works.
Thanks
13
Web Server - Ask For Help / Re: Parent Browse resets to 1st row after returning from child browse form
« on: June 19, 2014, 04:52:54 AM »
Bruce
Wondering if you can take a look at this issue, maybe you forgot or it just got pushed to the bottom of the list? The browses are still being reset to page 1 instead of returning to the page where the form was called from.
If you want me to resent the test app I can.
Thanks
Lee
Wondering if you can take a look at this issue, maybe you forgot or it just got pushed to the bottom of the list? The browses are still being reset to page 1 instead of returning to the page where the form was called from.
If you want me to resent the test app I can.
Thanks
Lee
14
Web Server - Ask For Help / Re: Close button on form returns to wrong parent form tab
« on: June 19, 2014, 04:39:48 AM »
Works now.
Thanks
Thanks
15
Web Server - Ask For Help / Re: Close button on form returns to wrong parent form tab
« on: June 17, 2014, 01:03:44 PM »
Bruce
I compiled the web21 example app without making any changes and then ran it.
Browse invoices... select google 'cust' button (1st row), opens the browse customer tab, click to change 'google' record #8. Opens Update Customer form...
If you go to the invoices or products tab... edit one of the browse rows, which opens up a form for that browse and then click save or cancel... it always goes back to the 'general' tab. It should return back to the 'invoices' or 'products' tab... whichever one you came from. It doesn't.
Let me know if you need more information.
Thanks
Lee
I compiled the web21 example app without making any changes and then ran it.
Browse invoices... select google 'cust' button (1st row), opens the browse customer tab, click to change 'google' record #8. Opens Update Customer form...
If you go to the invoices or products tab... edit one of the browse rows, which opens up a form for that browse and then click save or cancel... it always goes back to the 'general' tab. It should return back to the 'invoices' or 'products' tab... whichever one you came from. It doesn't.
Let me know if you need more information.
Thanks
Lee