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.


Topics - Poul Jensen

Pages: 1 2 [3] 4 5
31
Web Server - Ask For Help / Condition small screen device
« on: February 24, 2019, 04:12:08 AM »
Other web tools have the possibility of reading the users screen and decide whether it is a small screen (ie. smartphone) or a large screen (tablet or PC).

Then certain elements could be shown or not shown.

Is this possible with NT 11 ?

Cheers
/Poul 

32
E-Mail - Ask For Help / Set NT Email Suppress Error ON/Off
« on: November 06, 2017, 03:03:44 AM »
Hi,

I would like to control the NT Email Suppress Error Message flag in code:

  ThisSendEmail.SuppressErrorMsg = 1         ! No Object Generated Error Messages !

But can I use this after the object has been initilalised ?

Cheers
/Poul

33
Web Server - Ask For Help / NT10 Let's Encrypt question
« on: August 22, 2017, 11:30:12 AM »
Hi,

Wizarded an app just to check the new Let's Encrypt possibilites.

When hitting the Certificates button to generate the certificate everything seem to work - from watching the log windows - apart from not getting any from/to dates.
Then the process starts automatically another 6 times until I get a communication error: Server Responce When requesting Certificate  429

domain.crt file has been generated.

Log:for one iteration:

 Dates: xyzsoft.dk From:            To:                                         
 Certificate received For xyzsoft.dk                                             
 Fetching Certificate For xyzsoft.dk                                             
 Requesting Certificate For xyzsoft.dk                                           
 Status: "valid"                                                                 
 Checking Status                                                                 
 Status: "pending"                                                               
 Checking Status                                                                 
 Notify Server Challenge is Ready                                               
 Challenge Token Saved C:\PStellar7\MariSoft\WebSSL\web\.well-known\acme-challenge\gnmHr....
 Authorize Request xyzsoft.dk                                                   
 Registering Account MariSoft                                                   
 C:\PStellar7\MariSoft\WebSSL\certificates\xyzsoft.dk.crt does not exist         
 Created C:\PStellar7\MariSoft\WebSSL\certificates\xyzsoft.dk.csr               
 Created C:\PStellar7\MariSoft\WebSSL\certificates\xyzsoft.dk.key               


What could be in play here.

Cheers
/Poul

34
Web Server - Ask For Help / Problem getting map to show
« on: March 27, 2017, 03:11:53 AM »
Hi,

I am trying to mimic NT example Web76 to shop a map.
As far as I can tell I have  copied all settings from Web76 (that works) to my app that does not work.

A strange dot is shown instead of the map.  Se attached.

What could be wrong here ?

tia
/Poul

35
Web Server - Ask For Help / Newbie questions re jQuery mobile
« on: September 17, 2016, 07:44:11 AM »
Hello,

What version of jQuery mobile is supported by NT ?

How do I switch between the swatches in a theme (ie. use the data-theme attribute like <div data-role="page" data-theme="a|b|c|d">) ?

TIA

Cheers
/Poul

36
Web Server - Ask For Help / NT app PhoneGap question
« on: September 15, 2016, 11:11:16 PM »
Hello,

The NT Apps documentation is all about disconnected apps.

Can NT app mBuild be used to create PhoneGap Build projects for standard NT web-apps or is this only applicable for disconnected apps ?

Cheers
/Poul

37
Web Server - Ask For Help / Mobile themes to show / share ?
« on: September 15, 2016, 11:05:36 PM »
Hello,

I am quite happy with the distributed desktop themes but need some variation on the mobiles.
Being somewhat artistic challenged I need some inspiration and  would like to ask if someone has mobile themes they would like show and if possible share.

TIA
/Poul

38
Hi,

I have a browse with a print-button.
This calls a report procedure and generates a pdf report.
Now I need at run time to select between this report in portrait or landscape.
So either I need to be able to select between two reports laid out in either orientation OR I need to be able to change a given reports orientation at runtime based on a condition.

Any thoughts about how to go about this ?

TIA
/Poul

39
Hello,

