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 - rupertvz

Pages: 1 ... 17 18 [19] 20 21
271
Web Server - Ask For Help / Re: NetWebForm(Wizard) - Finish!
« on: November 30, 2011, 11:30:32 PM »
Thanks Bruce,

The site has not yet been published, I will forward you link to access an example.

272
Web Server - Ask For Help / NetWebForm(Wizard) - Finish!
« on: November 30, 2011, 07:07:30 AM »
Hi Guys,

In a NetWebForm(Wizard), Memory Source.

While the user moves through the pages of the wizard, and filling in some fields/table-values ...
Close to the end of the memory-wizard, I am creating a record in a table with these values.

Up to this point it works 100%.  The record is created in the table with all values as completed.

Problem:
When the user gets to the final page and clicks the "finish" button, it blanks some of the table required-fields on a previous page and jumps back to that page.

However, when I complete the wizard and before getting to the last page I go back, the values are all there.

Advanced, default form action is set to NONE.

1.  I am not sure why clicking the "finish" / final button, blanks some of the previous inserted values ..

2.  When the user clicks finish, how do I redirect to another website?

273
Web Server - Ask For Help / Refresh "comment" field
« on: November 28, 2011, 01:12:22 PM »
Hi Guys,

I normally use "do Value::Field" to refresh the window variable.
How would I refresh the "comment" part of a populated field? 
I noticed that there is no value::field routing for the comment-display control.

Thanks
Rupert

274
Hi Guys,

When a user clicks the "next" button in a NetWebForm(Wizard) multiple times, the wizard skips all the tabs (without checking validation) and can progress to the very last tab ignoring all previous tab validations.

I found this to happen when the user has a slow connection, clicks the next button (which now reacts slower than usual), the user clicks next again and again ... when the connection catches up, it progress through the tabs without any checking.

I tested and couldn't replicate the same behaviour in IE, but definitely happening in Firefox.
Any way to fix this?

Thanks for the help ...
Rupert


275
Web Server - Ask For Help / Date (Min-date & Max-date)
« on: November 23, 2011, 07:05:39 AM »
Hi Guys,

In a NetWebForm I have a date field, with a min-date & max-date value.
Thus the user could only select a date range between these two values.

The date-field validations are off.  Thus when the dates are empty, or should be able to accept with 'zero' dates. 

However, it always require a date within the limits, even when the validation for the field is off.
Is there a way to make this work?

276
Web Server - Ask For Help / Re: NetWebBrowse range limits
« on: November 23, 2011, 06:45:20 AM »
Thanks Charl,

We will be using quite a number of records.
probably filter out 50 of 5000

Will the range-limits instead of filter, not make the browse update / display faster?

277
Web Server - Ask For Help / NetWebBrowse range limits
« on: November 23, 2011, 06:00:51 AM »
Hi Guys,

I am going into a NetWebBrowse from a NetWebForm(Wizard) procedure.
I am creating a new record with a unique "record ID" in the NetWebForm procedure, prior to opening the browse.

From the NetWebForm, I am storing the unique "record ID" in a session variable "A".

How can I limit the NetWebBrowse records to the unique "record ID" created in the NetWebForm?

I have created a local variable in the NetWebBrowse and limit the browse-records to the local variable value.

In the NetWebBrowse procedure, I have tried to set the local variable to my session variable using (p_Web.GSValue), but it doesn't work.

I think I am using the incorrect embed in the NetWebBrowse to load the LOC: value?

278
Web Server - Ask For Help / Hover text
« on: November 18, 2011, 05:13:59 AM »
Hi Guys,

I am using a NetWebForm (Wizard) for a site.

Just below the NEXT, PREVIOUS & FINISH buttons, it shows some text when I mouse-over some of the controls.
The "hover text" is not in the right place and it could be as a result of some "styles"  file that is missing.

Can the hovering be switched off altogether?
Can it be fixed?  I am not sure where it is suppose to show?

279
Web Server - Ask For Help / Re: Handling table records
« on: November 18, 2011, 05:00:04 AM »
Thanks Guys!

