Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
[How to?] Call "EventOnMessage" inside "onClickEvent"
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
how to use LoadKeyboardLa...
by
majid.ebru
[
Today
at 07:36:45 am]
about sqldb postgresql LO...
by
gucao
[
Today
at 04:52:22 am]
NSApp.dockTile.setBadgeLa...
by
trev
[
Today
at 01:58:52 am]
LAMW - "This app has a bu...
by
Mongkey
[
Today
at 01:12:23 am]
Can't create new LAMW Pro...
by
Sirius Black
[May 16, 2022, 11:59:16 pm]
Dark mode class...
by
Wallaby
[May 16, 2022, 11:51:29 pm]
laztoapk 0.9.0.43 is avai...
by
jmpessoa
[May 16, 2022, 10:49:12 pm]
Validating user input
by
dukester
[May 16, 2022, 10:43:46 pm]
increment filename if exi...
by
Josh
[May 16, 2022, 08:34:47 pm]
install problem in Pas2J...
by
arirod
[May 16, 2022, 07:29:33 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [How to?] Call "EventOnMessage" inside "onClickEvent" (Read 3546 times)
codeman
Jr. Member
Posts: 78
[How to?] Call "EventOnMessage" inside "onClickEvent"
«
on:
December 01, 2021, 04:13:31 am »
Hello, how to call eventOnMessage inside onClick Event??
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
EventOnMessage
(
var
Msg
:
tagMSG
;
var
Handled
:
Boolean
)
;
var
NrFiles
,
i
:
Integer
;
Buffer
:
Array
[
0
..
255
]
of
Char
;
begin
try
Handled
:
=
Msg
.
Message
=
WM_DROPFILES
;
if
not
Handled
then
exit
;
attachedSelected
:
=
true
;
NrFiles
:
=
DragQueryFile
(
Msg
.
Wparam
,
$FFFFFFFF
,
Buffer
,
256
)
;
.....
.....
finally
DragFinish
(
Msg
.
WParam
)
;
end
;
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
button1Click
(
Sender
:
TObject
)
;
begin
???? EventOnMessage
(
??
)
;
Everything i tried
,
I
get
that compiling error
(
Types
of
actual
and
formal
var
parameters must be identical
)
end
;
Thanks for considering my request!
«
Last Edit: December 01, 2021, 06:21:30 pm by codeman
»
Logged
Lazarus v2.02 Win10
Mr.Madguy
Hero Member
Posts: 762
Re: [How to?] Call "EventOnMessage" inside "onClickEvent"
«
Reply #1 on:
December 01, 2021, 04:45:18 am »
Have you tried to do it standard way?
Code: Pascal
[Select]
[+]
[-]
procedure
WMDropFiles
(
var
Message
:
TMessage
)
;
message WM_DROPFILES
;
I haven't checked, but may be there is existing handler for this message?
Logged
29.12.2021 - migration to DynamicData 4.1 is completed - complete overhaul of data access driver.
My project still requires full Delphi 2009 support to be ported to Lazarus.
It's time to finally do it, because Delphi 2009 is 13 years old.
codeman
Jr. Member
Posts: 78
Re: [How to?] Call "EventOnMessage" inside "onClickEvent"
«
Reply #2 on:
December 01, 2021, 06:21:53 pm »
Thank you both! Solved!
Logged
Lazarus v2.02 Win10
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
[How to?] Call "EventOnMessage" inside "onClickEvent"
TinyPortal
© 2005-2018