Search found 6 matches

Go to advanced search

by Themasteratdelphi
16 Apr 2008 07:27
Forum: Web and scripting
Topic: Videolan ActiveX and Borland Delphi
Replies: 12
Views: 6815

Re: Videolan ActiveX and Borland Delphi

also with the whole 100% thingy... ive never had this happen but i suspect the ActiveX has not crashed but is processing data. Becuase your processor utilisation is at 100% the activeX has no more time to process itself than it already has, this causes your program to hang. And may look like a crash...
by Themasteratdelphi
16 Apr 2008 07:23
Forum: Web and scripting
Topic: Videolan ActiveX and Borland Delphi
Replies: 12
Views: 6815

Re: Videolan ActiveX and Borland Delphi

yes indeed VLC does work in delphi. If your having problems its not installed properly. the resize thing is a pain but it can be done manually, ie typing the numbers into top, left, width and height. Also you cannot click the player to select it you must click the name of the player within the objec...
by Themasteratdelphi
16 Apr 2008 07:05
Forum: Web and scripting
Topic: Controlling VLC ActiveX using Delphi
Replies: 6
Views: 6881

Re: Controlling VLC ActiveX using Delphi

The 'Flags' as they are called are pre-declared within one of the units for the vlcplugin. To see these simply press ctrl + left click on the flag you already have in playlist mode, think you have VLCPlaylistInsertAndGo but i cant see it. anyway this will take you to the correct unit and line where ...
by Themasteratdelphi
16 Apr 2008 06:51
Forum: Web and scripting
Topic: Delphi causes EOleExeption using SetPosition in VLC ActiveX
Replies: 21
Views: 13685

Re: Delphi causes EOleExeption using SetPosition in VLC ActiveX

if your sure the error is irrelavent of the intended outcome, ie it sill works even after the error is shown, then you can enclose the problem statement with the try and finally statements (used just like begin and end; except finally is also followed by end; ). for example: try //insert probelem st...
by Themasteratdelphi
16 Apr 2008 06:21
Forum: Web and scripting
Topic: how to close the window
Replies: 2
Views: 1176

Re: how to close the window

sorry dint read it all about boxes can be created from a normal form (click 'new form' button in delphi, it will name it form2) you can drop the components on and do what you like to it. to call it from an about menu you call [about_box_name].show; i am aware that a delphi wizard can automatically m...
by Themasteratdelphi
16 Apr 2008 06:16
Forum: Web and scripting
Topic: how to close the window
Replies: 2
Views: 1176

Re: how to close the window

the code to close a form in delphi is

[name_of_form].close;

to close an application there are two ways (1 more if using winAPI)

[name_of_main_form].close;

application.terminate;

hope this helps!

Go to advanced search