Jump to content

Mark-

Members
  • Content Count

    201
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mark-

  1. 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
  2. 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.
  3. 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.
  4. Confused I am. Now I have one IDE code window with the macro controls visible and one without the controls visible.
  5. Mark-

    Debugger gives wrong value for long double

    What is "dragon4"?
  6. Mark-

    "CAN" bus advice

    Thanks
  7. Mark-

    "CAN" bus advice

    Hello, Anyone have suggestions for hardware/software for "Controller Area Network" (CAN) bus support for Windows using VCL? Thanks, Mark
  8. Mark-

    "CAN" bus advice

    Thanks for all the replies.
  9. Mark-

    "CAN" bus advice

    Thank you both.
  10. Mark-

    Convert project c# to pascal

    24 minutes.
  11. Mark-

    Delphi to access & control IP camera

    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
  12. Mark-

    JSON text validation...

    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
  13. Mark-

    ICS V8.70 announced

    Abandoned but not removed? I assume the new web server component will have a new name.
  14. Mark-

    ICS V8.70 announced

    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"?
  15. Mark-

    ICS V8.70 announced

    For me, space is not an issue. SSL/TLS remaining optional is valuable to me.
  16. Mark-

    ICS V8.70 announced

    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.
  17. Mark-

    Close application during form create??

    Post a close message to the main form. procedure PostCloseMessage(aHand:hwnd);inline; begin PostMessage(aHand,WM_CLOSE,0,0); end; PostCloseMessage(self.handle);
  18. Mark-

    Digitally Sign Applicaiton

    SWAG, did you trying providing the full path to signtool.exe?
  19. Mark-

    mistakenly removed runtime error

    For 10.2, Tools/Options, at the bottom
  20. Mark-

    Using VK_XXX numeric part of keyboard

    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.
  21. Mark-

    JSON text validation...

    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.
  22. Mark-

    JSON text validation...

    The 10.4 JSON parser uses some newer methods in other units and messing with that is not appealing.
  23. Mark-

    JSON text validation...

    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,
×