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 / Example login / register / reset password
« on: February 24, 2019, 04:16:30 AM »
Hi,

Does one of the NT11 examples show a more advanced (or should I say standard these days) login where the user can either login, register or request a reset of password.

Particularly one that support salted, hashed password.

tia

/Poul

PS: Feature request - it would be nice if the NT wizard could generate this functionality.

32
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 

33
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

34
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

35
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

36
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

37
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

38
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

39
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

40
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

41
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


42
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

43
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

44
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

45
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

Pages: 1 2 [3] 4 5