Making a invoice report from browse/detail lines usingTracker tools.
The previewer shows the invoice.
Then I click the printer icon in the previewer and the pdf is created and shown.

Am I supposed to see the previewer at all ?

Cheers
/Poul

NT9 / C10

40
In PageHeaderTag I have following to show information about logged-in customer:

packet.SetValue(' <strong>Sælger: ' & clip(p_web.GSV('SaelgerNavn')) & '</strong>'& p_web.CRLF )
do SendPacket

But the non ASCII characters does not come out right.

I am using UTF8 / Scandnavian character and the information read and saved from database is correct.

Any clues ?

Cheers
/Poul


41
Web Server - Ask For Help / Form not returning to browse
« on: May 19, 2015, 09:39:55 AM »
Hi,

My forms does not return to the browse after update.  What am I missing ?

Cheers,
/Poul

42
Web Server - Ask For Help / Set theme from ini-setting
« on: May 19, 2015, 09:38:08 AM »
Hi,

Instead of a fixed linked-in theme I would like to configure this using an ini-setting.

How do I do this ?

Cheers,
/Poul

43
Web Server - Ask For Help / Exclude column from being exported
« on: August 17, 2014, 07:05:08 AM »
Hi,

I have a column that are hidden in the browse by using a column condition.

But that column is still being Exported by the new Export to Excel function.
How can I prevent this ?

Cheers,
/Poul

44
Web Server - Ask For Help / Download link incorrect
« on: August 15, 2014, 12:24:04 AM »
Hi,

In a NetwebForm I create a link, calls a procedure that generates an Excel fil and shows a link to the user to download the file.

Below code is grabbed from one of the demo's (can't remember which one).
The Excel file is correctly created and placed in the ExcelFiles folder but the downloadlink is not working.
Between the webpage and the folder/filename is inserted the procedurename and a number of spaces like this:

http://webpage:88/ProcedureName%20%20%20%20%20%20%20%20ExcelFiles/97142171_varepriser.xls

What could be wrong in my code:

  g:ExelFilename = clip(p_web.GSV('Kundenummer')) & '_varepriser.xls'
  reportpage='\web\ExcelFiles\' & clip(g:ExelFilename)

  reporturl=LongPath() & reportpage
  p_web.SSV('reportlink','Click to open new Excel file.')
  p_web.SSV('reporturl',CLIP(SUB(p_web.requestReferer, 1, INSTRING('IndexPage',p_web.requestReferer,1,1)-1) & 'ExcelFiles/' & clip(g:ExelFilename)))

  if Exists(reporturl)
      Remove(reporturl)
  end

  CreateExcelFile(p_Web, g:ExelFilename )

The ViewReport procedure that shows the link has this routine:
Guts  Routine
  packet.append(p_web.AsciiToUTF(|
    '<<!-- Net:PageHeaderTag--><13,10>'&|
    '<<h2 fontcolor="Navy">Done:  Excel file created!<</h2><<p /> <<a href="<<!-- Net:s:reporturl-->"><<!-- Net:s:reportlink--><</a> <<p /><13,10>'&|
    '<<a href="javascript:history.go(-1)">Back<</a><13,10>'&|
    '<<!-- Net:PageFooterTag--><13,10>'&|
    '',net:OnlyIfUTF,net:StoreAsAscii))


Cheers,
/Poul

45
Web Server - Ask For Help / NTWS app GPF's after login
« on: July 30, 2014, 06:22:34 AM »
Hi,

The server app GPF's after login.

Using the debug ClaRUN I get below report, but really do not know where to look.
Clarion 9.1 and all 3rdparty tools are at latest builds.
Any ideas most welcome.

Cheers,
/Poul

