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.
46
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
Sure it will be sorted in next build.
Cheers
47
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.
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.
48
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.
Not working great foe me.
After updating now getting error
Secure Connection Failed
SSL_ERROR_RX_CERTIFICATE_REQUIRED_ALERT
Guess I am missing something.
49
Web Server - Ask For Help / Re: Unresolved External MEMORY in Themer.obj
« on: April 17, 2021, 10:20:48 PM »
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
NetTalk 12.13 but not had any problems with any Themer examples.
Cheers
Vinnie
50
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.
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.
51
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;
}
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;
}
52
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.
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.
53
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.
Works great 12.03
.ui-selectmenu-open ul {
height: 30em ;
}
change 30em to 15em for fewer lines to display.
54
Web Server - Ask For Help / Re: Upgrading to NT 12. Trouble with decimal variable on a form.
« on: December 17, 2020, 11:47:05 PM »
Hi Matthew
Bruce has fixed this for next release.
Bruce has fixed this for next release.
55
Web Server - Ask For Help / Re: Problem using a handheld for picking barcodes
« on: August 07, 2020, 01:54:35 AM »
Great.
Put extra input field on the memory form.
Add some CSS to make the color the same as the form color.
Background-color:
;
Border-color:
;
Border: 0px ;
I guess the have the select back to Barcode input working OK.
I add on the last embed point. After the what ever barcode does code and refresh barcode and browse.
p_web.SetValue('SelectField',clip(loc:formname) & '.' & p_web.NoColon('BarCode'))
Not sure if this code is still necessary as this is an old app.
Put extra input field on the memory form.
Add some CSS to make the color the same as the form color.
Background-color:

Border-color:

Border: 0px ;
I guess the have the select back to Barcode input working OK.
I add on the last embed point. After the what ever barcode does code and refresh barcode and browse.
p_web.SetValue('SelectField',clip(loc:formname) & '.' & p_web.NoColon('BarCode'))
Not sure if this code is still necessary as this is an old app.
56
Web Server - Ask For Help / Re: Problem using a handheld for picking barcodes
« on: August 06, 2020, 11:10:45 PM »
Hi Alberto,
I Watched your video.
I did not see the EXTRA INPUT FIELD on your screen of course it may be hidden.
See previous message.
Also I notice you are using auto complete on the field maybe remove this for testing.
Not sure why you need auto complete if you are scanning a barcode and enter key.
The Barcode is Valid or Not.
See previous message.
I Watched your video.
I did not see the EXTRA INPUT FIELD on your screen of course it may be hidden.
See previous message.
Also I notice you are using auto complete on the field maybe remove this for testing.
Not sure why you need auto complete if you are scanning a barcode and enter key.
The Barcode is Valid or Not.
See previous message.
57
Web Server - Ask For Help / Re: Problem using a handheld for picking barcodes
« on: August 06, 2020, 10:02:31 AM »
Hi Alberto
I have a barcode entry field on a Memory form and it works great.
Entry field is just a standard string field (barcode scanner or keyboard entry)
One thing I did was to add an extra input field on the form.
The extra field does not do anything.
When the Barcode entry field completes enter jump to extra field and focus back to Barcode entry field.
Hope this helps.
I have a barcode entry field on a Memory form and it works great.
Entry field is just a standard string field (barcode scanner or keyboard entry)
One thing I did was to add an extra input field on the form.
The extra field does not do anything.
When the Barcode entry field completes enter jump to extra field and focus back to Barcode entry field.
Hope this helps.
58
Web Server - Ask For Help / Re: OpenSSL - new VC++ Redistributables required
« on: July 07, 2020, 08:26:43 AM »
Hi Wolfgang.
Follow the link on Capesoft website.
Take you to https://support.microsoft.com/en-za/help/2977003/the-latest-supported-visual-c-downloads
Install X86 VC_redist.x86.exe
Clarion is 32 bit
Follow the link on Capesoft website.
Take you to https://support.microsoft.com/en-za/help/2977003/the-latest-supported-visual-c-downloads
Install X86 VC_redist.x86.exe
Clarion is 32 bit
59
Web Server - Ask For Help / Re: Timer stopped working
« on: July 06, 2020, 10:09:32 AM »
I am using Nettalk 11.37 and Browse timer is working great.
Also the Session Timer in to Footer also resets great.
Maybe something else wrong.
Also the Session Timer in to Footer also resets great.
Maybe something else wrong.
60
Web Server - Ask For Help / Re: Setup for MultiSite
« on: January 30, 2020, 12:15:16 AM »
YES Nettalk Multisite will allow two or more domains to use one IP address.
NetTalk will also handle the SSL cerficates for each domain using Lets Encrpyt.
You do NOT need to setup or install IIS on the server
Basic Authentication works great so NO need to setup windows users and password.
Looks like you are all good.
NetTalk will also handle the SSL cerficates for each domain using Lets Encrpyt.
You do NOT need to setup or install IIS on the server
Basic Authentication works great so NO need to setup windows users and password.
Looks like you are all good.