Jump to content

Mark-

Members
  • Content Count

    207
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mark-

  1. Mark-

    "CAN" bus advice

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

    Writing if statement in the Code Editor

    Interesting, works on both monitors, on both computers here. Both computer's monitors, are arranged like this:
  3. Mark-

    Writing if statement in the Code Editor

    SHIFT + Windows key + S, allows to capture a part of the screen via click and drag the mouse.
  4. Mark-

    CPas - C for Delphi

    Yeah that was the catalyst for posting here and the webpage of "tinyBigGAMES LLC" did not have it listed. I wonder if he sold his work.
  5. Mark-

    Writing if statement in the Code Editor

    Does it change if you use the dark theme?
  6. Mark-

    CPas - C for Delphi

    Has this endeavor (CPas) ended?
  7. Mark-

    Writing if statement in the Code Editor

    Delphi 10.2 Version 25.0.31059.3231 If I turn on hints, this is how the hint is displayed:
  8. 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
  9. 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.
  10. 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.
  11. Confused I am. Now I have one IDE code window with the macro controls visible and one without the controls visible.
  12. Mark-

    Debugger gives wrong value for long double

    What is "dragon4"?
  13. Mark-

    "CAN" bus advice

    Thanks
  14. Mark-

    "CAN" bus advice

    Thanks for all the replies.
  15. Mark-

    "CAN" bus advice

    Thank you both.
  16. Mark-

    Convert project c# to pascal

    24 minutes.
  17. 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
  18. 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
  19. Mark-

    ICS V8.70 announced

    Abandoned but not removed? I assume the new web server component will have a new name.
  20. 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"?
  21. Mark-

    ICS V8.70 announced

    For me, space is not an issue. SSL/TLS remaining optional is valuable to me.
  22. 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.
  23. 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);
×