Recent content by Kvanch

  1. K

    I can't install my printer in windows 10

    I enabled USB serial ports and that worked! Thank you very much Elixer!
  2. K

    I can't install my printer in windows 10

    I installed the Windows 7 Driver in compatability mode but it didn't work out for me.
  3. K

    I can't install my printer in windows 10

    I tried to work using compatibility mode. It doesn't work either.. I don't seem to install it as a network printer. I installed Windows 7 with drivers for Lexmark X 2500 Series in Oracle VM VirtualBox. The installation seems fine but this time it gives me, "Communication not avaible: The...
  4. K

    I can't install my printer in windows 10

    Thanks.. I tried the Lexmark support site. It doesn't work..
  5. K

    I can't install my printer in windows 10

    Hi, I'm using Windows 10 Home edition. How can I use my Lexmark x2550 with Windows 10. I installed the Lexmark 2500 series driver but it is not recognized..
  6. K

    How could I create more than one Image object

    Public Function CreateNewControl(ParentForm As Form, ClassName As String, Name As String) As Object Set CreateNewControl = ParentForm.Controls.Add(ClassName, Name) End Function Dim img(3) As Image Private Sub Command1_Click() Set img(0) = CreateNewControl(Form1, "vb.image", "Img0", "Img1"...
  7. K

    How could I create more than one Image object

    Hi, I am using Visual Basic 6. I've created Image object at run-time. But when I click the Command Button again an error message appears saying: Run-time error '727: There is already a control with the name 'Img' How can I bypass the error message above?