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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 98,540
» Latest member: keobongda360net
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 1318 online users.
» 2 Member(s) | 1312 Guest(s)
Applebot, Bing, Google, Yandex, keobongda360net, Ketquabongdaafit

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 237
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 194
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 203
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 509
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 259
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 679
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 243
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,295
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 381
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,016

 
  Bootstrap 4 for IW
Posted by: ShaneStump - 07-24-2019, 04:39 AM - Forum: IntraWeb General Discussion - Replies (16)

Howdy all!

I am wondering if anyone would be interested in hosting the Bootstrap 4 modified version of Kattunga's Bootstrap 3 library?

Forum member LorenSzendre modified the original Kattunga library as a base for moving forward.

I have made a few changes myself and added wrappers for a few more components.

I am sure one could move a Bootstrap 3 app forward with a few modifications.

Any how, please let me know if anyone is interested.

All the best,

Shane

Print this item

  Socket Error # 10053 in IW15.1.1
Posted by: matija - 07-23-2019, 09:38 AM - Forum: IntraWeb General Discussion - Replies (5)

What for error?

Project Project1.exe raised exception class EIdSocketError with message 'Socket Error # 10053 Software caused connection abort.'.

Print this item

  SA HTTPSYS Windows login name
Posted by: SorenJensen - 07-23-2019, 04:58 AM - Forum: IntraWeb General Discussion - Replies (6)

Hi all,

Using a Stand Alone HTTP.SYS program as a service, running on a server:

What is the right/best way of getting either the windows login name, or any other unique information identifying the logged on user ?

I want to save users individual selections for various functions, so that the next time they use the function again, the last used selections are shown, regardless of which workstation they are logged on to. We are talking about the conditions in the where clauses of select statements. I need some kind of unique information, identifying each user. Like the Windows logon name.

Regards
Soren

Print this item

  IntraWeb 15.1x+ Bootstrap Changes??
Posted by: ShaneStump - 07-21-2019, 09:58 PM - Forum: IntraWeb General Discussion - Replies (1)

Howdy Alexandre!

Well, I finally got around to trying to figure out why starting in 15.1 my entire NEW JUST RELEASED IW app doesn't work anymore....

I believe it is because of changes made to the AsyncEvents...

Do you have a simple set of search and manually replace instructions on how y'all modified the old IWBS 3.x source so I can update my inherited modified copy of IWBS?

Thanks,

Shane

P.S. I tried doing a simple directory / file comparison and that is going to take some time thus why I am asking for the changes list.

Print this item

  IW15-Incorrect filelist in IWFileUploader
Posted by: v.lasquibar@telefonica.net - 07-21-2019, 04:08 PM - Forum: IntraWeb General Discussion - Replies (5)

Hi,
I'm using Delphi 10.2 update 3, and recently installed version 15.1.0  of IW. I also use last version of TMS Intraweb controls.
In an application I have a IWFileUploader control, with default values in properties (unless the name, of course).
When I run my application, I drag an drop several files (they appears as "uploaded"), and after the user performs some operations, I will try to copy to another location, using this code:

if CargarFicheros.FileList.Count > 0 then
  begin
    for I := 1 to CargarFicheros.FileList.Count do
    begin
      FormaNombreFicheroDestino(I, FicheroDestino);
      CargarFicheros.SaveToFile(CargarFicheros.FileList[I - 1].FileName, FicheroDestino, True);
    end;
  end;


FormaNombreFicheroDestino is:

FicheroDestino := RutaFicheros_Presupuestos + 'P' +
                      Serie_Presupuestos + '_' +
                      CabPresupuestoCliente.cpr_nro.ToString + '#' +
                      I.ToString + '_' +
                      CargarFicheros.FileList[I - 1].FileName;



I have 2 problems:
a) FileList has only one element, regardless the number of files I've uploaded
b) When I refer to FileList [0].FileName, I get an Access Violation (whilst the element 0 of the list is not nil)

Could you please help me with this error?

Best regards,

                  Venancio Lasquibar

Could you

Print this item

  Strange behavior with SA HTTPSYS and ADOConnection
Posted by: SorenJensen - 07-21-2019, 08:42 AM - Forum: IntraWeb General Discussion - Replies (1)

