Thread: Problems With V6

  1. #1
    Registered User
    Join Date
    Sep 2005
    Posts
    2

    Problems With V6

    I have just purchased Borland Personal edition V6 for my A2 project at school however when ever i try to tun any program I find the same error occuring An Unresolved external linker error to form 1 has any body got an idea i could realy do with the help

  2. #2
    ^ Read Backwards^
    Join Date
    Sep 2005
    Location
    Earth
    Posts
    282
    Code:
    #include <iostream>
    using namespace std;
    
    
    int main()
    {
    
    
    	cout << "Does this compile and link fine?";
    
      return 0;
    }
    Try that, and then copy and paste the error.

  3. #3
    Registered User
    Join Date
    Sep 2005
    Posts
    2
    Ime getting the following error with that

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

    and

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

  4. #4
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    Try starting again with a console project - it looks to me like you have a half-cooked GUI project of some sort with all that form:: stuff.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. No clue how to make a code to solve problems!
    By ctnzn in forum C Programming
    Replies: 8
    Last Post: 10-16-2008, 02:59 AM
  2. C Pointers Problems
    By mhelal in forum C Programming
    Replies: 8
    Last Post: 01-10-2007, 06:35 AM
  3. String Manipulation problems -_-
    By Astra in forum C Programming
    Replies: 5
    Last Post: 12-13-2006, 05:48 PM
  4. Rendering problems (DirectX?)
    By OnionKnight in forum Tech Board
    Replies: 0
    Last Post: 08-17-2006, 12:17 PM
  5. DJGPP problems
    By stormswift in forum C Programming
    Replies: 2
    Last Post: 02-26-2002, 04:35 PM