Search found 1038 matches

by Rickard Johansson
02 Feb 2024 14:21
Forum: Features
Topic: DONE: Global/Static/User/Scripting .INI file and Object
Replies: 2
Views: 250

Re: Global/Static/User/Scripting .INI file and Object

Created a new "ScriptSettings" object with the following methods: procedure DeleteKey(const Section, Ident: String) procedure EraseSection(const Section: string) function ReadBool(const Section, Ident: string; Default: Boolean): Boolean function ReadDateTime(const Section, Name: string; De...
by Rickard Johansson
01 Feb 2024 15:27
Forum: Questions
Topic: resolved: new syntax files... ugh!!
Replies: 10
Views: 2452

Re: resolved: new syntax files... ugh!!

Fixed in next release (v16.12). Thanks!
by Rickard Johansson
01 Feb 2024 15:16
Forum: Features
Topic: DONE: Capitalize
Replies: 5
Views: 397

Re: Capitalize

Added a "Capitalize" button in next release (v16.12). Thanks!
by Rickard Johansson
26 Jan 2024 09:22
Forum: General discussion
Topic: Resolved: odd screen-shifting issue
Replies: 5
Views: 548

Re: odd screen-shifting issue

Thanks! I still have a ton of questions. But a screenshot, when it happens, would probably answer them all...
by Rickard Johansson
25 Jan 2024 17:45
Forum: MPad
Topic: Version 1.31
Replies: 0
Views: 482

Version 1.31

----------------------------------------------------------- Version 1.31 (Jan 25, 2024) ----------------------------------------------------------- Move to next/previous word (Ctrl+Right/Left) Changed how this works. It should work similarly to how it works in other editors like VS Code or Sublime. ...
by Rickard Johansson
25 Jan 2024 13:55
Forum: Next release
Topic: Version 16.11
Replies: 0
Views: 456

Version 16.11

----------------------------------------------------------- Version 16.11 (Jan 25, 2024) ----------------------------------------------------------- Move to next/previous word (Ctrl+Right/Left) Added options to change the behavior. - Always move to beginning of word. This will include some symbols a...
by Rickard Johansson
25 Jan 2024 10:57
Forum: Bugs
Topic: Syntax Editor Color Weirdness
Replies: 2
Views: 347

Re: Syntax Editor Color Weirdness

Fixed in next release (v16.11). Thanks!
by Rickard Johansson
23 Jan 2024 23:00
Forum: Scripts
Topic: TMemIniFile
Replies: 3
Views: 927

Re: TMemIniFile

It's fixed in the next release (v16.11). I tested with the code below (using v16.11) and it works fine. // JScript TMemIniFile tiIni = TMemIniFile.Create ("TabToColumn_Settings.ini"); var nTabColumn = 10; tiIni.WriteInteger("Settings", "TabToColumn", nTabColumn); tiIni....
by Rickard Johansson
23 Jan 2024 21:41
Forum: Bugs
Topic: CHM Help file
Replies: 3
Views: 242

Re: CHM Help file

I've tried on Windows 10 x64 and it seems to work fine. Just make sure the file is placed in a non-write protected folder. Don't put it inside the program files folder.
by Rickard Johansson
23 Jan 2024 21:24
Forum: Scripts
Topic: Error Reporting
Replies: 2
Views: 203

Re: Error Reporting

InputBox() is a method inside the MainApp object, so it should be MainApp.InputBox("Hello", "world!"); The text cursor is positioned at the error. So the line and column will be the same as the current cursor position... // JScript var nTabColumn = StrToInt (MainApp.InputBox(&quo...
by Rickard Johansson
23 Jan 2024 18:31
Forum: General discussion
Topic: Resolved: odd screen-shifting issue
Replies: 5
Views: 548

Re: odd screen-shifting issue

What do you mean by screen shifting right? Is the entire desktop, with all applications and taskbar, shifted right?
by Rickard Johansson
23 Jan 2024 16:09
Forum: Features
Topic: DONE: Change color on hint popups
Replies: 2
Views: 1849

Re: Change color on hint popups

Added in next release (v16.11). Thanks!

Skärmbild 2024-01-23 160734.png
Skärmbild 2024-01-23 160734.png (21 KiB) Viewed 322 times
by Rickard Johansson
23 Jan 2024 14:56
Forum: Bugs
Topic: FIXED: NextWordNoSymbolsAction - tweak requested
Replies: 4
Views: 383

Re: NextWordNoSymbolsAction - tweak requested

Use the new options in v16.11 instead (when released). Note that you have to switch back to the original keyboard actions for the options to take effect.
by Rickard Johansson
23 Jan 2024 14:53
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 715

Re: [v16.10] CTRL-RIGHT bug

Fixed in next version (v16.11). Also added new options to change the behavior.
by Rickard Johansson
23 Jan 2024 14:43
Forum: Features
Topic: DONE: Move to next/previous word (CTRL+Right/Left)
Replies: 2
Views: 298

Re: Move to next/previous word (CTRL+Right/Left)

Already done in next version (v16.11). Thanks!