Hi Guys,

Trying the SA HTTPSYS option, it seem to work nicely. I have a small test application with one form with a iwlistbox on it and 2 iwlabels. Added a datamodule on which there is an ADOConnection and a ADOTable. In the onformshow of the form, I open the table and add each row to the listbox. In the iwlabel1 I show the result of GetCurrentUser (windows unit) and the other label I just fill caption with a text.

When running as visible appl, it works fine. The strange behavior is that it lists the contenct of the table even though I have not specifically ticked the CONNECT box on the ADOConnection properties, notr do I call its Open method. I do call ADOtable.open before retrieving each row.

How can it be it can open the table when I have not opened the connection yet ?

The ADOconnection is build with MSSQL server name, Windows auuthentication and the name of the database, and the tablename of the ADOTable is set to the name of the table, so all is there, but the CONNECT command. Is there an autoconnect I miss somewhere ?

Print this item

  Unexpected behavior. What am I missing ?
Posted by: SorenJensen - 07-21-2019, 07:23 AM - Forum: IntraWeb General Discussion - Replies (6)

Hi Guys,

I'm trying out the new SA httpsys option, and it works really nice. However, I do have some strange and unexpected behavior I hope some of you could explain or help point me in the right direction:

First:
I have a small test application with a datamodule with an ADOConnection and an ADOTable. Connection points to the MSSQL server and is set to Windows authentication, and testconnection work fine. However, I do not set the Connected property nor the Active property on the table. In unit1 I have a listbox and in Formshow, a call to a procedure "ShowMenu" listing the content of adotable.

The unexpected behavior is that the application do show the content of the table in the listbox, despite me not calling the adoconnection.open method, nor setting the connected property. Even if I tick LoginPrompt (without a onlogin event), it still connects silently. Only when I change authentication to SQL user, provide a name but no password, it will not connect. Instead I get an error "Colinitiate has not been called!".

The above test is when run with visible GUI. Why do it connect even though I have not set the Connected property nor called the Open method ?

Second:
When setting the connection properties as supposed, recompiling it as a service, installing it on the target machine, and trying to call it in the browser, I do get the unit1 form up on the screen, but with no data (not even those simple iwlabel1.caption := 'test'Wink, and the procedure to open the table and show the contents in the listbox, fails with an access violation error.

So the same program works fine as GUI, but fails as a Service. I suppose it is an authentication problem, where the service runs with another user than the one logged on to windows, but not even when entering the SQL user and password in the ADOconnection, do it work. It is the same whether the service is installed locally on the SQL server, or on the development pc.

I hope someone else have had the same problem and have found a solution.

Print this item

  Bad IWModalWindow.ButtonIndex in version 15.1
Posted by: v.lasquibar@telefonica.net - 07-19-2019, 09:42 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi,

I've installed today version 15.1.0 of Intraweb and recompiled TMS components, and my applications. I have an application that shows a ModalWindow with 2 fields and 2 buttons (OK and Cancel), and check return using this code:

if Login_Modal.ButtonIndex >= 0 then begin   
  case Login_Modal.ButtonIndex of
      1: // Conectar
          ValidarUsuario;
    end;
  end;


The problem is that regardless the button I press, the value of ButtonIndex is always 2 (Cancel).
How can I do to know the button really pressed by the user?


Best regards,

                  Venancio Lasquibar

Print this item

  IntraWeb 15.1.1 for Delphi 10.3.2
Posted by: Alexandre Machado - 07-19-2019, 10:09 AM - Forum: IntraWeb General Discussion - No Replies

There are a new IntraWeb release available, already built with Delphi 10.3.2:

IntrWeb 15.1.1: http://downloads.atozed.com/IntraWeb/iw15.1.1.exe 

Enjoy!  Smile

Print this item

  Change global variable in Javascript
Posted by: matija - 07-19-2019, 07:54 AM - Forum: IntraWeb General Discussion - Replies (3)

I have in my HTML template javascript global variable. How change this value?

var link="c:\temp\test1.pdf"; -> var link="c:\temp\test2.pdf"; 

Not work this: WebApplication.CallBackResponse.AddJavaScriptToExecute('link="c:\temp\test2.pdf";');

Print this item