Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 84,292
» Latest member: birdeyedata
» Forum threads: 2,412
» Forum posts: 11,326

Full Statistics

Online Users
There are currently 397 online users.
» 3 Member(s) | 391 Guest(s)
Applebot, Bing, Google, 90phuthelp, birdeyedata, IRFACILITIES

Latest Threads
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 106
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: vonirpereira
07-03-2026, 06:51 PM
» Replies: 0
» Views: 73
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 37
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:19 AM
» Replies: 4
» Views: 4,252
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:04 AM
» Replies: 4
» Views: 616
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Gustave
06-30-2026, 09:00 PM
» Replies: 0
» Views: 86
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 779
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 143
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,922
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 576

 
  IWEdit caret position
Posted by: SorenJensen - 08-22-2019, 05:53 AM - Forum: IntraWeb General Discussion - Replies (9)

Hi All,

In FormShow I put some text into the a IWEdit control and then call iwedit1.setfocus. The text is shown, but the caret is positioned before the leftmost character.

In Tedit I would use Selstart to position the caret at the end of the text, but selstart is not a property / method of iwedit.

Do anyone have a suggestion as to how it can be done ?

Regards
Soren

Print this item

  Tabbed like browsing with Intraweb ?
Posted by: SorenJensen - 08-21-2019, 10:15 AM - Forum: IntraWeb General Discussion - Replies (6)

Hi All,

I'm wondering how I can make something like tabbed browsing available for my intraweb users, and hope that some of you, who obviously know intraweb a lot more, and deeply than I, could give me some ideas of how to archive that. Note that my application is installed as a service on a server.

Would it be possible to start the same application multiple times, either in a new tab for each, or as a new browser for each ?

I have tried activating the same service on more that one tab, and technically it appears to work (no errors), but I have noticed that with more tabs, I mostly have to click more that once a a clickable component, before it activates. It is like the first time I click it, after switching tab, it's only refreshing the screen. a second click usually activates the function.

Regards
Soren

Print this item

  New property ServerController.SessionOptions.AllowSearchEngines
Posted by: JuergenS - 08-21-2019, 06:51 AM - Forum: IntraWeb General Discussion - Replies (17)

Hi,

I already use my own installed content handler for search engines along with the options
ServerController.SearchEngineOptions->RedirectToContentHandler and
ServerController.SearchEngineOptions->ContentHandlerPath.

Will that still work if I set ServerController.SessionOptions.AllowSearchEngines = false ?

What is the content of the build-in robots.txt file and where it will be located ?

Regards
JuergenS

Print this item

  IWLocker How To?
Posted by: ShaneStump - 08-20-2019, 07:26 PM - Forum: IntraWeb General Discussion - Replies (1)

Howdy All!

I have some places where I need to lock the form and so I have functions that basically implement the following (c++):

void ActivateFormLock(void)
{
  UnicodeString strJS = L"ActivateLock();";

  // Add java script to be executed!
  WebApplication->CallBackResponse->AddJavaScriptToExecute(strJS);
}


void ReleaseFormLock(void)
{
  // Javascript to lock form
  UnicodeString strJS = L"ReleaseLock();";

  // Add java script to be executed!
  WebApplication->CallBackResponse->AddJavaScriptToExecute(strJS);
}

The problem is the IWLocker isn't activated. What am I doing WRONG?

Thanks in advance,

Shane

Print this item

  IW 15.1.x error in TIWImageButton
Posted by: aimpera - 08-20-2019, 03:53 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi,

I noticed a strange behavior
in Intraweb 15.1.x when I click on a TIWImageButton with no events defined, the browser does a submit event (a refresh).
Using a previous version (I tested iw 15.0.21) clicking does nothing, as expected.

What's wrong?
(To reproduce It's sufficient to put a TIWImageButton  in a empty form and compile with IW 15.0.x and 15.1.x)

Best Regards, Alfredo

Print this item

  Are old blog posts still accessible somewhere
Posted by: jeroen.rottink - 08-19-2019, 09:23 AM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

In my documentation of converting an IW10 application to IW14 I came accross a lot of references to the old atozed/intraweb blog.
Links like http://www.atozed.com/intraweb/blog/20091102.en.aspx and http://www.atozed.com/intraweb/blog/20140508.EN.aspx. Are these blogs under another link still accessible?


Found it via http://web.archive.org

http://web.archive.org/web/2016080307484...08.EN.aspx

Print this item

  lambda functions with classic 32 bit Borland compiler ?
Posted by: JuergenS - 08-18-2019, 05:51 PM - Forum: IntraWeb General Discussion - Replies (14)

Hi,

the Intraweb Application Wizard creates by default a C++ project for the classic 32 bit Borland compiler,
but now the default compiler for Embarcadero RAD Studio 10.3.2 32 AND 64 bit  is CLANG.

The classic 32 bit Borland compiler does not provide C++11 lamda function support,
therefore gsession functions like Excecute() and LookUp() probably can not be used with this compiler.

Turning off the classic 32 bit compiler creates an error message in IWInit.hpp

namespace Iwinit
{
  extern Iwapplication::TIWApplication* __thread WebApplication;
}

Regards
JuergenS

Print this item

  TWMemo and caret position
Posted by: Nand__ - 08-17-2019, 09:58 AM - Forum: IntraWeb General Discussion - Replies (1)

Hello everybody,

is there a way to set the caret position in a TIWMemo control?

Print this item

  Help with Registered callback methods
Posted by: LeoBruno - 08-16-2019, 07:32 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi:

I´m testing Intraweb 15.1 and

I need to get on server side (IWApplication) the result value from a javascript function executed on client side.

I have read this dodumentation http://docs.atozed.com/docs.dll/developm...015.1.html
and these threads https://www.atozed.com/forums/showthread.php?tid=498 , https://www.atozed.com/forums/thread-1134.html

Also IW CustomAjaxCall Demo.

But I find all very confusing, because i need the return values on server side.
So Why should I use a callback method, when all I need to do is to get a result value that is on the client side?
Also, I´m not sure if I got this right.

Here is what I have so far...

1- the CallBackMethod:

procedure TfrmBase.clbkGridSel(aParams: TStrings; out aResult: string);
begin
  aResult := aParams.Values['Selection'];
end;


2 - the registration of the callback method

procedure TfrmBase.IWAppFormCreate(Sender: TObject);
begin
  WebApplication.RegisterCallBack('clbkGridSel', clbkGridSel);
end;


How do I get, on server side, the aResult from the callback method to process this information?

I wrote this method to execute the callback on client side, but as you can see, It doesn´t help me to get the information.

function TfrmBase.GetSelecaoGrid: string;
begin
  WebApplication.
    CallBackResponse.
      AddJavaScriptToExecute('ajaxCall("clbkGridSel", "&Selection="  + GRIDCADUSUARIOGetSelected()');
end;

GRIDCADUSUARIOGetSelected() id the javascript function that will return the selected data.

In other words, what I need to accomplish, is to be able to call javascript "GRIDCADUSUARIOGetSelected() " from Server Side, and get it´s result value.

Print this item

  IW 15.1.3 ISAPI
Posted by: matija - 08-16-2019, 11:44 AM - Forum: IntraWeb General Discussion - Replies (8)

Do I need to have new DLLs (Atozed.Core, Intraweb, Intraweb.HTML, Itraweb.IWP) for the ISAPI version if you are using IW 15.1.3?

Because it doesn't work, I don't know why or where! In the previous version, the case still worked.

Print this item