Показать сообщение отдельно
  #1  
Старый 12.01.2015, 00:20
Storyteller Storyteller вне форума
Прохожий
 
Регистрация: 12.01.2015
Сообщения: 2
Версия Delphi: Delphi Xe3
Репутация: 10
Восклицание Ошибка в Uses

В общем такая беда, выписывает ошибку "Cannot resolve unit name..."
Что делать, альфаскины установлены, пробовал удалять все кроме первой строки, что-бы делфи сам все проставил...всеравно то что он проставляет высвечивает ошибкой.
Код:
unit Unit1;

interface

uses  //Тут модули которые мы используем в программе
 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ComCtrls, acProgressBar, sListView,
  Vcl.StdCtrls, sRadioButton, sSpinEdit, sLabel, sButton, sGroupBox,
  sTabControl, sCheckBox, httpsend, TLHelp32, ssl_openssl, syncobjs, sDialogs, clipbrd,
  Vcl.ExtCtrls, sPanel, sSkinProvider, Vcl.Imaging.jpeg, sSkinManager, sEdit,
  Vcl.ImgList, acAlphaImageList, sGauge;

type
  TForm1 = class(TForm)    //Тут элементы которые находятся на нашей форме
    sGroupBox1: TsGroupBox;
    sButton1: TsButton;
    sButton2: TsButton;
    sButton3: TsButton;
    sButton4: TsButton;
    sGroupBox2: TsGroupBox;
    sRadioButton1: TsRadioButton;
    sRadioButton2: TsRadioButton;
    sSpinEdit1: TsSpinEdit;
    sSpinEdit2: TsSpinEdit;
    sGroupBox4: TsGroupBox;
    sGroupBox5: TsGroupBox;
    sGauge1: TsGauge;
    sOpenDialog1: TsOpenDialog;
    sGroupBox3: TsGroupBox;
    badlabel: TsLabel;
    errorlabel: TsLabel;
    proxylabel: TsLabel;
    sLabel3: TsLabel;
    sLabel4: TsLabel;
    sLabel5: TsLabel;
    sLabel6: TsLabel;
    sLabel7: TsLabel;
    sourcelabel: TsLabel;
    GoodLabel: TLabel;
    sskinmanager1: tsskinmanager;
    sListView1: TsListView;
Ответить с цитированием