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

Pages: 1 ... 696 697 [698] 699 700 ... 744
10456
yes, just make sure each form field has a unique "user equate".
If you have that then you can have the same field on the form multiple times.

Cheers
Bruce

10457
Hi John,

which tab style are you using?

Cheers

Bruce

10458
Web Server - Ask For Help / Re: How to count visits
« on: January 13, 2009, 01:00:40 AM »
Hi Alberto,

How are you planning for the user to ask for this value?
Remember the browser model is _always_ that the browser asks.

If you put it in the header pane of the frame it'll only get updated when they refresh
the header page - which I'm thinking is not often.

Where to put the code?
put it just before the value is used.
So if you've put it in a page, calculate it just before the value is included on the page.

Cheers
Bruce

10459
Web Server - Ask For Help / Re: SelfService example 55
« on: January 13, 2009, 12:32:49 AM »
HiSjoerd,

a) put in a proper description.
b) make sure you've read the Self Service docs, especially the "Ground Rules" section.

Given that you can run the example ok, the next step is to compare the settings in the example, with the settings in your app.

Cheers
Bruce

10460
Web Server - Ask For Help / Re: How to count visits
« on: January 09, 2009, 09:30:24 AM »
  p_web.requestdata.webserver._Wait()
  counter = 0
  loop x = 1 to records(p_web.requestdata.webserver._SessionQueue)
    get(p_web.requestdata.webserver._SessionQueue,x)
    if p_web.requestdata.webserver._SessionQueue.LoggedIn
      counter += 1
    end
  end
  p_web.requestdata.webserver._Release()

Cheers
Bruce

10461
Web Server - Ask For Help / Re: From child of Browse
« on: January 09, 2009, 09:01:32 AM »
yes, you can use a NetWebSource as a child as well..
there is an eample - the one with the pictures - um - File Upload I think it is.

Cheers
Bruce

10462
Web Server - Ask For Help / Re: SelfService example 55
« on: January 09, 2009, 08:58:46 AM »
Hi Sjoerd,

I'm not sure if the example is omitted on purpose, or it's just been overlooked.

I've attached it here (without the web folder, be sure to copy a web folder in...)
Let me know if you have any hassles - like I say, I'm not sure if it's been excluded on purpose.

Cheers
Bruce


[attachment deleted by admin]

10463
Web Server - Ask For Help / Re: Strange Behaviour
« on: January 09, 2009, 08:39:07 AM »
ha ha - Johan beat me to it...

10464
Web Server - Ask For Help / Re: From child of Browse
« on: January 09, 2009, 03:08:09 AM »
Hi Michelis,

Probably sometime in the NetTalk 5 cycle. It's a "non trivial" task.

Cheers
Bruce


10465
Web Server - Ask For Help / Re: Clear values on a form
« on: January 06, 2009, 08:16:05 AM »
Hi Wilco,

What is the trigger to clear the variable?

a) Some other variable on the form being set to something?
b) cleared when the form opened?
c) cleared after the user inserts something into the string?

Cheers
Bruce

10466
Hi Terry,

A quick test (with FF and TPS) doesn't show the same problem, so I assume it's related to MsSql.
I'll run a test against the MsSql server when I get in the office.

Do you mention IE6 because that's what you're using - or because it's the only one failing? I don't think the browser will be affected in this situation.

Cheers
Bruce

10467
Hi Mike,

Laptops particularly have a habit of "unloading networking" when there is no network cable plugged in. This makes windows work better when moving from one network to another - especially in cases where DHCP is involved.

I'm not 100% sure on Vista, but on XP this was resolved by installing a "loopback adapter" (which is found under the manufacturer "Microsoft") as another network interface. I'm assuming vista has much the same sort of thing.

Tip: using the address http://127.0.0.1 is faster then http://localhost

Cheers
Bruce

10468
Hi John,

did you have the children on the right, or below, the parent browse?

cheers
Bruce

10469
Web Server - Ask For Help / Re: Image in browse oddity
« on: January 04, 2009, 09:35:48 PM »
Hi Mike,

I'm not getting the effect here - so it may be related to your "variable method" - or it may be related to your browser. first thing is to determine which, so...

a) open example 26 (File Upload) as this is an example of images in a browse. You'll need to change the browse to page-loaded, and server-side-sorting.
check if the same effect happens to you there. (if it does we need to investigate the browser version further.)

b) assuming (a) is all ok, we turn our attention to your method for letting the user set the width and height. Are you loading them direct from a file? If so make sure they're in the VIEW (ie add them to the hot fields). If you are setting them from a variable make sure it's a Session Variable, not a Value, and not a local variable.

Cheers
Bruce

10470
Hi John,

There are a number of questions here.

a) you can of course set the records-per-page on the template to be an expression. So in your case something like;
p_web.GSV('linesperpage')

b) you'd then be able to set linesperpage on any form. Presumably then having the browse as a "reset field" of this.

c) I've never tried it, but I think embedding a form in the header is possible. So that's ok. BUT

d) embedding a generic reset form would not allow you to "reset the browse when the form field changed" - or at least not from the template setting. so this is the thing that's gonna stump you.
So I don't think the "generic" approach will work.

Cheers
Bruce

Pages: 1 ... 696 697 [698] 699 700 ... 744