Posted: Sat Oct 27, 2018 3:43 am Post subject: Feature Request: Option to move record panel to another tab
I find that when I set the font size larger to make it easier to read the memory record panel becomes to small to use efficiently and I find myself constantly wishing I could just move it to another tab for more screen estate when I do go to it. _________________
Those who do not trust in christ to save them from their sins will only experience hell when their soul is released from it's earthly vessel.
Joined: 09 May 2003 Posts: 25704 Location: The netherlands
Posted: Sat Oct 27, 2018 4:18 am Post subject:
Save this code as a .lua file in the autorun folder of CE (or just run it in ce's lua engine window when you want)
Code:
local alw=createForm()
--alw.PopupMode='pmNone' --uncomment this if you don't want the stay on top behaviour
alw.Caption="Address List"
alw.BorderStyle="bsSizeable"
alw.ClientWidth=AddressList.Width
local alwsettings=getSettings('alw')
if alwsettings.Value['x']~='' then alw.left=tonumber(alwsettings.Value['x']) end
if alwsettings.Value['y']~='' then alw.top=tonumber(alwsettings.Value['y']) end
if alwsettings.Value['width']~='' then alw.width=tonumber(alwsettings.Value['width']) end
if alwsettings.Value['height']~='' then alw.height=tonumber(alwsettings.Value['height']) end
alw.OnCloseQuery=function(sender)
beep()
return false
end
alw.OnDestroy=function(sender)
alwsettings.Value['x']=alw.left
alwsettings.Value['y']=alw.top
alwsettings.Value['width']=alw.width
alwsettings.Value['height']=alw.height
end
AddressList.Parent=alw
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
Thanks I'll try that when I get home from work
Edit: Good enough for me, thanks :)
Btw is there a way repurpose the close button as a minimize button? _________________
Those who do not trust in christ to save them from their sins will only experience hell when their soul is released from it's earthly vessel.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum