Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Sqlyog Not Visible #25227

    Peter, I posted the following question to the ooRexx Development team

    Does the “ensureVisible” method of ooDialog use a Windows API to accomplish its goal or is this pure ooRexx code?

    And here is the response I just received.

    It uses a Windows API. What is done is that the DM_REPOSITION message is sent to the dialog window. This is a dialog specific message, not a general window message. (DM_ -> dialog message as opposed to WM_ -> window message.)

    When a dialog gets this message it repositions itself so that it is completely on the screen (if it needs to.)

    Hope this helps

    Lee

    in reply to: Sqlyog Not Visible #25226

    Sorry, broke the cardinal rule of not specifying version in use.

    SQLyog Enterprise – MySQL GUI v5.25

    in reply to: Sql_mode #22499

    The workaround works; however, NO_ZERO_DATE shouldn't conflict with the GUI and should be “honored” – in my opinion.

    set sql_mode=

    “STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE”

    SELECT @@global.sql_mode

    “STRICT_TRANS_TABLES,NO_ZERO_DATE,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”

    insert into demotable set adate = 0

    Error Code : 1292

    Incorrect date value: '0' for column 'adate' at row 1

    (15 ms taken)

Viewing 3 posts - 1 through 3 (of 3 total)