Click here to Skip to main content
15,923,087 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to Create a child window in SDI(MFC) application? Pin
Abhijit D. Babar30-Dec-08 17:50
Abhijit D. Babar30-Dec-08 17:50 
QuestionNumber of Processors/Cores Pin
BobInNJ30-Dec-08 15:14
BobInNJ30-Dec-08 15:14 
AnswerRe: Number of Processors/Cores Pin
Maxwell Chen30-Dec-08 15:23
Maxwell Chen30-Dec-08 15:23 
AnswerRe: Number of Processors/Cores Pin
bob1697230-Dec-08 17:25
bob1697230-Dec-08 17:25 
GeneralRe: Number of Processors/Cores Pin
BobInNJ31-Dec-08 7:43
BobInNJ31-Dec-08 7:43 
GeneralRe: Number of Processors/Cores Pin
bob1697231-Dec-08 10:17
bob1697231-Dec-08 10:17 
Questionerror lnk2019 & lnk2001 Pin
lolokar30-Dec-08 14:48
lolokar30-Dec-08 14:48 
AnswerRe: error lnk2019 & lnk2001 Pin
Garth J Lancaster30-Dec-08 23:48
professionalGarth J Lancaster30-Dec-08 23:48 
I downloaded the distro and it was sparse on docco

in eo-1.0\win there's a README file, contents

"This directory contains the project files for Microsoft Visual C++

For Visual Studio 2003 (and 2005) you can go to the eo\win (this)
directory and open the eo.sln file. It allows for the compilation of 4
lib files (which will be placed in eo\win\lib\release and eo\win\lib\debug).
At the moment there are no project/solution files to compile the test
programs (eo\test) or applications (eo\app).

The library files correspond to the .a files under Unix/Linux.
eo.lib -> libeo.a
eoes.lib -> libes.a
eoga.lib -> libga.a
eoutils.lib -> libeoutils.a

The debug versions of the files are named eod.lib, eoesd.lib, eogad.lib and eoutilsd.lib."

Have you built the libraries ? (you'd need to do this first). Then in your tutorial project, you need to tell MS Visual Studio 2005 to link against eo.lib or eoes.lib or eoga.lib or eoutils.lib or their debug versions as shown..

[edit] looking at the makefile for tutorial 1 (see the LIBS line) :-

noinst_PROGRAMS = FirstBitGA FirstRealGA exercise1.3
FirstBitGA_SOURCES = FirstBitGA.cpp
FirstRealGA_SOURCES = FirstRealGA.cpp
exercise1_3_SOURCES = exercise1.3.cpp
LDADD = -L$(top_builddir)/src -L$(top_builddir)/src/ga -L$(top_builddir)/src/utils
LIBS = -lga -leoutils -leo
INCLUDES = -I$(top_srcdir)/src

you'd have to link against eoutils.lib and eo.lib (or eoutilsd.lib and eod.lib)

[/edit]

thats about all I can offer

'g'
GeneralRe: error lnk2019 & lnk2001 Pin
lolokar31-Dec-08 10:22
lolokar31-Dec-08 10:22 
GeneralRe: error lnk2019 & lnk2001 Pin
Garth J Lancaster31-Dec-08 12:01
professionalGarth J Lancaster31-Dec-08 12:01 
QuestionGetWindowRect() Coordinate Base [modified] Pin
Bram van Kampen30-Dec-08 14:01
Bram van Kampen30-Dec-08 14:01 
AnswerRe: GetWindowRect() Coordinate Base Pin
Garth J Lancaster30-Dec-08 14:29
professionalGarth J Lancaster30-Dec-08 14:29 
GeneralRe: GetWindowRect() Coordinate Base Pin
Bram van Kampen2-Jan-09 12:40
Bram van Kampen2-Jan-09 12:40 
GeneralRe: GetWindowRect() Coordinate Base Pin
Garth J Lancaster2-Jan-09 13:00
professionalGarth J Lancaster2-Jan-09 13:00 
GeneralRe: GetWindowRect() Coordinate Base Pin
Bram van Kampen2-Jan-09 14:16
Bram van Kampen2-Jan-09 14:16 
GeneralRe: GetWindowRect() Coordinate Base Pin
Garth J Lancaster2-Jan-09 15:06
professionalGarth J Lancaster2-Jan-09 15:06 
AnswerRe: GetWindowRect() Coordinate Base Pin
Paresh Chitte30-Dec-08 22:40
Paresh Chitte30-Dec-08 22:40 
GeneralRe: GetWindowRect() Coordinate Base Pin
Bram van Kampen2-Jan-09 12:42
Bram van Kampen2-Jan-09 12:42 
Questionpanel Pin
david bagaturia30-Dec-08 8:25
david bagaturia30-Dec-08 8:25 
AnswerRe: panel Pin
CPallini30-Dec-08 9:24
mveCPallini30-Dec-08 9:24 
GeneralRe: panel Pin
david bagaturia4-Jan-09 20:11
david bagaturia4-Jan-09 20:11 
QuestionCOM Port Threading Pin
Richard Andrew x6430-Dec-08 6:06
professionalRichard Andrew x6430-Dec-08 6:06 
AnswerRe: COM Port Threading Pin
david bagaturia30-Dec-08 8:32
david bagaturia30-Dec-08 8:32 
GeneralRe: COM Port Threading Pin
Bram van Kampen2-Jan-09 14:20
Bram van Kampen2-Jan-09 14:20 
GeneralRe: COM Port Threading Pin
david bagaturia4-Jan-09 20:18
david bagaturia4-Jan-09 20:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.