Featured Posts

HDDPhysic v1.1.0 is released! Today we've released a new updated version of HDDPhysic (v1.1.0) Here is what’s new in this version: improved hardware serial extraction in Vista and Windows 7. you don't need to have...

Readmore

Promote software on your website and get paid for it!... Join our affiliates network and get 25% commission on every sale you refer! Become a rlByte Software affiliate today!   To start selling, all you need to do is display product information...

Readmore

Special discount offer: -20% on purchase   Starting from today (27 April 2010 ) we offer a 20% discount for two of our products if they are purchased together: HDDPhysic : get the physical vendor information from the computer hard...

Readmore

Special discount offer: -20% on purchase   Starting from today (27 April 2010 ) we offer a 20% discount for two of our products if they are purchased together: HDDPhysic : get the physical vendor information from the computer hard...

Readmore

Subs Grabber v1.1.0.62 is released!  Today we've released a new updated version of Subs Grabber v1.1.0.62. Here is what's new in this version: Fixed: some utf8 characters doesn't display right in the movie list Modified: working...

Readmore

  • Prev
  • Next

Subs Grabber Quick Fix

Posted on : 18-02-2010 | By : rlByte Team | In : Subs Grabber

1

New Subs Grabber quick fix has been released:
Fixed: on podnapisi.net server search results are displayed, but download fails
New: auto updater will now display what’s new information when a new release/fix is available for download

If you have auto updater enabled Subs Grabber will let you know if you have the latest version.

Download Subs Grabber from here (reinstall over the old one)

Subs Grabber (subtitle searching tool) v1.0.0 Launched

Posted on : 14-02-2010 | By : rlByte Team | In : Subs Grabber, rlByte News

0

Subs Grabber can be used to search for and download subtitles. It is using the database of the most popular subtitle websites and can find subtitles for movies and television series in various formats such as srt or sub which are supported by various media players. Providing a friendly interface with different visual styles, Subs Grabber will be the perfect tool for subtitle searching and matching for your movies.

  • - fastest search engine on 8 subtitles servers (more to be added)
  • - release names highlight (for best results add the movie file when searching for subs)
  • - perfect match subtitles (movies linked with video file)
  • - mass download
  • - shell integration for quick searching
  • - IMDb info grabbing
  • - automatically unpack subtitles after grabbing them
  • - movie cover/poster on search results (ready to be grabbed as well)
  • - search for a subtitle in almost any language: Albanian, Arabic, Belarus, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, German, Hungarian, Italian, Japanese, Korean, Latvian, Norwegian, Polish, Portuguese, Portuguese Brazilian,Romanian, Russian, Serbian… and many more
  • - upload your subtitles linked with video file on subs-grabber.rlbyte.com server

…and many more, just give it a try!

Screenshots here

Download Subs Grabber from here

USBPhysic C# example (source code sample)

Posted on : 09-02-2010 | By : rlByte Team | In : USBPhysic, rlByte News

2

 In order to get the usb storage device (external portable Hard Drives, flash/pen/key drive etc) serial number and other manufacturer information (NOT volume serial, only the unique one, the one that will not change after a format, physical one) using our USBPhysic library and C# (CSharp) you need to do the following 3 easy steps:

(1) Load USBPhysic library and declare the imported library functions :

 namespace USBPhysic_Example
{
    public partial class Form1 : Form
    {
        //load the library
        [DllImport("USBPhysic")]
        public static extern int Init(string sUser, string sRegCode);

        [DllImport("USBPhysic")]
        public static extern int GetUSBPhysicInfo(int diskIndex, int InfoType, StringBuilder pHddInfo);

        public Form1()
        {
            InitializeComponent();
        }

(2) Call the Init function to initialize the user computer usb storage devices

       private void Form1_Load(object sender, EventArgs e)
        {
            int USBDisks = Init("your reg code here", "your reg code here");

            if (USBDisks > 0)
            {
                for (int i = 0; i < USBDisks; i++)
                {
                    comboBox1.Items.Add(i);
                }
                comboBox1.SelectedIndex = 0;
            }
        }

(3) Now that you have the total hard drives count you can query for the manufacturer information passing the usb device index to the GetPhysicInfo function:

       private void button1_Click(object sender, EventArgs e)
        {
            const int nChars = 1024;
            StringBuilder Buff = new StringBuilder(nChars);
           
            //0 = Get SerialNumber
            if (GetUSBPhysicInfo(Int32.Parse(comboBox1.Items[comboBox1.SelectedIndex].ToString()), 0, Buff) > 0)
                textBox1.Text = Buff.ToString();
            else
                textBox1.Text = "n/a";

            //1 = Get product name
            if (GetUSBPhysicInfo(Int32.Parse(comboBox1.Items[comboBox1.SelectedIndex].ToString()), 1, Buff) > 0)
                textBox2.Text = Buff.ToString();
            else
                textBox2.Text = "n/a";

            //2 = Get USB Manufacturer
            if (GetUSBPhysicInfo(Int32.Parse(comboBox1.Items[comboBox1.SelectedIndex].ToString()), 2, Buff) > 0)
                textBox3.Text = Buff.ToString();
            else
                textBox3.Text = "n/a";

            //3 = Get drive letter mapped on Windows
            if (GetUSBPhysicInfo(Int32.Parse(comboBox1.Items[comboBox1.SelectedIndex].ToString()), 3, Buff) > 0)
                textBox4.Text = Buff.ToString();
            else
                textBox4.Text = "n/a";
           
        }

screenshot

  A complete project with source code example for using USBPhysic component to get usb device (hard disk, storage device pen etc) physical information with CSharp (C#) is available in the resources area of the product (here).