Program : C:\Progs\Pstellar7\MariSoft\ChoparNet.exe
Version :
At : 16:20:31 on 2014/07/30
Workstation: : ASUS-025
User Name: : Samsø Kommune
Reported error : EXCEPTION_ACCESS_VIOLATION - Error reading data at : 727473DCh
Windows : Win 8   -, Tablet 6.2.9200
Clarion : 0.9
Thread : 2    Field : 0    Event : 0    Keycode : 0
Error at address : 00566EB2h  Line=7245  Proc=PARSEHTML@F18NETWEBSERVERWORKER12STRINGTHEORYllUc  Src=NetWeb.Clw
Stack Trace
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[01] 004CC092h    Line=178       Proc=R$SENDPACKET    Src=ChoparNet005.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[02] 004D2F9Ch    Line=79       Proc=PAGEHEADERTAG@F18NETWEBSERVERWORKER  Src=ChoparNet005.clw
??? 005B6A8Ch    Line ?=83    no proc       Src=StringTheory.clw
[03] 00464727h    Line=9193    Proc=PROCESSTAG@F5P_WEBsb  Src=ChoparNet004.clw
??? 005E47E8h    Line ?=83    no proc       Src=StringTheory.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[04] 005685B0h    Line=6864    Proc=_HANDLETAG@F18NETWEBSERVERWORKERsbOsb  Src=NetWeb.Clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[05] 00531C1Fh    Line=7379    Proc=R$MIDDLEBIT    Src=NetWeb.Clw
??? 005E5620h    Line ?=83    no proc       Src=StringTheory.clw
[06] 00566D70h    Line=7341    Proc=PARSEHTML@F18NETWEBSERVERWORKERRsbllUc  Src=NetWeb.Clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[07] 00566F44h    Line=7255    Proc=PARSEHTML@F18NETWEBSERVERWORKER12STRINGTHEORYllUc  Src=NetWeb.Clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[08] 004C72FEh    Line=660       Proc=R$SENDPACKET    Src=ChoparNet005.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
??? 005F44D8h    Line ?=83    no proc       Src=StringTheory.clw
??? 005D2501h    Line ?=83    no proc       Src=StringTheory.clw
[09] 004D174Eh    Line=638       Proc=INDEXPAGE@F18NETWEBSERVERWORKER  Src=ChoparNet005.clw
??? 005B9090h    Line ?=83    no proc       Src=StringTheory.clw
[10] 004628B6h    Line=9458    Proc=R$CASE:INDEXPAGE  Src=ChoparNet004.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[11] 00464245h    Line=9301    Proc=R$CASESTART:CHOPARNET  Src=ChoparNet004.clw
[12] 0046434Dh    Line=9281    Proc=_SENDFILE@F5P_WEBsbl  Src=ChoparNet004.clw
[13] 0056733Ah    Line=6671    Proc=_HANDLEGETREST@F18NETWEBSERVERWORKER  Src=NetWeb.Clw
??? 005D25D4h    Line ?=83    no proc       Src=StringTheory.clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[14] 00570978h    Line=2868    Proc=PROCESSVERB@F18NETWEBSERVERWORKER  Src=NetWeb.Clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[15] 00570E4Eh    Line=2850    Proc=PROCESSREQUEST@F18NETWEBSERVERWORKERsb  Src=NetWeb.Clw
??? 005BD390h    Line ?=83    no proc       Src=StringTheory.clw
[16] 004A9F97h    Line=8964    Proc=WEBHANDLER@Fsb  Src=ChoparNet004.clw
[17] 010CC04Fh    no line number    no proc       Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 011444C8h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 0112630Ah    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
[18] 010CBB39h    no line number    no proc       Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01126320h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 011444C8h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01144548h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01138138h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 0113814Ch    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01138168h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 0113815Ch    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01138184h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
??? 01138178h    Line ?=36    no proc       Src=wxeh.cpp    Module=C:\Progs\Pstellar7\MariSoft\ClaRUN.dll 9.1.11139
[19] 77D1A8CBh    no debug info, Module=C:\WINDOWS\SYSTEM32\ntdll.dll 6.3.9600.17031 (winblue_gdr.140221-1952)
[20] 77D1A8A1h    no debug info, Module=C:\WINDOWS\SYSTEM32\ntdll.dll 6.3.9600.17031 (winblue_gdr.140221-1952)

Pages: 1 2 [3] 4 5