Search found 150 matches

by incoronado
Sun Nov 30, 2008 7:31 pm
Forum: Bug Reports
Topic: Girder 5
Replies: 31
Views: 6858

Re: Girder 5

FYI. The new GirderBridgeDevice.dll may have fixed girder 5, but broke girder 3. I have never found it advantageous to upgrade my version of girder. Girder versions 4-5 were considerably overpriced for what I needed it to do. I found an old version of the GirderBridgeDevice.dll and I have it working...
by incoronado
Sun Feb 17, 2008 5:10 pm
Forum: VB Scripts
Topic: Create "Cover Flow" art on the fly
Replies: 14
Views: 13109

Yes.

COM + instructions.

http://www.imagemagick.org/script/ImageMagickObject.php

I have attached a vbscript example that will give you an idea on how to use it .
by incoronado
Fri Feb 15, 2008 8:53 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

Yes. I agree. If I remember right, I even tested this and found it to occasionally lock up., or time out, as Richard mentions went it got caught in a long SQL write operation. It is possible for a script to get called recursively or write another script later on that uses the same database silmultan...
by incoronado
Thu Feb 14, 2008 8:56 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

In that context, makes a little sense.
by incoronado
Thu Feb 14, 2008 8:28 pm
Forum: VB Scripts
Topic: Create "Cover Flow" art on the fly
Replies: 14
Views: 13109

I like were you are going with this. I have started creating a few scripts using imageMagick with the intention of creating a slideshow script that used a coverflow concept. ImageMagick is VERY powerful and there is a COM+ implementation that allows you to access almost all of of its functionality i...
by incoronado
Thu Feb 14, 2008 8:15 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

I glad to see you are making some great additions and learning along the way. I will look through the code tonight and get you some answers. There was a reason I create and destroy the objDB every pass through the message handler. The reason escapes me at the moment, but a trip through the code will...
by incoronado
Thu Jan 31, 2008 8:19 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

Replace Sub ShowLibrarySelectedSong in the script to this. This should work for ya. Sub ShowLibrarySelectedSong Dim SqlStr, r If GetPropertyValue ("Jukebox.Tag Type") = "title" Then SqlStr = "select * from songs where id = " _ & Right(GetPropertyValue ("Jukebox...
by incoronado
Mon Jan 14, 2008 8:00 pm
Forum: General
Topic: serial device disables on reboot
Replies: 5
Views: 770

It was what I suspected. I added a 45 second delay to the startup batch file and all works fine. No sleep command in batch programming, though, so I had to emulate one using ping 127.0.0.1 -n 45>NUL
by incoronado
Mon Jan 14, 2008 7:12 pm
Forum: General
Topic: serial device disables on reboot
Replies: 5
Views: 770

Exiting HB and loading it back without a reboot leaves them enabled. After a reboot they come back disabled. I just tested it. I'm running an 8 port octopus serial card. The ports do not change. All I have to do is to go into HB and enable without changing any other options to make it work after reb...
by incoronado
Mon Jan 14, 2008 6:21 pm
Forum: General
Topic: serial device disables on reboot
Replies: 5
Views: 770

serial device disables on reboot

HB not saving serial devices enabled status on reboot. I have to go in and enable them on every reboot.
by incoronado
Tue Nov 06, 2007 10:56 pm
Forum: VB Scripts
Topic: THC Jukebox - Keyboard script
Replies: 9
Views: 9313

No. I use a task that triggers the keyboard script on Keyboard.Keyboard Key Not Equal to '#$R' (or some value it will never be). The keyboard panel is designed so the Enter key should close the panel. At this point the Keyboard buffer will contain whatever you typed previous the selecting the enter ...
by incoronado
Tue Oct 16, 2007 7:30 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

Regarding So I'm thinking that one way to accomplish this would be to use multiple copies of the jukebox script and null device (I'll already have multiple winamps). Feels a little kludgy. . .I'm going to read the script a little more closely to see if it could be changed to track all the zones simu...
by incoronado
Sat Oct 06, 2007 11:08 pm
Forum: Feature Requests
Topic: panel open style in scripts
Replies: 2
Views: 5923

panel open style in scripts

Three things on panel open style... - Add ability to open panel with a given style in scripts. - Add the ability to close panels using this same functionality (Script too) - Scroll background with panel objects. Currently only scrolls background. Objects are drawn after panel is completely extended....
by incoronado
Sat Oct 06, 2007 10:37 pm
Forum: Feature Requests
Topic: Ticker Control
Replies: 1
Views: 1039

I think this could be done using a script really easily. Use two properties. One for the entire message and one for the text shown in the siding window that changes it's position every X milliseconds . This is pretty easy to do using a circular queue. I might try and write one for you. I was looking...
by incoronado
Tue Sep 04, 2007 2:51 pm
Forum: VB Scripts
Topic: THC Jukebox
Replies: 52
Views: 39500

Yes. The source/script is available in the HBX file. The quick and dirty.... The import function ---------------------------- * songs.cmd is called from WScript.Shell object in VBSCRIPT * songs.cmd uses a command line utility called id3.exe (not Vista compatible) to dump tags to a text file (songs.t...