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

Pages: 1 ... 120 121 [122] 123
1816
Web Server - Ask For Help / Re: PR27 serious problem
« on: December 29, 2008, 12:50:33 PM »
A clue:
Its a form with a browse and the From heading appears before the error.

1817
Web Server - Ask For Help / PR27 serious problem
« on: December 29, 2008, 11:13:12 AM »
App with PR25 , all working fine.
Download PR27
Intalled, copied web folder, recompiled and when I try to open a page with a browse, IE sais inmediatelly :
Internet explorer can not open the page http://127.0.0:88/FramePage

Other pages, a NetWebForm and some NetWebPages opens without problems.

I reinstalled, recopy the web folder, press Ctrl-F5 and nothing happens.

Any idea? and where can I found the PR25?

1818
Web Server - Ask For Help / Content Disposition
« on: December 18, 2008, 06:29:36 AM »
Hi,
with PR 24

Trying to change the name the explorer shows to the user downloading a file:

Insetead of:

p_web.HeaderDetails.ContentDisposition = 'attachment; filename="'&clip(loc:fileName)&'"'

I´ve coded:

p_web.HeaderDetails.ContentDisposition = 'attachment; filename="This is your download"'

but this does not work.

the file does not download.

How must I do it??

Thanks
Alberto



1819
Good idea!, I will try with a locator ASAP.

1820
Web Server - Ask For Help / Re: 4.31 PR22: Delete doesn't work at all
« on: December 03, 2008, 11:39:45 AM »
Confirmed here, since PR21, if you use Highlights to select the record, it does not delete the record.
The workarround was to add the delete record to the form and not to the browse.
Bruce said it was solved in PR22 but not, the bug is still there.
Regards
Alberto

1821
Web Server - Ask For Help / Session timeout and browse buttons
« on: December 03, 2008, 03:52:24 AM »
Hi,
If you have a page with a page loaded browse and the Session timeout expires, then if you press any browse button (Next, End, etc) the busy.gif appears and nothing happens.
It seems the page is hang but what happens is the session expires.
Any way to inform the user or send the user to the loging page?
Regards
Alberto

1822
Web Server - Ask For Help / Re: Next button
« on: December 03, 2008, 02:55:40 AM »
Compiled with PR22, same thing, you press the Next or End button and no event is send to the web server.
From outside or from 127.0.0.1... same thing.
In my production PC all is ok but in some others clientes PCs no.
Please its a serious problem.
Thanks
Alberto

1823
Web Server - Ask For Help / Re: Next button
« on: December 02, 2008, 01:12:58 AM »
I´m using the latest 21
In http://www.capesoft.com/ftp/public/prerelease/index.htm
theres only 21
Will you upload it?
Regards
Alberto

1824
Web Server - Ask For Help / Next button
« on: December 01, 2008, 08:44:05 AM »
Hi,

Same Webserver exe in my machine works ok.
I enter the page which is a browse filtered, view the first page and with next view the next page, End the end page, etc.

Installed in other server, randomly, the Next button does not shut an event to the webserver.
The busy.gif appears but no line appears in the Webserver window.

Any Idea?

Alberto

1825
Web Server - Ask For Help / Re: Embed point for all fields
« on: December 01, 2008, 05:25:46 AM »
Forgot to mention... they are 300 (three hundred) fields!

1826
Web Server - Ask For Help / Re: Embed point for all fields
« on: December 01, 2008, 05:16:22 AM »
Hi Bruce,
THats what Im doing...
How About a template check to call a Single routine from each field?
Cheers
Alberto

1827
Web Server - Share Knowledge / Re: Changing the names of downloaded files
« on: November 28, 2008, 12:02:03 PM »
Hi Bruce,
This technique works OK on my old Windows 2000 with IE6 but not in IE7 vista.
In IE6 I see the name of the proc as the name of the file, thats ok.
In IE7 I see the coplete path of the file!
Any Idea?
Regards
Alberto

1828
Hi all,
May be its obviuos but it took me time to get it working.
If you have a Browse paged and want to show the total rows and the page number the user are seeing, you can use these enbeds to achieve this.

DATA
define two variables to hold the values, lets say
  loc:TotalRows   and   loc:ActualPage

CODE
  ! At Start of "After SetView"
  ! [Priority 5000]
  direction# = loc:direction
  !to remenber the browse buttons action

  ! At Start of "After Browse Before Buttons"
  ! [Priority 5000]
  !--------------------------------------------------------------------------------------------------------------------------------------
  loc:TotalRows = !here you need to provide total of rows,
  !if the browse are not filtered and you are using TPS then it may be just RECORDS(YourTable)
  !if you are using SQL the you can do a SELECT COUNT(*)...
  !--------------------------------------------------------------------------------------------------------------------------------------
  LOC:ActualPage=p_web.GetSessionValue('LOC:ActualPage')
  case direction#
  of 1
     LOC:ActualPage = 1
  of -2
     LOC:ActualPage -= 1
  of 2
     LOC:ActualPage += 1
  of -1
     LOC:ActualPage = loc:TotalRows/loc:pagerows
  end
  IF LOC:ActualPage<1 THEN LOC:ActualPage=1.
  p_web.SetSessionValue('LOC:ActualPage',LOC:ActualPage)
  packet = clip(packet) & |
    '<<table><13,10>'&|
    ' <<tr><13,10>'&|
    '  <<td>Total rows: <<!-- Net:s:loc:TotalRows --><</td><13,10>'&|
    '  <<td>Page: <<!-- Net:s:loc:ActualPage --><</td><13,10>'&|
    ' <</tr><13,10>'&|
    '<</table><13,10>'&|
    ''
  do SendPacket

And thats all...

Bruce: May be a good idea for a NetBrowse template new tab... Totaling
Defining the variable containing the Total rows, the one for the page,an embed to do the calc and a text to add the XHTML to display them.

It is very usefull with big browses for the user to know at where page are they looking at.

Just my 2 cents, I hope it will be usefull.

Alberto

1829
Web Server - Ask For Help / Embed point for all fields
« on: November 28, 2008, 02:28:21 AM »
Hi,
I need to run a routine each time any control is accepted.
Now I´m adding the code in each control in the 2Validate::ControlName Routine
I want to put the code in a single embed.
Which embed must I use?
Thanks
Alberto

1830
Web Server - Ask For Help / Re: Busy.gif position
« on: November 27, 2008, 10:02:58 AM »
Thanks!
It´ll be greate to have it binded to the corner!
I dont know yet how to deal with CSS.
Regards
Alberto

Pages: 1 ... 120 121 [122] 123