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 - Richard I

Pages: [1] 2 3 ... 29
1
Web Server - Ask For Help / Re: Theme menu settings not being saved
« on: July 23, 2026, 05:27:48 PM »
further to..
Somehow I changed the link mode in the project from lib to dll and complied which may account for it but despite resetting back to lib and recompiling ,doesnt correct it.
anyone able to help here please?
Thanks
Richard

2
Web Server - Ask For Help / Theme menu settings not being saved
« on: July 22, 2026, 05:38:57 PM »
Hi
In Clarion 11.1 my NT Themes settings are not being saved, in  the menu options
Top, Accordian, or Task Panel
I can set and it worked but on recompile it converts back to no selection

Dont seem to be able to find a reference to the fix or as to why it suddenly changed

NT  14.38
Thanks
Richard

3
Web Server - Ask For Help / Re: Clearing Buffer
« on: July 17, 2026, 02:19:23 PM »
Thank you very much
Im going to use clock() and an increasing  number ( to accomodate more than one send per day, so I can change the Filedownload Example to recognise the latest name..
Much obliged
Regards,
Richard

4
Web Server - Ask For Help / Clearing Buffer
« on: July 16, 2026, 04:15:10 PM »
Hello

CSV file issues in  NTWeb Form
Writing to a BASIC  datatable
Wanting to export from that.
Procedure is
Open App run a creation and export of a CSV file -File is correct
repeat with session still open but different selections
New file created in parent folder but the original CSV file exported,
Despite Coding the removal of the existing file first
Not using a Queue

Is the original "locked in the Buffer" in which case how to remove so that the downloaded file is the correct one, programmatically, please?

It subsequently appears to be that the DownloadBrowse  from the FileDownload example from a remote application caching the earlier file as the created file is correct.
w
Richard
NT 14.38

5
Hello,
I have NT apps running on amazon servers, and have the need to auto close the running app at an appointed time and reopen

Cleanclosedown does the closing but the only way I can think of auto opening is by a stand alone Timer app , unless there is in fact a recognised method?

Thanks
Richard
clarion 11.1  NT14.37

6
Web Server - Ask For Help / Re: Problem running from localhost
« on: July 18, 2025, 06:34:25 PM »
Hi Jane,
I have isolated the problem to PORT 80( which is the local PORT I routinely use) by running a webserver example using PORT 88  The example ran perfectly, and on changing the Port to 80 caused the now familiar error.
Using PORT 88 in my app also was succssful.

The running application now on PORT 80 is elusive, surviving Shut Down.
How can I discover what it is?  as Ive searched Task Manager and got the syntax for Powershell from AI both without success.

Thanks for your contact and help
Cheers
Richard

7
Web Server - Ask For Help / Re: Problem running from localhost
« on: July 18, 2025, 02:09:40 PM »
Hi Jane,
Thanks for replying....
I see http://localhost/
but https://127.0.0.1/
and in nedtdemo using client 127.0.0.1
on connect the error message is
<a netwoprk communication error has occured.
Error= - 53 which means Open Timeout or failure error{winsock error = 10061:( WSAECONNREFUSED) Connection refused.No connection could be made because the target machine actively refused it.]
Error occured in functionm NetSimple.TakeEvent>

beyond me !
I await your responce with eager and hopeful anticipation
Cheers
Richard


8
Web Server - Ask For Help / Problem running from localhost
« on: July 18, 2025, 03:32:54 AM »
Whats gone wrong?
I was tripping between C12 and C11.1 on the same PC when, following a successful compile and run, on opening the Browser using localhost:80 or 127.0.0.1:80 I get this error-

<localhost uses an unsupported protocol.
ERR_SSL_VERSION_OR_CIPHER_MISMATCH
Unsupported protocol
The client and server don't support a common SSL protocol version or cipher suite.>

I have NO idea how to resolve this, so would appreciate help
thanks
NT 14.35 
Richard

9
Web Server - Ask For Help / Re: web26 example File Upload
« on: March 23, 2025, 10:23:19 PM »
Many thanks Bruce.
regards,
Richard

10
Thanks Niels for the heads up  re "DAY"
FYI
The Code is now sorted , provided the date column in the CSV file is changed to dd/mm/yyyy

herewith for your interest

        SET(Lineitems)
        Access:Lineitems.usefile
        OPEN (Lineitems)
        Relate:ImportCSV.OPEN
        SET(ImportCSV)
        LOOP until Access:ImportCSV.Next()
        Lin:UserName  = p_web.GSV('Username')
        Lin:Quantity      = 1
        Lin:Product        =  ImpCSV:Label3                                             
        Lin:Price             =  ImpCSV:Label6
        Lin:IncomeItem  = 0
        IF Lin:Price > 1 THEN  Lin:IncomeItem  = 1 END
        IF LIN:Price < 1 THEN LIN:Price = (LIN:Price * -1 ) END
        Lin:Total              = Lin:Price
        Lin:date                = deformat( ImpCSV:Label7),@D6)
        locNewDate        = LIN:Date 
        locdaydate          =   DAY(Lin:Date)   
        LIN:Date              =   (locNewDate - locdaydate) +1   
        INV:Date =    Lin:date   
        IF access:Invoice.Fetch(INV:byDateDescending) = LEVEL:Benign
            Lin:InvoiceNumber = INV:ID
        END
        Access:LineItems.Insert()     
        END
  loc:Alert = 'Your Bank Statement has been Imported.'

Regards,
Richard

11
Thanks but no not yet!

12
Thanks for that Niels, I need it in the format dd/mm/yyyy
I think your expression will return mm/dd/yyyy ?
Could then  format newdate as  @0D6 ?
Would that work?
Cheers,
Richard

13
I want to change a date in a month by code  say 23/07/2024 to 01/07/2024

In the table there could be a range of dates and I want them all to become the first of the respective month and year
Thanks

Cheers
Richard

14
Web Server - Ask For Help / Re: web26 example File Upload
« on: March 18, 2025, 11:49:34 AM »
Amended File Update example Bruce,

I have deleted the FreeImage template and removed the mailbox and gallery Forms
Everything else is out of the example 26  file.
Although the message "Uploaded" appears, no file of  any type is uploaded to the uploads folder

Thank you for your help
Richard

15
Web Server - Ask For Help / Re: web26 example File Upload
« on: March 17, 2025, 04:25:48 PM »
Thanks Ron,

Interestingly, I am able to upload an image to the uploads folder, but not a document viz CSV file

Im not sure where to from here...
the problem I have is that on testing I get the messages that the File has been uploaded, but its not, or doesnt appear to be.
Ive done a search of the PC for a named CSV to see it was uploaded somewhere else....nothing.

I too deleted the Media from the documents page but in so doing, Im not sure whether the blob (document) is integral.
Im also  testing locally ie with  the amended example app uploading the file to  the same machine.
The only way I could get the example to compile without 14 errors was to delete the Free Image template.

I wonder whether the example only works as anticipated if its running from a secure https: site ? which my local pc is not.


Cheers
Richard


Pages: [1] 2 3 ... 29