Wojciech Warczakowski wrote:
>From: Wojciech Warczakowski
>is it possible to use something like InputBox in Lua?
>I'm using SciTE on WindowsXP.

Some time ago someone sent a message about a small dll he had done to offer 
InputBox and MessageBox functionality. It should be in the list's archives... 
Oh, ok, it's in:
http://scintilla.sourceforge.net/luawin.zip

Thanx, that's the point!
Tip for beginners how to use luawin:
http://lua-users.org/wiki/SciteInplaceCalculator

Nice, thank you for sharing.
Just a note: Windows Lua users often forget to use string literals for these clumsy Dos paths:

local Init =loadlib('C:\\Program Files\\Scintilla Text Editor\\luawin.dll', 'Init')

can become:

local Init =loadlib([[C:\Program Files\Scintilla Text Editor\luawin.dll]], 'Init')

More natural...

--
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  --  --  --  --  --  --  --  --  --  --  --  --  --
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to