Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Exception : Access violation at address 05D90E45 in module 'isapi.dll'
#8
This may be unrelated but it is adviced that when you declare an object, you set its value to nil in onFormCreate

var
s: TBitmap;

onFormCreate
s:=nil;

This is useful in case you do not create the object by

s:= TBitmap.Create;

because when you free the object with

if assigned(s) then FreeAndNil(s);

you will get acces violation since "s" will not have "nil" value and so it will be undetected by "if assigned"
Reply


Messages In This Thread
RE: Exception : Access violation at address 05D90E45 in module 'isapi.dll' - by MrSpock - 01-12-2020, 07:18 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)