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 - Bill Quesse

Pages: [1]
1
Web Server - Ask For Help / Re: NT 7 compile error
« on: August 21, 2013, 04:05:05 AM »
Kevin & Bruce,

Thanks!  That was it.

See you in Orlando. 

2
Web Server - Ask For Help / Re: NT 7 compile error
« on: August 20, 2013, 04:44:06 PM »
Bruce,

The error is not with any of my code.  This happens when I add the NT Global ext. and compile the app without adding any local ext or code..

I have also tried loading an example app (Email with a process) and it happens there.

Is there something from the NT 6 install causing problems?

Screen shots attached


[attachment deleted by admin]

3
Web Server - Ask For Help / NT 7 compile error
« on: August 19, 2013, 04:59:25 PM »
After adding the Nettalk 7.20 and String Theory global ext., and compiling the app I get compile errors when it tries to compile netweb.clw.

C6.3 9055

First time I tried NT 7.  Been using NT 6 with no issues.



[attachment deleted by admin]

4
Yes.  I copied the entire development folder to the server.


5
Nope

Thanks

6
Additional notes .

Firefox works when the server app is run from my local machine.  Does not work from when the server app is run from my Win 2003R2 Server

IE8 works from both but does not show any icons.

From my android phone the app works from the server and does show icons.


7
My server runs fine when on my local machine.  I copied the folder to my server and now I get the Error in Site Java Script on the login page.

The compress/compile switches are off.

NT 6.05
Secwin 6.02.

Did I miss a file?

This is the error :
f.elements is undefined
http://192.168.0.130/scripts/netweb.js
Line 655


8
Web Server - Ask For Help / Re: Download file issue
« on: November 14, 2010, 10:06:48 AM »
Got it working. 

9
Web Server - Ask For Help / Download file issue
« on: November 13, 2010, 06:17:58 PM »
I need to download files to the local workstation. I have the page type set to 'File'.

The system always adds the extension.htm to all files. 

How do I get the system to not add this extension?

Bill

10
Web Server - Ask For Help / Re: Can not get code to run after OpenFiles
« on: November 11, 2010, 04:18:22 PM »
I used the LoadRelatedRecords embed and it works.

11
Web Server - Ask For Help / Can not get code to run after OpenFiles
« on: November 11, 2010, 08:37:39 AM »
I need to get a record from a file and set radio button text and values

I have created a routine and place the call to the routine in the "Beginning of Procedure, After Opening Files" embed.  It will not run.

Any Ideas?


OpenFiles  ROUTINE
! Start of "Beginning of Procedure, Before Opening Files"
! [Priority 5000]

! End of "Beginning of Procedure, Before Opening Files"
  p_web._OpenFile(VManagement)
  p_web._OpenFile(Vendors)
  FilesOpened = True
! Start of "Beginning of Procedure, After Opening Files"
! [Priority 4000]
   Do GetVMData   !<------- This code will not run
! End of "Beginning of Procedure, After Opening Files"

12
Web Server - Ask For Help / Re: Call form from Browse
« on: November 11, 2010, 07:51:18 AM »
Thanks Bruce.  I did get it working.

I had the button in the row, set to 'change' and put the URL in on the button's Hyperlink tab.  This just called the BrowseEvents procedure again.

I changed the button's type to 'Other' which gave me the option to add the URL on the button's properties tab.  This worked.

Is this the correct way?

13
Web Server - Ask For Help / Re: Call form from Browse
« on: November 10, 2010, 06:52:11 PM »
Rob,

Thanks for the reply.

I agree the p_web.GSV('EventD:EventID') should return the correct value.

I have tested in the 'User clicked on a row in the browse' embed and the p_web.GSV('EventD:EventID') returns null.

Bill

14
Web Server - Ask For Help / Call form from Browse
« on: November 10, 2010, 06:40:13 AM »
I have three tables (Systems -->> EventDetail << -- Events)

On the Systems form I have a browse for EventDetail.  I want the form for the EventDetail browse to edit the record from Events.  (EventDetail contains only the SystemID and the EventID )

I have done this before, with help from Bruce, but can not get it to work this time.

On the form tab of the EventDetail browse I do not specify a form procedure, but have entered a manual URL.



I have tried :
'UpdateEvents?Event:SysID=' & p_web.GSV('EventD:EventID') & '&change_btn=change'
Returns
UpdateEvents?Event:SysID=&change_btn=change

'UpdateEvents?Event:SysID=' & p_web.GetValue('EventD:EventID') & '&change_btn=change'
Returns
UpdateEvents?Event:SysID=&change_btn=change

'UpdateEvents?Event:SysID=' & EventD:EventID & '&change_btn=change'
Returns
UpdateEvents?Event:SysID=0&change_btn=change



For each variation I get the Update form with a record not found error.

If I enter:
 UpdateEvents?Event:SysID=84&change_btn=change
in as the URL in FireFox it works.

(EventD:EventID is shown in the browse and should be available)

What am I doing wrong?


Pages: [1]