Mark-
Members-
Content Count
251 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Mark-
-
Writing if statement in the Code Editor
Mark- replied to PeterPanettone's topic in Delphi IDE and APIs
Delphi 10.2 Version 25.0.31059.3231 If I turn on hints, this is how the hint is displayed: -
Hello, Delphi Delphi 10.2 Version 25.0.31059.3231 I have never used the IDE macro feature. Recently the three button controls appeared in the lower left of all code editor windows. The controls may have been in the window, not causing an issue. The controls are blocking the line and column values for the caret position. Any idea how to fix or hide the controls. Thanks, Mark
-
Yes, the buttons show up as normal. Something to do with the theme and IDE foremost application I just started with dark and the buttons are not visible. Switch to light, appear, back to dark, still present. Switched to another application, back to IDE and buttons disappear. At least I now know how to get the buttons to the right location.
-
Thanks. That placement was what I recalled. Started the IDE this morning and the macro buttons are not present. Switched from dark to light theme and back to dark, result: Go figure.
-
Confused I am. Now I have one IDE code window with the macro controls visible and one without the controls visible.
-
Thanks
-
Thanks.
-
What is "dragon4"?
-
Thanks for all the replies.
-
Hello, Delphi-ONVIF-master is around, never used it. I wrote some code to use ONVIF for PTZ control. Did not use the video portion of the ONVIF specifiation For video, most cameras our customers use are MJPEG or RTSP and the video portion of ONVIF did not add any value. At the time ONVIF PTZ compliance was...marketed but not 100%. Still made it work. 🙂 Good luck, Mark
- 1 reply
-
- delphi 10.2;
- onvif
-
(and 1 more)
Tagged with:
-
Hello, I know there are several online JSON validation sites and I am seeking one or both of below. 1. Delphi code or DLL that can validate JSON text. 2. A website I can POST the text to validate and get the results. Any ideas? Thanks, Mark
-
Abandoned but not removed? I assume the new web server component will have a new name.
-
I use TWSocket the most for industrial communications. Some specifications (e.g. MQTT) are optional SSL and I use TSslWSocket if the end user selects SSL. I also use other components for mail/ftp/client and server HTTP with and without SSL. Removing "USE_SSL", SSL will continue as an option for all components that already support non-SSL and SSL? Any downside from removing "USE_SSL"?
-
For me, space is not an issue. SSL/TLS remaining optional is valuable to me.
-
I assume low level components (TWSocket/etc.) will not be impacted. Most of my ICS use is without SSL. And thanks for all your work on ICS.
-
Post a close message to the main form. procedure PostCloseMessage(aHand:hwnd);inline; begin PostMessage(aHand,WM_CLOSE,0,0); end; PostCloseMessage(self.handle);
-
SWAG, did you trying providing the full path to signtool.exe?
-
For 10.2, Tools/Options, at the bottom
-
SWAG would be to capture the key in OnKeyDown test for the key if a VK_ADD, set the KeyDown(var Key: Word; to 0 and add the + to the edit field. Same for the other -/etc. keys. And you might need to turn on KeyPreview for the form.
-
No problem. Looking at the 10.2 code, it just exits on error with the result as nil. I wonder if I could/should write a console app in 10.4 and call it from the 10.2 created app.
-
The 10.4 JSON parser uses some newer methods in other units and messing with that is not appealing.
-
There are only two options in TJSONParseOptions, IsUTF8 UseBool I found my 10.4 VM and will try to use the 10 JSON files with 10.2,