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

Pages: 1 2 [3] 4
31
Web Server - Ask For Help / Reminder: how to get row id?
« on: February 18, 2014, 12:28:45 AM »
I need quick reminder, because of ages ;)
How to get browse row id to pass value to, for example, printing?
Regards, Ozren.

32
Web Server - Ask For Help / Problem with conversion app from NT5 to NT7
« on: February 11, 2014, 02:41:46 AM »
I just try to make an conversion from my web application (in Nettalk 5.5) to Nettalk version (7.34), but only got huge amount of errors like this;:
Unresolved External Cla$Hookbutton in NETDL001.OBJ - O:\Werp\App\Web\Web_RK\map\release\web_rk.MAP:17
Unresolved External Cla$Hookstring in FM3MSS.OBJ - O:\Werp\App\Web\Web_RK\map\release\web_rk.MAP:14
____________________________________________________________________________________________________________

And so on, and so on...
This is my main web application and I need it to finish this conversion as soon as possible...
Any help from gurus?
Regards, Ozren.

33
Web Server - Ask For Help / Message(s)-messaging between user
« on: April 12, 2012, 04:27:50 AM »
I need to add some messaging functionality to web application, messaging between logged users. Is it possible to one user send some message to server, and in second step to another user via some scripts....
NT 5.48, Clarion 8,
Regards, Ozren

34
Is it possible to pass variable as some parameter from non-web procedure (webserver for example) to another, web, procedure?
NT 5.37...
Regards, Ozren

35
Web Server - Ask For Help / Slow browse with locator
« on: February 01, 2012, 06:45:51 AM »
I have a couple of browses with position locator, page loaded. When I disable locator, refreshing and displaying browse is almost instantenously. With locator enabled, all goes painfully slow. Without any filtering, to display that browse, first time after loging into app, takes about 4 seconds, the table is some 50 000 records. Closing this browse, and re-opening it, all goes even slower, about 15 seconds to open that browse...
In contrary, another browse on same table, but with filter, page loaded also, take about second or two to open...
Any help?
NT5.47, C8,
Regards, Ozren.

36
Web Server - Ask For Help / Hiding port number.
« on: January 12, 2012, 08:38:34 AM »
Probably stupid question: is it possible to "hide" port number for user on some server.
Example: server with port number http://serveronline.com:88
server with hidden port: http:serveronline.com
Regards, Ozren

37
Web Server - Ask For Help / SelfService and NT5 problem
« on: January 09, 2012, 05:58:47 AM »
Recently, I read on this forum about a problems with Self-Service and NT5. I have one web application with WinEvent and Self-Service. On NT4 all works OK, application is run like service on couple location. Compiled on NT5 (now 5.45 version), service cannot be started anymore... Nothing is changed on concept, nothing added or changed, just simply converted to NT5. No matter what I have try, even removed global Self-Service template, Win-Event template, and put it back, I cannot start application in service mode...
What happened?!?
Regards, Ozren

38
Web Server - Ask For Help / Disabling logging with IE 6
« on: October 11, 2011, 03:22:09 AM »
How to check if user is logging from IE version 6 and to prevent it - or note the user to change default web browser?
Regards, Ozren

39
Web Server - Ask For Help / SetFormAction routine
« on: October 04, 2011, 04:07:04 AM »
I need to change SetFormAction routine...
After some hours of examinating, I decide to omit default SetFormAction routine and call my SetFormAction from within local routine, with some condition:
Example:
If loc:logok = 1
  loc:FormAction = p_web.GetValue('onsave')
  If loc:formaction = 'stay'
    loc:FormAction = p_web.Requestfilename
  Else
    loc:formaction = 'IndexPage'
  End
  if p_web.IfExistsValue('ChainTo')
    loc:formaction = p_web.GetValue('ChainTo')
    p_web.SetSessionValue('LoginForm_ChainTo',loc:FormAction)
    loc:formactiontarget = '_self'
  ElsIf p_web.IfExistsSessionValue('LoginForm_ChainTo')
    loc:formaction = p_web.GetSessionValue('LoginForm_ChainTo')
    loc:formactiontarget = '_self'
  End
  If loc:FormActionTarget = ''
    loc:FormActionTarget = '_self'
  End
  If loc:formaction = ''
    loc:formaction = lower(p_web.getPageName(p_web.RequestReferer))
  End
  loc:FormActionCancel = 'Login.html'
  loc:FormActionCancelTarget = ''
end
-------------------------------------
but this didnt work...
My goal to call 'IndexPage' only when condition (loc:logok) is true...
After fetching data from logging database, loc:logok is set to true, I check this out, but local routine did not open IndexPage as expected....
Any hint on that?


40
Web Server - Ask For Help / Manually reseting value
« on: October 04, 2011, 12:35:12 AM »
I have lookup button after entry. When I click on lookup button, selecting some data from lookup table, second table reset well...
But if I enter value in entry field, fetching is done, but how to reset second table with filtered value?
Regards, Ozren

41
Web Server - Ask For Help / Conditional div
« on: September 26, 2011, 11:04:02 PM »
Is it possible to set conditional div class and fieldset class?
For example I want nt-hidden for div class, or/and fieldset class, its works... But also I need to change or disable this when logged in:
! embeded in HeadingWhenLoggedIn  Routine
IF p_web.GSV('Logged')=1
  loc:class = ''
  packet = clip(packet) & '<div '&p_web.wrap('class',loc:class)&'>'
else
  loc:class = 'nt-hidden'
  packet = clip(packet) & '<div '&p_web.wrap('class',loc:class)&'>'
END

That didn't work.
Any help about that?

42
Web Server - Ask For Help / Refreshing - resetting comment
« on: September 21, 2011, 03:52:55 AM »
I have field with value pj:sif, and also I put a local variable to hold a comment, lets say name of customer...
On opening this form, comment is correctly filled, but when I change value of pj:sif, comment did not refresh (reset) to new value, no matter what I try. On client-tab for that value field i checked comment field to be reseted, but still no effect.
Any suggestion?

43
Web Server - Ask For Help / 6 components key... still no-go
« on: September 16, 2011, 08:37:51 AM »
Just downloaded NT5.35, but there is no suupport for key with 5 or more components.
 :(

44
Web Server - Ask For Help / Corrupt block/Unknown block...
« on: September 06, 2011, 12:47:05 AM »
I have very weird problem.
On one, just on database, when entering-displaying webbrowse, got this message: Corrupt block/Unknown block type freed.  This is probably caused by freeing a static variable or a bad pointer.
The problem is that I cannot examine what trigger this error, and where in the source (if anywhere) that trigger is. I checked that database, re-build all keys,  and all is fine. This database, and all the others that is present in web application, also is part of offline application, and in offline application all works well.
Even when I recreate entire database from example file, its always the same error, so I think this is not on database side.
What I know about this error from "offline world", it is caused from referenced to some variables (local or global), but I cannot find what variables caused this.
Any ideas to solve this, regards Ozren.

45
Web Server - Ask For Help / About formatting string/long
« on: August 24, 2011, 01:51:04 AM »
I have string datafield which is formatted in @n06 picture.
In offline application, formating this field goes without problem (format(dat:numb,@n06)), but from web application, how to format to get exactly the same?
When I close/complete form in which that field is, I got wrong formatted field in database. In session value also all look well, but on completion and after inserting in database, no.
For example: the right format must be 000056, but I have in database entry of 56...
Regards, Ozren

Pages: 1 2 [3] 4