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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 86,084
» Latest member: ax88cta
» Forum threads: 2,413
» Forum posts: 11,329

Full Statistics

Online Users
There are currently 469 online users.
» 1 Member(s) | 463 Guest(s)
Applebot, Bing, Facebook, Google, Yandex, Qh88plcom

Latest Threads
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
Yesterday, 06:27 AM
» Replies: 6
» Views: 762
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: capheny
07-07-2026, 06:43 AM
» Replies: 0
» Views: 127
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 433
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: vonirpereira
07-03-2026, 06:51 PM
» Replies: 0
» Views: 174
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 109
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,365
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Gustave
06-30-2026, 09:00 PM
» Replies: 0
» Views: 150
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 915
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 170
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 71,305

 
  iw 17 Bèta
Posted by: Filip Demuynck - 02-20-2019, 04:56 PM - Forum: IntraWeb 17 - Replies (3)

Hi,

I'm very much interested to get going with IW17,
I have an active Premium subscription, (demuynck.filip@gmail.com)
Where can is sign up ? I'm following the IW17 facebook page and saw that
the bèta was opening up.

Kind regards,

Filip Demuynck

Print this item

  Setting ContentType for bidi language
Posted by: sorinh - 02-20-2019, 11:20 AM - Forum: Indy - Replies (1)

Hello
 
I try to send an email using IdSMTP and IdMessage components with Hebrew on body text.
I use those settings:

Code:
IdMessage := 'UTF_8';
If HaveAttachments then
  IdMessage.ContentType := 'multipart/mixed';
Else
  IdMessage.ContentType := 'text/plain';

When I add attachments the emails arrive ok,
Without attachments the body text is replaced with questions marks.
 
What I'm doing wrong?

Print this item

  Intraweb and apache
Posted by: ronaldobim - 02-18-2019, 10:55 AM - Forum: IntraWeb Dúvidas Gerais - Replies (5)

Bom dia, alguém sabe me dizer se o módulo ISAPI do IW 14.2.8 roda no apache ? não achei nenhuma documentação da Atozed falando sobre isso.

Print this item

  Intraweb and apache?
Posted by: ronaldobim - 02-18-2019, 01:36 AM - Forum: IntraWeb General Discussion - Replies (3)

intraweb isapi run on apache?

Print this item

  Content handlers
Posted by: lfeliz - 02-17-2019, 01:11 AM - Forum: IntraWeb General Discussion - Replies (12)

Hi. 

Does a content handler run in its own thread?  I need to implement  a way to call into my app and get some information, content handler seems to be easiest way to do it.  I will move forward assuming it is for now.

Print this item

  Delphi Rio 10.3.1
Posted by: davidbaxter - 02-16-2019, 04:45 AM - Forum: IntraWeb General Discussion - Replies (6)

Tried to update my bundled IntraWeb to version 14. Went through the process to get a key (it starts with +0010ABG...) and used it for the install. The install completed fine, as near as I can tell, but when I start up Rio, I get a message that my key is not valid for my version of Delphi. Could it be the recent 10.3 to 10.3.1 update that was just released?

Edit: After the error comes up - Error code 30 - Delphi will continue to load, but there are no IntraWeb components on the pallet. However, I can load some of the example projects and run them.

Print this item

  CreateAnonymousThread Usage?
Posted by: cpstevenc - 02-13-2019, 08:33 PM - Forum: IntraWeb General Discussion - Replies (4)

Greetings!
Using Tokyo 10.2.3
IW 14.2.7

I started a new "Test" object to do some proof of concept stuff work work.

Currently I have a REST server wrote that we use FMX iOS/Android apps talk to. Works great for past 2.5+ years.

I have code that works with XSuperJSON/XSuperObject and some custom code to wrap all communications
and to wrap up JSON into objects.  This works great too.


Sooooo... I took this existing code from my FMX app and put it into a VCL IW stand alone server program.

Since the calls may take upwards of 10-15 seconds to run while it hits up the REST server.. REST server hits up a database back end,
does its magic and sends back... I wanted to use a thread.

I have something that "works" but not 100% sure if this is the proper way.... or can be done better.

Code:
..
..
  private
    salesSearchRequest: TSalesSearchRequest;
  public
  end;

