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

Pages: 1 2 [3] 4 5 ... 12
31
Web Server - Ask For Help / Re: NetTalk 12.19 and Multisite
« on: June 06, 2021, 10:02:03 AM »
Seems this is an issue with Clarion 11.1 13744

Going back to Clarion 11 all is working OK.


32
Web Server - Ask For Help / Re: NetTalk 12.19 and Multisite
« on: June 06, 2021, 08:38:13 AM »
Thanks Jeff for your time.
I will check my stuff some more.
Cheers
Vinnie

33
Just updated to NetTalk 12.19 from NetTalk 12.17 which has a change for Multisite running as a service.

I am not running as a service just EXE.

Graceful close button now does not work. Program no longer response after graceful close pressed.

Button greys out but waiting TEXT does not appear and program no longer response.

Does anyone else see this or is they something I am doing.

Cheers

Vinnie


34
Thanks for reply.
Yes you can get screen size information and set ccs iflarge, ifmedium but I found it better for me to simply ask the user Phone, Tablet, PC when they login.

35
Hi Gordon.

Yes you could set the prompt size in CSS but I remove the prompt text for phone apps and put the prompt text in Place Holder.
If no data in the form field the Place Holder is displayed.

If  a String field Select String Tab and near the bottom of the options enter 'Place Holder Details' in Place Holder.

Hope this helps

Cheers
Vinnie

36
Web Server - Ask For Help / Re: Thread Pool vs Thread Number
« on: April 28, 2021, 02:27:34 AM »
Hi Don.
Thread Pools are Threads which can be opened in advanced of being required.

Threads are the number of threads currently open.

In most cases Thread Pools is NOT required because threads are opened and closed quickly.

If your system is complex (many Data Files) or slow, Thread pools can be opened in advanced and can be used later which will save time opening the new thread when the request arrives.

Hope I have explained OK.

37
Web Server - Ask For Help / Re: NetTalk 12.15
« on: April 26, 2021, 01:57:58 AM »
Thanks Bruce.
Updated to NetTalk 12.16 all great.
Many thanks.

38
Web Server - Ask For Help / Re: NetTalk 12.15
« on: April 25, 2021, 08:16:14 AM »
Many Thanks Don for confirming error.

Sure it will be sorted in next build.

Cheers

39
Web Server - Ask For Help / Re: NetTalk 12.15
« on: April 24, 2021, 12:10:10 AM »
Updated from NetTalk 12.13 to 12.15

Similar error using Chrome browser

This site can?t provide a secure connection didn?t accept your login certificate, or one may not have been provided.
Try contacting the system admin.
ERR_BAD_SSL_CLIENT_AUTH_CERT

Not sure what I am missing.

Just checking if anyone else has updated and working.


40
Web Server - Ask For Help / NetTalk 12.15
« on: April 23, 2021, 09:47:39 PM »
Just testing NetTalk 12.15 version.
Not working great foe me.
After updating now getting error
Secure Connection Failed
SSL_ERROR_RX_CERTIFICATE_REQUIRED_ALERT

Guess I am missing something.


41
Not and answer but I use Themer example and it works great for me.

NetTalk 12.13 but not had any problems with any Themer examples.

Cheers
Vinnie

42
Web Server - Ask For Help / Re: How to debug multihost GPF
« on: February 10, 2021, 12:35:17 AM »
Note sure I can answer How to debug but a few things to check.

1. Make sure both sites and host exe are compiled using the sames versions of Nettalk.

2. Site dlls and host exe are in the same location. Folder, Directory on your disk.
 
3. Make sure both sites WebServer  - Prototype is set - (<NetWebServer pServer>),name('WebServer')

4. Make sure both sites WebHandler - Prototype is set - (String p_String),name('WebHandler')

Hope this helps.

43
Web Server - Ask For Help / Re: Dropdown Problem
« on: January 30, 2021, 07:57:07 AM »
Just updated to Nettalk 12.06


Form Field Drop Down Add -
      Entry Part -  ' customentrypart-dropdown'
      Drop part - ' customdroppart-dropdown'

Added this to custom.css


.customentrypart-dropdown{
    width: 20em !important;
}

.customdroppart-dropdown{
    min-height:30em !important;
    text-align: left;
    white-space: nowrap;
    width: 20em !important;
}


44
Web Server - Ask For Help / Re: Dropdown Problem
« on: January 18, 2021, 09:32:57 AM »
I am sure Bruce will have the correct answer for you but this is my works around 12.05

In my custom.css

to fix drop height of drop list to 30em. If that is what you mean by height of drop selection

.nt-select-height {
height:30em;
}

to fix width of field

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 15em !important;
}

Not sure if this is helpful but works for me.

45
Web Server - Ask For Help / Re: Drop fields do not work properly
« on: January 01, 2021, 08:33:36 AM »
Hi added this to my customer css
Works great 12.03

.ui-selectmenu-open ul {
height: 30em ;
}

change 30em to 15em for fewer lines to display.

Pages: 1 2 [3] 4 5 ... 12