In an IWEdit field, I need the input to be in uppercase chars.
I'm currently doing it as part of the SQL insert command, where each NVarChar field is converted with ".toupper", so that the saved value is correct. It also means I can search for the value, even with lowercase chars.
However, I would like to do it, char by char, while the user is typing.
I am already looking a each keydown for the fields in question, in combination with searches.
Is it possible to do the conversion between the keydown event is fired, and the pressed key is shown in the edit field ? That way it would be transparent for the user.
Is there an easy way of doing it and it, how is it done ?
Added an auther component to SCand set apRestrictAll.
Overrode 'RequestAuth(...)' in default form to return false and disable authentication for that form.
Added 2nd form without overriding 'RequestAuth(...)' so as to require authentication.
Default form loads ok on startup, 2nd form displays withoutauthentication on first try then browser prompts for credentials on any other access. I'm thinking the 2nd form shouldn't display until credentials are given on the first try.
Hi,
I purchased the license for intraweb 15 standard, when I run the application on the website I get the following message: Error message: ISAPI is not available in your license. In local mode (127.0.0.1) it worked.
I use delphi XE2 Embarcadero® Delphi® XE2 Version 16.0.4504.48759 Update 4 HotFix1.
in the Download-section i read that requirement is Delphi 2009 and up, but in the Sample Code section is Delphi 7 code. So is Crosstalk working with Delphi 7 or not?
Would anybody know which values are valid for the HOTKEY property of an IWButton, and also if there are limits to which is available depending on which browser used ?
I want to allow the users to press a hotkey (F10, Alt+A, ESC), in any of the input fields on screen, to active the event behind a corresponding iwbutton, but have so far been unsuccessful.
Also, trying the &-sign in front of a character in an IWButtons Caption, do not select and execute the button event, but rather open or close the menu line on the browser. In my case the Internet Explorer 11. For Edge nothing appears to happen. I have not tried with Firefox or Chrome yet, but expect it to be the same.
I have set the parameter and can still clone any application tab in Mozilla Firefox or create a new tab with the same URL.
With each session copy of the application, I can perform different functions.
Have I misunderstood something or is it not working as described?
procedure Tform1.rData(Sender: TObject; const Buffer: Pointer;
BufferSize: Cardinal; var FreeIt: Boolean);
var
Bytes: TIdBytes;
begin
if (Buffer <> nil) and (BufferSize > 0) And (udpreciver.Active) then
begin
udpsender.SendBuffer(ip, port, RawToBytes(Buffer^, Buffersize));
end;
end;
i want to add a text identification to each audio sent and then remove that text when its received
like following as example
Code:
if (Buffer <> nil) and (BufferSize > 0) And (udpreciver.Active) then
begin
udpsender.SendBuffer(ip, port, RawToBytes('Audio1'+Buffer^, Buffersize));
end;