..
..
procedure TIWForm117.btnGoClick(Sender: TObject);
begin
  IWMemo1.Clear;

  salesSearchRequest := TsalesSearchRequest.create;
  salesSearchRequest.serveraddress := 'myserver.com';
  salesSearchRequest.username := '<username>';
  salesSearchRequest.password := '<password>;
  salesSearchRequest.VIN := e_VIN.text;   /// <---- on the form itself, user types in a vehicle VIN 

  tthread.CreateAnonymousThread(
    procedure
    begin
      salesSearchRequest.Execute; // this takes the request and sends it out the REST server and does the magic to take the JSON response and turn it into object code.
    end).Start; // start the AnonymousThread so not to stop the user interface.

  IWTimer1.Enabled := true; // kicks off an Async timer that checks every 500ms

end;

..
..

..



procedure TIWForm117.IWTimer1AsyncTimer(Sender: TObject; EventParams: TStringList);
var
  idx: integer;
begin
  if assigned(salesSearchRequest) then
  begin

    case salesSearchRequest.State of

      jRunning: IWMemo1.Lines.Add('Waiting...'); // the salesSearchRequest is still running... so spit something out to memo box

      jComplete: // the salesSearchRequest is "finished" running... so now do something.
        begin
          IWTimer1.Enabled := false; // turn off timer 
          for idx := 0 to salesSearchRequest.inventory.inventoryresults.Count - 1 do
          begin
            IWMemo1.Lines.Add(inttostr(idx + 1) + ' : ' + salesSearchRequest.inventory.inventoryresults[idx].guid + // inventory GUID / ID
              '   ' + salesSearchRequest.inventory.inventoryresults[idx].year + '   ' + // year of vehicle
              salesSearchRequest.inventory.inventoryresults[idx].model); // model of vehicle
          end;
         freeandnil(salesSearchRequest);
        end;
    end;
  end;
end;
So in this case... I kick of the anonymousthread and start an ASYNC timer to check the status of the salesSearchRequest object.

Not sure if using the timer is the "best" way... it works... but is there a better method?

After the salesSearchRequest.execute;     I can't do "iwtimer1.enabled:=true;"  ... as nothing happens... but if i hit F5 to refresh the page,
then the timer starts working.  I don't know how or if even, so i can do something like

Code:
 salesSearchRequest.execute; // do my REST call magic
 iwTimer1.enabled := true;
 webapplication.updatestuff;
).start;
or if there is way to something with tthread.Synchronize that will play happy with IW client and can get code to kick off then to update the screen via async?
Any ideas would help! Smile
As mentioned, what I have today works... but I figure better to check in to see if better/proper ways of doing this.

Print this item

  Tie in A .JS file to work along with Intraweb?
Posted by: cpstevenc - 02-13-2019, 03:24 PM - Forum: IntraWeb General Discussion - Replies (3)

Greetings!
Using Tokyo 10.2.3
IW 14.2.7

I found a nice JS project to do auto complete / dropdown combo box setup.

Demo @ https://leaverou.github.io/awesomplete/

Can download ZIP file with everything.

I have fiddled with this in a few ways but I just can't seem to get the JS too hook with the TIWEdit control?

I've added these to the extraheaders

Code:
     <link rel="stylesheet" href="awesomplete.css" />
     <script src="awesomplete.js"></script>



Which seem to work, as if i look at the source of the page and click them, they load, so feel they are loading properly in the browser then.

I tried to do the "Combobox Dropdown" example at the bottom of the above page to hook to my IWEdit control but not been able to.

I modified their javascript to be included under the "JavaScript" property of the form.

I modified the names of the controls to look for.. IWEDIT1 , IWEDIT1CSS, ect.. but not exactly working.


I haven't had to use IW much in past few years, as product we have, has worked very well but now to finally add some
new features, and they want an autocomplete dropdown that works similar to this.  So figured hey, why not try and get this
guy to work.

Any tips would help alot!

Print this item

  TIWTimeEdit
Posted by: pvanwyk - 02-12-2019, 12:21 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi 

Does anybody know how the TIWTimeEdit component works? I'm looking for something to enter a time value into.

I'm not able to find any documentation/samples using this component.

We are using IW 15.0.17



Regards, Pieter

Print this item

  Overlay Web App
Posted by: ShaneStump - 02-10-2019, 07:21 AM - Forum: IntraWeb General Discussion - Replies (5)

Howdy!

Has anyone here successfully overlayed an intraweb app onto a web page? That is, run the application on top of another web page (kind of like a modal dialog)?

I have seen this technique being used by several of my competitors and I am thinking about seeing if it is an option for me.

All the best,

Shane

Print this item