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 - carlitm

Pages: [1]
1
Web Server - Ask For Help / Re: Scheduled daily task
« on: June 09, 2016, 07:31:26 AM »
Hi

I do this by setting a timer on the WebServer procedure - 360000 = 1 hour

In TakeWindowEvent(), After Parent call I use this code for a BackUp procedure

        DateLastBackup = s_web.GetHostValue('DateLastBackup')
        IF TODAY() > DateLastBackup THEN
            START(BackUpCopy,50000)
            s_web.SetHostValue('DateLastBackup',TODAY())
        END

HTH
Carl

2
Web Server - Ask For Help / Re: Page Header 'Look'
« on: January 13, 2015, 11:41:52 PM »
Hi Keith

Thought I would mention that by NOT specifying  'nt-width-150px', the menu width will scale depending on the width of the browser window.

HTH

Carl

3
Web Server - Ask For Help / Re: Page Header 'Look'
« on: January 09, 2015, 12:40:06 AM »
Hi Keith

I got the effect you are looking for by adding a custom.css file with the following:

.ui-accordion.ui-widget {
margin-right: 2em;
}

HTH
Carl

Pages: [1]