×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

[Linker Error] for c++

[Linker Error] for c++

[Linker Error] for c++

(OP)
I was just trying to make sure I can get a program to run, so i typed in the simple display message

#include <iostream.h>

void main()
{
        cout << "Hello World";
}

I got 2 errors

[Linker Error] Unresolved external '_Form1' referenced from C:\PROGRAM FILES\BORLAND\CBUILDER5\PROJECTS\PROJECT2.OBJ

[Linker Error] Unresolved external 'TForm1::' referenced from C:\PROGRAM FILES\BORLAND\CBUILDER5\PROJECTS\PROJECT2.OBJ

Help me on this please.

RE: [Linker Error] for c++

I to have just started using Borland (C++ Builder 6) so this may not be much use but I have found that these errors are usually associated with methods defined in the header file but not existing in the main file.

RE: [Linker Error] for c++

I am new to C++ and have to do this project.I am using Borland C++ builder 5.0 .I need help and any pointers will be appreciated.
I basically have a log in form which directs you to the main form once authentication (username and password) is done.

I am trying to bypass the login form and want to go directly to the main form. This is the change i made in the WinMain

                Application->Initialize();
//Application->CreateForm(__classid(TfrmLogin), &frmLogin);
Application->CreateForm(__classid(TfrmMain), &frmMain);
               Application->Run();

The log in form works fine but when i try the main form, i get the following error

[Linker Error] Unresolved external '_frmMain' referenced from D:\NEWTESTING\MYProjectSHELL.OBJ

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources