Question : Where can I get a driver?

I have Windows 7. I have a Pinnacle 700-USB external video converter. It worked fine under XP. I need a Win7 driver. The companie's website does not give me what I want. Reaching them by phone is near impossible. Does anyone know where I can get a driver for the Pinnacle?

Answer : Where can I get a driver?

public int id { get; set; } is automatic property and doesn't create any private version. Just use "id" in your code. http://msdn.microsoft.com/en-us/library/bb384054.aspx

If you still want access private use traditional style.

private int _id;
public int id
{
get { return _id; }
set { _id = value;}
}
Random Solutions  
 
programming4us programming4us