I incorporated all these changes and seems to be working now :-)

Regards
Rupert

280
Web Server - Ask For Help / Re: Security and SSL
« on: November 15, 2011, 09:21:53 AM »
Thanks so much Flint, this is the type of information I was looking for.
I am using mostly TPS data files at this time, so I guess, using TPS even more so lower the risk of hacking our database / web.

281
Web Server - Ask For Help / Security and SSL
« on: November 15, 2011, 04:51:17 AM »
Hi Guys,

If I don't use SSL for my site, how safe is the data integrity on my site?
We don't accept any credit cards and don't handle highly confidential information.

I realize that this question is relative.

However, some information re hacking possibilities may help us decide whether we should consider implementing SSL.

282
Web Server - Ask For Help / Re: Handling table records
« on: November 15, 2011, 04:30:16 AM »
Hi Kevin, Stu,

Thanks for your repies;

I did a few tests and the problem is arising when I include the following line (bold below):

TABLE:REC_ID = GLO:REC_ID                                 !GLO:RecID stored in previous instance
   SET(REC_ID_KEY,REC_ID_KEY)
   LOOP UNTIL ACCESS:TABLE.Next() <> LEVEL:Benign
      IF TABLE:REC_ID = GLO:REC_ID
          TOT:Cnt += 1
      ELSE
       
         BREAK
      END
   END

When I remove this line out, the loop handles all records (CORRECT)
As soon as I put this line back, the loop doesn't handle ANY records ...
It is not making any sense, as with the line:  TABLE:REC_ID = GLO:REC_ID
I am only starting the record processing at the record with the set-value ... correct?

I have even tried setting TABLE:REC_ID = 4  .... (constant)
There is a record with ID (4), but when I add this line, the loop doesn't process any records.

It's not making any sense ...
Any help please?

283
Web Server - Ask For Help / Handling table records
« on: November 13, 2011, 01:25:36 PM »
Hi Guys,

I have a NetWebForm calling a NetWebBrowse.
On the tab after the browse in the NetWebForm I'd like to "handle" and check the records being added by the user and give totals or warning upon their input.

I have added code in the "NextTab, Start" embed to loop through the records in the table, but for some reason my loop and record handling doesn't want to work.

Here is my code: * This code is only suppose to count the records according to the key-value ...


CASE lower(p_web.PageName)
OF lower('fWizard_nexttab_' & 8)

   ACCESS:TABLE.OPEN()
   ACCESS:TABLE.USEFILE()

   RESET(TABLE,1)                                                  !Reset the record pointer

   TABLE:REC_ID = GLO:REC_ID                                 !GLO:RecID stored in previous instance
   SET(REC_ID_KEY,REC_ID_KEY)
   LOOP UNTIL ACCESS:TABLE.Next() <> LEVEL:Benign
      IF TABLE:REC_ID = GLO:REC_ID
          TOT:Cnt += 1
      ELSE
        
         BREAK
      END
   END

   ACCESS:TABLE.Close()

284
Web Server - Ask For Help / Radio button in IE doesn't show
« on: November 11, 2011, 02:14:18 AM »
Hi Guys,

I am using a NetWebForm (Wizard),
On my first tab I have a radio button.  The radio button shows in Firefox, but not in IE.

Will appreciate any help, not sure what can cause this to happen ...


[attachment deleted by admin]

285
Web Server - Ask For Help / Printing from NetWebForm or NetWebBrowse
« on: October 30, 2011, 12:57:01 PM »
Hi Guys,

This is my first attempt at printing from a NetWebForm or NetWebBrowse.
I read through a few topics in the forum, but can't get the buttons to call my report procedure from the app-tree.

I added a button in the parent NetWebForm to the "tab" section (below the browse being called)
The button shows below the browse on the page, but when I click the button it attempts to open another page, and doesn't call the report-procedure.  I did link the report to the "procedure" field of the button, and not the URL field.

I would prefer not to use a printing button on each of the browse record lines.
Thus, just one button below the browse.

I will appreciate any advice.

Pages: 1 ... 17 18 [19] 20 21