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

Pages: 1 ... 15 16 [17] 18 19 ... 25
241
Web Server - Ask For Help / Re: SSL application and COMODO certificate-help
« on: November 30, 2016, 05:32:08 PM »
Hi,
I had to go to the Hosting Management console at Go Daddy after logging into my account.  I edited the A record and pointed it to my server which is remotely located and my SSL Net talk app works correctly with the SSL certificates I got from Go Daddy.
Ron Jolda

242
Web Server - Ask For Help / Re: SSL application and COMODO certificate-help
« on: November 30, 2016, 05:29:25 PM »
Hi,
I domain name registered with GoDaddy and have server located remotely.  I purchased SSL certificate from Go Daddy and had to edit the A record on my GoDaddy Domain Name and point it to the IP address of my remote server.  Did this all from the Hosting management console.  After that, my  Net talk app with SSL worked correctly!
FWIW,
Ron Jolda

243
Web Server - Ask For Help / Re: Speech input/recognition
« on: July 28, 2016, 05:11:24 PM »
Hi,
Have Done clarion apps with dragon dictate.  Dragon dictate will do voice to text in almost any text field.  Some versions of Dragon dictate will accept stored voice files - I have never played with this but it is theoretically possible to store the voice in a blob and then submit it to Dragon.
That being said, Dragon dictate should work with a net talk app.  It would have to be installed on the end user's computer.  Besides being able to program system commands into Dragon ( to run the browser or computer), the end user would be able to do voice to text within any text field (including entry strings) in a browser running a net talk app.   Built in voice recognition in Windows 8/10 machines has gotten much better but I would think that Dragon with a dedicated mic would be best.  For many applications, CONTEXT makes voice to text accuracy better. 
FWIW,
Ron Jolda

244
Web Server - Ask For Help / Re: How to prime a positional locator
« on: January 25, 2015, 05:51:38 PM »
Hi Kevin,
Thanks - I see what you are doing.  Where do you embed this?
Thanks,
Ron

245
Web Server - Ask For Help / How to prime a positional locator
« on: January 24, 2015, 06:43:52 AM »
Hi,
I am passing a value to a lookup table.
Lookup table has a Positional Locator.
What is the process to get the lookup table to the closest match (position) to the passed value?
( Don't want to filter as that will show only matching records and I want the table to show entries AROUND the passed value).
TIA
Ron Jolda
 

246
Hi,
Thanks - that was the correct setup to get the actual value passed in the URL!
Thanks,
Ron

247
Web Server - Ask For Help / How to set paramater to pass in the URL line
« on: January 23, 2015, 12:59:20 PM »
Hi
Trying to pass the value of a VARIABLE as a parameter on the URL line for a Lookup button.
For the Lookup button, Parameters(n=v&n=v) seem to pass the string and not the value of the string itself - e.g.
I want to pass the contents of CLS:DX1 field which is actually = '250.55'
Setting the Parameters line   lookfld=CLS:DX1  actually passes the text   'lookfld=CLS:DX1' in the URL parameter list - I want it to look like  'lookfld=250.55'
so that I can get the value in the called procedure.
What is the trick?
THanks
Ron

248
Web Server - Ask For Help / Re: Compile error V 8.34 upgrade on picture
« on: January 23, 2015, 10:55:31 AM »
Ahhh,
Just upgraded String Theory and that resolved the problem.
Ron

249
Web Server - Ask For Help / Compile error V 8.34 upgrade on picture
« on: January 23, 2015, 09:29:08 AM »
Hi
Using Clarion 8.
Just installed NT 8.34.
Have String Theory in app V 2.09
Just started getting compile errors on my app:
Illegal data type: STRINGPICTURE - C:\Program Files (x86)\SoftVelocity\Clarion8\Accessory\libsrc\win\NetWeb.Clw:10588,10  ! >>>>pic      StringPicture
Unknown procedure label:  ! >>> pic.ParsePicture(p_pic)
And a few more errors related to picture processing.

Is it me - what might the problem be??
or is it the update???
TIA,
Ron

250
Web Server - Ask For Help / Re: Application Gone MAd - Continuation
« on: August 05, 2014, 10:19:45 AM »
Brian,
What I did when I started playing with this stuff long ago was use a local variable ( e.g. myfilter - string(250) ) for constructing the filter.
I would do this ONLY ON MY DEVELOPMENT MACHINE - as message will pop up a message box on the web server ( development machine ).
I would code in a line for myfilter before the filter was called for the browse - e.g.
 myfilter = GSV(logid) & 'active=1' ( not correct syntax for Net Talk but simply for illustration)
 message('My Filter: ' & myfilter)


The message would pop up on the development machine and will wait for an OK before the browser will continue.  This way you can actively see what values you have in your filter and what you are getting and not getting. 

When done, delete the message('') line -
FWIW,
Ron

251
Web Server - Ask For Help / Display a value on A BROWSE page using XML
« on: April 03, 2014, 11:16:28 AM »
Hi,
I am trying to display a value on a BROWSE.  The value is passed in a parameter.
I tried XML for the page with the following:

<div0>ICD 9 Code: 
<!--Net:v:'org'-->
 </div0>

I get the string ICD 9 Code: displayed correctly but it does not display the passed parameter ( which is there and loaded).

How do I get this to work or is there another way to display a passed parameter?

Thanks,
Ron Jolda

252
Web Server - Ask For Help / Re: Get parameter value from GET
« on: April 03, 2014, 11:06:05 AM »
AHH,
Figured it out.  I had to assign my own name to the  parameter  e.g. org=THISPARM and then the Getvalue('org') retrieved the correct value!
Ron Jolda

253
Web Server - Ask For Help / Get parameter value from GET
« on: April 03, 2014, 10:57:33 AM »
Hi,
I have a GET that looks like this: GET /B_maps?_ajax_=1&Lookup_btn=1&_refresh_=sort&_popup_=1&LookupField=CLS__DX1NEW&_sort_=MCR:Dcode9&_title_=DX%201%20NEW:&THISPARM&CLS__DX1NEW=

It is calling the procedure B_maps.   I am trying to get the parameter that is: THISPARM
Tried all kinds of crazy permutations of   lookcode = p_web.GetValue('_title_=DX%201%20NEW:')  but can't get it right to get the value of  THISPARM. 
What it the correct label to use in the p_web.GetValue( ??? ) to retrieve the value of THISPARM???
TIA
Ron Jolda

254
Hi,
NT 8, Clarion 8. 
I have a field on a form with a lookup.
I want to prime the Search on the Lookup with a value.
I can see the Parameters (n=v&n=v) in the Lookup Settings tab and I see that this is sent to the Lookup procedure.
QUESTIONS:
1. How to I capture this Parameter in the Lookup form  ( it is set to a passed Queue value that I can recover in the lookup procedure?
2. How do I use this Parameter to in essence "prime the search field" so that the Browse gets to the closest match?
TIA,
Ron Jolda

255
Web Server - Ask For Help / Re: NT7 App to NT8 Error
« on: March 21, 2014, 03:52:48 AM »
THanks Bruce,
Didn't sink in on my first pass of reading - will fix it up right off now.
Ron

Pages: 1 ... 15 16 [17] 18 19 ... 25