FORM.Release

Discuss anything else that does not suite other forums.

Moderator: Rathinagiri

Post Reply
User avatar
AUGE_OHR
Posts: 2093
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

FORM.Release

Post by AUGE_OHR »

hi

what if i have a ActiveX in a FORM which might have a active Session :?:

do i need to "stop" all ActiveX :?:
if Yes how :idea:

Code: Select all

PROCEDURE DoHTMLrelease()
   ShowHtml.Activex_1.Release
   ShowHtml.Release
RETURN
give me a Error.
Release a window in its own 'on release' procedure or release the main window in any 'on release' procedure is not allowed. Program terminated
have fun
Jimmy
User avatar
danielmaximiliano
Posts: 2625
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: FORM.Release

Post by danielmaximiliano »

never destroyed the object in real time, but its container should be destroyed by assigning that space with null value

Code: Select all

#define c715F 'HASAR.Fiscal.1'
function main
o715F := CreateObject( c715F )
*****
******
o715F := Nil
Return
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
User avatar
AUGE_OHR
Posts: 2093
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: FORM.Release

Post by AUGE_OHR »

hi,
danielmaximiliano wrote: Tue Dec 17, 2019 9:57 am never destroyed the object in real time, but its container should be destroyed by assigning that space with null value
OK, that i understood, THX
have fun
Jimmy
Post Reply