Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/08/2023 in all areas

  1. SOLVE-SMART

    Richedit TABkey

    Hi @mike1950r, Like @Musashi already suggested, you have to use CTRL+TAB to perform a \t (tab) within a Edit control (like RichEdit). You can also catch tab-pressing-event by a HotKey and insert your 8 spaces into the RichEdit control, because the default is 4 spaces (1 tab) as far as I know. So if you really need these 8 spaces, adjust your default tab size or use TAB as a HotKey to insert exact 8 spaces. HotKeySet('{TAB}', '_InsertEightSpaces') Func _InsertEightSpaces() _GUICtrlRichEdit_AppendText($hRichEdit, _StringRepeat(' ', 8)) EndFunc Best regards Sven
    1 point
  2. Musashi

    Richedit TABkey

    Not sure, if there is a special style parameter for that. You could try CRTL+TAB instead of the TAB key
    1 point
  3. Think I found the reason why this happens in your case and believe it is fixed in the current Beta zip file. Also try the Goto Func change (Ctrl+J) which now checks for Variable or Other string and will try to find the first "$variable =" definition in the current file or included files. Will later update the name of Ctrl+J to Jump2Definition or something. Jos
    1 point
  4. Will have a loo when I have some time for a new challenge.
    1 point
  5. "c:\Program Files\PDF24\pdf24-Doctool.exe" -noProgress -profile ""default/good"" -join 1.pdf 2.pdf -outputFile 3.pdf
    1 point
×
×
  • Create New...