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.
16
Web Server - Ask For Help / MObile device (Phone) @media screen and (max-width: 600px) FONT SIZE question
« on: May 07, 2025, 05:07:41 AM »
Hi
NT 14.21, C 11
I am running a NT app on browser and also in browser on mobile device ( Android - chrome).
I can change the font size on browsers EXCEPT FOR MOBILE DEVICES (Phone)
Using:
:root{
--font-family:"Open Sans","Segoe UI",Tahoma, Verdana, Arial, Helvetica, sans-serif;
--font-size:8pt;
}
I can change the font size for apps running on desktop - I can make the font very small. HOWEVER,
The font size does not get smaller on Mobile Device (phone). That is my issue, I want to make it smaller - so that the user can make it bigger if they want. BUt that is NOT happening.
I don't see any settings for font specific to @media screen and (max-width: 600px).
Indeed, if I put a specific font size in that section like this:
@media screen and (max-width: 600px) {
body{
font-size:8px;}
}
It does not make the font smaller. Seems like something else is setting font minimum size on mobile phone? Maybe mobile browser settings?
Any insights?
THanks,
Ron
NT 14.21, C 11
I am running a NT app on browser and also in browser on mobile device ( Android - chrome).
I can change the font size on browsers EXCEPT FOR MOBILE DEVICES (Phone)
Using:
:root{
--font-family:"Open Sans","Segoe UI",Tahoma, Verdana, Arial, Helvetica, sans-serif;
--font-size:8pt;
}
I can change the font size for apps running on desktop - I can make the font very small. HOWEVER,
The font size does not get smaller on Mobile Device (phone). That is my issue, I want to make it smaller - so that the user can make it bigger if they want. BUt that is NOT happening.
I don't see any settings for font specific to @media screen and (max-width: 600px).
Indeed, if I put a specific font size in that section like this:
@media screen and (max-width: 600px) {
body{
font-size:8px;}
}
It does not make the font smaller. Seems like something else is setting font minimum size on mobile phone? Maybe mobile browser settings?
Any insights?
THanks,
Ron
17
Web Server - Ask For Help / Re: How to adjust font size NT Variable
« on: May 05, 2025, 07:02:43 AM »
HI Jane,
Yes, I realized that NT used variables to set the overall information for the site. However, I had no clue how to change the variables.
Your information was very helpful. I actually got it implemented in my custom.css and got it Working!
Thanks,
ROn
Yes, I realized that NT used variables to set the overall information for the site. However, I had no clue how to change the variables.
Your information was very helpful. I actually got it implemented in my custom.css and got it Working!
Thanks,
ROn
18
Web Server - Ask For Help / Re: How to adjust font size NT Variable
« on: May 04, 2025, 02:13:38 AM »
HI Jane,
THANKS for all the useful information. It is sometimes hard to get information on the nuts and bolts of NT.
Especially, I did not think that you could overwrite the variables and their values ( I still have lots and lots of this css stuff to learn...)
Ron
THANKS for all the useful information. It is sometimes hard to get information on the nuts and bolts of NT.
Especially, I did not think that you could overwrite the variables and their values ( I still have lots and lots of this css stuff to learn...)
Ron
19
Web Server - Ask For Help / How to adjust font size NT Variable
« on: May 03, 2025, 02:45:13 AM »
Hi All,
NT 14.21 and C11
I am using base theme for my app. The base theme has the line: --font-size: 12pt;
base.css has this value for variable --font-size: 12pt; :
root {
--icon-size: 32px;
--icons-light: url("/icons/nt-icons-light.svg");
.....
--icons-error-scale: 1.75;
--icons-error-transform: scale(var(--icons-error-scale));
--font-family: "Open Sans","Segoe UI",Tahoma, Verdana, Arial, Helvetica, sans-serif;
--font-size: 12pt; <<<<<<<<<<================= If I change it here, it still does not affect the font - I change it to 8 pt but when I look in inspector, the value is still 12.
How can I change the overall font size for the entire app?
Am I in the right place?
I did gzipall after changing it to 8 pt but the inspector still says 12 pt.
Do I need to clear the cache?
TIA,
Ron
NT 14.21 and C11
I am using base theme for my app. The base theme has the line: --font-size: 12pt;
base.css has this value for variable --font-size: 12pt; :
root {
--icon-size: 32px;
--icons-light: url("/icons/nt-icons-light.svg");
.....
--icons-error-scale: 1.75;
--icons-error-transform: scale(var(--icons-error-scale));
--font-family: "Open Sans","Segoe UI",Tahoma, Verdana, Arial, Helvetica, sans-serif;
--font-size: 12pt; <<<<<<<<<<================= If I change it here, it still does not affect the font - I change it to 8 pt but when I look in inspector, the value is still 12.
How can I change the overall font size for the entire app?
Am I in the right place?
I did gzipall after changing it to 8 pt but the inspector still says 12 pt.
Do I need to clear the cache?
TIA,
Ron
20
Web Server - Ask For Help / Re: Modify the lookup procedure?
« on: March 20, 2025, 01:00:48 PM »
HI Jeff,
You will need to run a debugger program to see the TRACE statements.
When I am not wanting to run a debugger, and I am lazy, I just put in a message statement with a display of the variable field and its value. My message windows are set to time out after 3 seconds so they will auto close and the program will keep running.
Yes, I always get the ruler smashed across the knuckles but this is sometimes a quick way to get an answer to a simple problem!
Ron
You will need to run a debugger program to see the TRACE statements.
When I am not wanting to run a debugger, and I am lazy, I just put in a message statement with a display of the variable field and its value. My message windows are set to time out after 3 seconds so they will auto close and the program will keep running.
Yes, I always get the ruler smashed across the knuckles but this is sometimes a quick way to get an answer to a simple problem!
Ron
21
Web Server - Ask For Help / Re: Modify the lookup procedure?
« on: March 19, 2025, 04:25:17 PM »
HI Jeff,
sometimes the Display field drives me nuts. I would put a p_Web.Trace(' calculated value:' & loc:DateInterval ) when the calculation is done. I suspect that the calculation is done on the Server side when the second date is entered. That is where I would put the trace. If you get the correct value in the trace, then your math is correct - it is simply a display issue. Some of these forms go in and out of scope so many times, I find it is easier to place the value in p_web.SSV('loc:DateInterval' , loc:DateInterval ). I would then repeat the trace with p_Web.Trace(' calculated value:' & p_web.GSV('loc:DateInterval') ). If you are getting the correct value then try displaying the Session value for loc:DateInterval. That would be my suggestion as to how to see what is going on. Trace really helps sort these things out.
Ron
sometimes the Display field drives me nuts. I would put a p_Web.Trace(' calculated value:' & loc:DateInterval ) when the calculation is done. I suspect that the calculation is done on the Server side when the second date is entered. That is where I would put the trace. If you get the correct value in the trace, then your math is correct - it is simply a display issue. Some of these forms go in and out of scope so many times, I find it is easier to place the value in p_web.SSV('loc:DateInterval' , loc:DateInterval ). I would then repeat the trace with p_Web.Trace(' calculated value:' & p_web.GSV('loc:DateInterval') ). If you are getting the correct value then try displaying the Session value for loc:DateInterval. That would be my suggestion as to how to see what is going on. Trace really helps sort these things out.
Ron
22
Web Server - Ask For Help / Re: Modify the lookup procedure?
« on: March 18, 2025, 03:26:27 PM »
HI Jeff,
What you are trying to do is very unclear! However, under the Client-Side tab for the field you when refresh Prompt, value and comment. Also, When the field is accepted, You cn send new value to server and underneath that is a list of Objects to be RESET. So, if you have calculated your value but not reset the object, then it won't display.
Ron
What you are trying to do is very unclear! However, under the Client-Side tab for the field you when refresh Prompt, value and comment. Also, When the field is accepted, You cn send new value to server and underneath that is a list of Objects to be RESET. So, if you have calculated your value but not reset the object, then it won't display.
Ron
23
Web Server - Ask For Help / Re: web26 example File Upload
« on: March 17, 2025, 03:18:53 PM »
Hi Richard,
I tested out example 26. I had to delete the MEDIa vIEW FROM THE server as this threw two eerrors for unknown procedure...
It is not clear how this is supposed to work from just looking at it. I did not get anywhere with the client. I looked at the server app and tried to upload a mailbox picture. Did not work.
I have not spent a lot of time with this example.
FWIW
Ron
I tested out example 26. I had to delete the MEDIa vIEW FROM THE server as this threw two eerrors for unknown procedure...
It is not clear how this is supposed to work from just looking at it. I did not get anywhere with the client. I looked at the server app and tried to upload a mailbox picture. Did not work.
I have not spent a lot of time with this example.
FWIW
Ron
24
Web Server - Ask For Help / Re: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
« on: March 13, 2025, 03:25:47 AM »
HI All,
Got my keys mixed up. Squared them away and now running!
ROn
Got my keys mixed up. Squared them away and now running!
ROn
25
Web Server - Ask For Help / Error code: SSL_ERROR_NO_CYPHER_OVERLAP
« on: March 12, 2025, 09:06:48 AM »
HI All,
Using NT 14.21 and Clarion 11.0.136
I have a valid SSL certificate by Go Daddy on my server.
All of a sudden my server is giving the following error: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
I can RDP into my server and NT app is running and listening on port 447
I checked my firewall and app is set to go through firewall.
What might be going on?
Thanks,
Ron
Using NT 14.21 and Clarion 11.0.136
I have a valid SSL certificate by Go Daddy on my server.
All of a sudden my server is giving the following error: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
I can RDP into my server and NT app is running and listening on port 447
I checked my firewall and app is set to go through firewall.
What might be going on?
Thanks,
Ron
26
Web Server - Ask For Help / Re: Global template: Secret 1 / 2
« on: March 07, 2025, 10:43:14 AM »
Hi Poul,
I believe that they are used for encrypting records. Maybe a primary one that is used and a secondary one. They may be more important for disconnected apps but I am not sure.
Maybe Bruce can be more specific.
Ron
I believe that they are used for encrypting records. Maybe a primary one that is used and a secondary one. They may be more important for disconnected apps but I am not sure.
Maybe Bruce can be more specific.
Ron
27
Web Server - Ask For Help / Re: Net Web client = error 73
« on: March 03, 2025, 06:33:52 AM »
HI All,
ssl analysis program told me that intermediate certificate was missing on my NT server.
I re-downloaded my SSL certificate and intermediate certificates from GoDaddy and re-installed them.
Fixed the problem! Now working correctly.
Ron
ssl analysis program told me that intermediate certificate was missing on my NT server.
I re-downloaded my SSL certificate and intermediate certificates from GoDaddy and re-installed them.
Fixed the problem! Now working correctly.
Ron
28
Web Server - Ask For Help / Net Web client = error 73
« on: March 02, 2025, 02:01:25 PM »
Hi All
C11
NT 14.21
I am setting up a few refurbished PCs with Windows 10 Pro installed.
I keep running into an error 73 when I try to run my Web Client. Also get it with the NetTalk Demo app. I can connect to the site through a browser OK but all of the net talk stuff throws an error 73. I have installed the Visual Studio 2017 redistributable on the machines - but even with re-boot, I still keep getting the error.
Help!!
Thanks,
Ron
C11
NT 14.21
I am setting up a few refurbished PCs with Windows 10 Pro installed.
I keep running into an error 73 when I try to run my Web Client. Also get it with the NetTalk Demo app. I can connect to the site through a browser OK but all of the net talk stuff throws an error 73. I have installed the Visual Studio 2017 redistributable on the machines - but even with re-boot, I still keep getting the error.
Help!!
Thanks,
Ron
29
Web Server - Ask For Help / Re: Strategies to refresh client browse
« on: March 02, 2025, 05:47:48 AM »
HI Alberto,
Going to try this right now.
Thank you,
Ron
Going to try this right now.
Thank you,
Ron
30
Web Server - Ask For Help / Re: Strategies to refresh client browse
« on: March 01, 2025, 03:33:29 AM »
Hi Jane,
Thanks - will give it a try this weekend.
Ron
Thanks - will give it a try this weekend.
Ron