Форум программистов, компьютерный форум, киберфорум
C++ Builder
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 5.00/7: Рейтинг темы: голосов - 7, средняя оценка - 5.00
0 / 0 / 0
Регистрация: 23.11.2019
Сообщений: 1
1

[LINK Error] Error: Unresolved external - C++

23.11.2019, 01:50. Показов 1428. Ответов 2
Метки с++ (Все метки)

Author24 — интернет-сервис помощи студентам
[LINK Error] Error: Unresolved external "TForm2" referenced from "~Рабочий стол\моя\PROJECT1MAEVSKI.OBJ"

Добавлено через 1 минуту
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
//---------------------------------------------------------------------------
 
#include <vcl.h>
#include <io.h>
#include <stdio.h>
#pragma hdrstop
 
#include "Unit1Maevski.h"
#include "Unit2Maevski.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
struct Item
{ char Type[512],Name[512],Char[1980], Expl[1024];
  float Price;
}
ItemZap;
int NumofItems;
int SizeofItem= sizeof(ItemZap);
FILE*Database;
 
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
        : TForm(Owner)
{ StringGrid1->Cells[0][0]="Тип элемента";
  StringGrid1->Cells[1][0]="Марка";
  StringGrid1->Cells[2][0]="Характеристики";
  StringGrid1->Cells[3][0]="Условия эксплуатации";
  StringGrid1->Cells[4][0]="Цена";
 
  StringGrid2->Cells[0][0]="Тип элемента";
  StringGrid2->Cells[1][0]="Марка";
  StringGrid2->Cells[2][0]="Характеристики";
  StringGrid2->Cells[3][0]="Условия эксплуатации";
  StringGrid2->Cells[4][0]="Цена";
 
  Database= fopen("database.db","rb");
  int Descr= fileno (Database);
  int SizeofFile= filelength (Descr);
  NumofItems= SizeofFile/SizeofItem;
  Item*ArrayofZap = new Item[NumofItems];
  StringGrid1->RowCount=NumofItems+1;
  fread (ArrayofZap, SizeofItem, NumofItems, Database);
  for (int i=0;i<NumofItems;i++)
  {  StringGrid1->Cells[0][i+1]= ArrayofZap[i].Type;
     StringGrid1->Cells[1][i+1]= ArrayofZap[i].Name;
     StringGrid1->Cells[2][i+1]= ArrayofZap[i].Char;
     StringGrid1->Cells[3][i+1]= ArrayofZap[i].Expl;
     StringGrid1->Cells[4][i+1]= FloatToStrF(ArrayofZap[i].Price,ffFixed, 6, 2);
   }
   fclose(Database);
}
//---------------------------------------------------------------------------
 
void __fastcall TForm1::Button1Click(TObject *Sender)
{  Database = fopen("database.db","ab");
   strcpy(ItemZap.Type, Edit1->Text.c_str());
   strcpy(ItemZap.Name, Edit2->Text.c_str());
   strcpy(ItemZap.Char, Edit3->Text.c_str());
   strcpy(ItemZap.Expl, Edit4->Text.c_str());
   ItemZap.Price= StrToFloat(Edit5->Text);
   fwrite(&ItemZap, SizeofItem, 1, Database);
   fclose (Database);
   StringGrid1->RowCount++;
   StringGrid1->Cells[0][StringGrid1->RowCount-1]= ItemZap.Type;
   StringGrid1->Cells[1][StringGrid1->RowCount-1]= ItemZap.Name;
   StringGrid1->Cells[2][StringGrid1->RowCount-1]= ItemZap.Char;
   StringGrid1->Cells[3][StringGrid1->RowCount-1]= ItemZap.Expl;
   StringGrid1->Cells[4][StringGrid1->RowCount-1]= FloatToStrF (ItemZap.Price, ffFixed, 6, 2);
   NumofItems++;
}
 
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
  AnsiString TypeS = Edit6->Text;
  int c= 0;
  for (int i= 1;i<=NumofItems;i++)
  {  if (StringGrid1->Cells[0][i] ==TypeS)
     {  c++;
        StringGrid2->Rows[c] = StringGrid1->Rows[i];
      }
   }
   if (c!=0)
     {  StringGrid1->Visible = false;
        StringGrid2->Visible = true;
        Button2->Visible = false;
        Button3->Visible = true;
      }
     else
     {  ShowMessage ("Элементы данного типа не найдены");
      }
}
//---------------------------------------------------------------------------
 
