Bug reports

English main discussion
  • Author
  • Message
Offline
Posts: 767
Joined: Mon Sep 28, 2009 10:03 am
Location: Minsk, Belarus

Post by se7h »

Yes, but pressing the middle mouse button on the editing window, should not open a new tab. This should work just on the tab bar.
I have a new tab is opened only when I click middle button on tab bar

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

se7h wrote:I have a new tab is opened only when I click middle button on tab bar
See above, what was written on the subject.

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

If you hide AkelPad window by using the script WindowsList.js, and then you show, it disappears tool bar and status bar.
The same effect occurs using WinLister.exe by Nir Sofer: http://www.nirsoft.net/utils/winlister.html

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

KDJ
Use 5 /*SW_SHOW*/ after 0 /*SW_HIDE*/.

Code: Select all

var hMainWnd=AkelPad.GetMainWnd();
var oSys=AkelPad.SystemFunction();

oSys.Call("user32::ShowWindow", hMainWnd, 0 /*SW_HIDE*/);
WScript.Echo("Message");
oSys.Call("user32::ShowWindow", hMainWnd, 5 /*SW_SHOW*/);
At the worst you can use AKD_RESIZE.

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

Instructor

Run AkelPad in a maximized window, MDI mode.
Open the file, for example Hide_Show_Test.js.
Image

Run script Hide_Show_Test.js.
Effect: no ToolBar, no TabBar and no StatusBar.
Image

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

KDJ wrote:Run AkelPad in a maximized window, MDI mode...
Fixed.

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

In AkelPad version 4.7.0., it isn't possible to save opened NTFS file stream, eg. C:\abc.txt:stream
When you try to save the stream, this message is displayed:
Cannot open file "C:\abc.txt:stream".
In version 4.6.5 it worked correctly.

Offline
Posts: 2247
Joined: Tue Aug 07, 2007 2:03 pm
Location: Vinnitsa, Ukraine

Post by FeyFre »

KDJ, already reported in Russian branch of forum ;)

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

Version 4.7.0.
Run AkelPad.exe, and then press Ctrl+O keys.
In the "Open" window does not work the keyboard.

Offline
Posts: 2247
Joined: Tue Aug 07, 2007 2:03 pm
Location: Vinnitsa, Ukraine

Post by FeyFre »

Correcting a bit KDJ's report: Open file dialog losts its focus(if refocus it with mouse or ALT+TAB - keyboard works).

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

KDJ wrote:In AkelPad version 4.7.0., it isn't possible to save opened NTFS file stream, eg. C:\abc.txt:stream...
Fixed.
KDJ wrote:In the "Open" window does not work the keyboard.
Fixed.

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

Instructor wrote:
KDJ wrote:Run AkelPad in a maximized window, MDI mode...
Fixed.
It have not been corrected, this error still occurs.
viewtopic.php?p=15147&hilit=#p15147

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

KDJ
Fixed, again :)

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

Instructor
Thank you very much. Now everything works beautifully.

But still I found two small bugs.
1.
Run AkelPad from command line in a hidden window and script WindowsList.js:
AkelPad.exe /Show(0) /Call("Scripts::Main", 2, "WindowsList.js") /quit
If you now show AkelPad window (button "Hide/Show"):
oSys.Call("user32::ShowWindow", hMainWnd, 5 /*SW_SHOW*/);
this window looks strangely.
2.
If in edit window is opened NTFS stream, then does not work commands "Open" and "Save As".

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

In version 4.7.1 AkelPad does not save settings:
Editor 1 -> Tab size
Editor 1 -> Spaces
Post Reply