Search found 8 matches

Go to advanced search

by Emerica82
06 Mar 2007 11:39
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 playlist.items.remove() removing all..
Replies: 6
Views: 4198

you the man! :)

Here i was thinking it was a zero or 1 based index.
Checked what add() was returning and it was 9, 10, 11
So tried with the proper id's and things appear to be running well now.

Thanks so much.
by Emerica82
06 Mar 2007 05:26
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 playlist.items.remove() removing all..
Replies: 6
Views: 4198

I'm using visual C# 2005 express, rebuilt the solution to no avail. Then thought I would remove the control and references and re-add it. Latest nightly builds give me the above Fail error, if I go back to 0.8.6a it removes all the items and stops playback due to no entries as per the original post....
by Emerica82
04 Mar 2007 01:20
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 playlist.items.remove() removing all..
Replies: 6
Views: 4198

I grabbed a build from /build/win32/trunk-20070304-0001

Now both of the remove functions fail

Error HRESULT E_FAIL has been returned from a call to a COM component.
by Emerica82
03 Mar 2007 22:44
Forum: Web and scripting
Topic: Use VLC With Visual Basic 6
Replies: 13
Views: 35138

by using the options array which in the example provided is null VLCPlugin1.addTarget "http://vthr.videolan.org/~dionoea/vlc-plugin-demo/streams/sw_h264.asf", Null, VLCPlayListAppendAndGo, -666 I can only give a C# example but string[] options = { ":aspect-ratio=16:10", ":ht...
by Emerica82
02 Mar 2007 01:51
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 playlist.items.remove() removing all..
Replies: 6
Views: 4198

C# Activex Vlcplugin2 playlist.items.remove() removing all..

Hello again, Now that my logging issues have been solved, I've been running into another problem. When using playlist.items.remove(int) or playlist.removeitem(int) All of the playlist entries are being removed, not just the targeted item. Has anyone been experiencing the same issue? I tried to work ...
by Emerica82
28 Feb 2007 21:20
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 Log messages method not implemented
Replies: 6
Views: 4607

Seem to be the case, I commented out the count statement and stalls went away.
Thanks
by Emerica82
28 Feb 2007 16:46
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 Log messages method not implemented
Replies: 6
Views: 4607

if (axVLCPlugin21.log.messages.count > 0) { AXVLC.IVLCMessageIterator iter = axVLCPlugin21.log.messages.iterator(); while (iter.hasNext) { AXVLC.IVLCMessage msg = iter.next(); vlclog.AppendText(msg.severity + " - " + msg.type + " - " + msg.name + " - " + msg.message + ...
by Emerica82
16 Feb 2007 18:44
Forum: Web and scripting
Topic: C# Activex Vlcplugin2 Log messages method not implemented
Replies: 6
Views: 4607

C# Activex Vlcplugin2 Log messages method not implemented

if (axVLCPlugin21.log.messages.count > 0) { foreach (AXVLC.IVLCMessage msg in axVLCPlugin21.log.messages) { System.Console.WriteLine(msg.message); } } axVLCPlugin21.log.messages.clear(); This is throwing a Method not implemented error on axVLCPlugin21.log.messages Any idea when this might be implem...

Go to advanced search