void __fastcall TForm1::Button3Click(TObject *Sender)
{ StringGrid1->Visible = true;
  StringGrid2->Visible = false;
  Button2->Visible = true;
  Button3->Visible = false;
 
}
//---------------------------------------------------------------------------
 
 
void __fastcall TForm1::Button5Click(TObject *Sender)
{
  Form1->Close();
}
//---------------------------------------------------------------------------
 
 
 
 
 
 
void __fastcall TForm1::Button4Click(TObject *Sender)
{
  Form2->Show();
}
//---------------------------------------------------------------------------
Добавлено через 1 минуту
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//---------------------------------------------------------------------------
 
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM("Unit1Maevski.cpp", Form1);
USEFORM("Unit2Maevski.cpp", Form2);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
        try
        {
                 Application->Initialize();
                 Application->CreateForm(__classid(TForm1), &Form1);
                 Application->CreateForm(__classid(TForm2), &Form2);
                 Application->Run();
        }
        catch (Exception &exception)
        {
                 Application->ShowException(&exception);
        }
        catch (...)
        {
                 try
                 {
                         throw Exception("");
                 }
                 catch (Exception &exception)
                 {
                         Application->ShowException(&exception);
                 }
        }
        return 0;
}
//---------------------------------------------------------------------------
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
23.11.2019, 01:50
Ответы с готовыми решениями:

[LINK Error] Error: Unresolved external
Error: Unresolved external 'g_hInstance' referenced from C:\USERS\ADMIN\DESKTOP\EKN\UNIT1.OBJ...

Ошибка [ILINK32 Error] Error: Unresolved external '_Form5' referenced from
Все отлично работало, ничего не трогал, но вдруг появилась эта ошибка Error: Unresolved...

[ilink32 Error] Error: Unresolved external '__fastcall TForm1::SetFolder(System::AnsiStringT<0>)
protected: AnsiString __fastcall GetFolder(void); void __fastcall SetFolder(AnsiString...

Ошибка [ilink32 Error] Error: Unresolved external
Unit1.h: //--------------------------------------------------------------------------- #ifndef...

2
Вездепух
Эксперт CЭксперт С++
12761 / 6644 / 1788
Регистрация: 18.10.2014
Сообщений: 16,801
23.11.2019, 01:52 2
Цитата Сообщение от reduh Посмотреть сообщение
#include "Unit1Maevski.h"
#include "Unit2Maevski.h"
По-видимому в этих файлах объявлена глобальная переменная Form2, которую вы не определили.
0
Практикантроп
4838 / 2724 / 532
Регистрация: 23.09.2011
Сообщений: 5,789
23.11.2019, 13:48 3
reduh, ошибка не воспроизводится. Даже на BCB5; даже с такими неудобными путями (с кириллицей) всё компилируется и запускается без вашей ошибки. ( с учётом Компиляция программы под С++ Builder, чтобы работала на других компьютерах ).
Попробуйте пересобрать проект.
0
23.11.2019, 13:48
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
23.11.2019, 13:48
Помогаю со студенческими работами здесь

Ошибка [ILINK32 Error] Error unresolved external
Ребят,подскажите,пожалуйста, что от меня хочет компилятор и как это сделать?? при компиляции...

[ILINK32 Error] Error: Unresolved external '__fastcall TMainForm::MaskEdit1Change(System::TObject *)' referenced from C:\LCARD\MAIN.OBJ
одна ошибка просто достала, наверняка где то уже была тема про эту ошибку, но не могу найти ...

[ilink32 Error] Error: Unresolved external
Здравствуйте! Буквально вчера создал и сохранил проект. Сегодня открыл и попытался добавить...

[ILINK32 Error] Error: Unresolved external...
Есть библиотека: #include &lt;vcl.h&gt; class EK { private: public: class A; };


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru