473,783 Members | 2,564 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

help needed with fixing error

11 New Member
OS Windows 98
Dev-C++ Newest at the moment

I'm getting this strange error
cannot find -lobjc
That line contains
Expand|Select|Wrap|Line Numbers
  1. MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",NULL);
  2.  
And here's all int
Expand|Select|Wrap|Line Numbers
  1. int InitGL(void){
  2.     MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",NULL);
  3.     createlevel("levels/test0.txt",curlvl);
  4.     initcamera(mainc);
  5.     LoadGLTextures();
  6.     glShadeModel(GL_SMOOTH);                        
  7.     glClearColor(0.0f, 0.0f,0.0f, 0.5f);                
  8.     glClearDepth(1.0f);        
  9.     glEnable(GL_DEPTH_TEST);                            
  10.     glDepthFunc(GL_LEQUAL);                            
  11.     glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
  12.     glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
  13.     initdeftiles();
  14.     ticks=GetTickCount();
  15.     return true;
  16. }
  17.  
Please help to fix it.
Nov 27 '06 #1
9 5876
horace1
1,510 Recognized Expert Top Contributor
OS Windows 98
Dev-C++ Newest at the moment

I'm getting this strange error
cannot find -lobjc
That line contains
Expand|Select|Wrap|Line Numbers
  1. MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",NULL);
  2.  
Please help to fix it.
I thought the 4'th paramet to MessageBox() was a UINT that specified the contents and behavior of the dialog box and NULL (the C++ null pointer) would not be suitable. Try
Expand|Select|Wrap|Line Numbers
  1.     MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",MB_OK);
  2.  
Nov 27 '06 #2
Ripiz
11 New Member
I know what was the problem.. It's my compiler...
I get this error when I use 'Link and Objective C Program' option. When I don't use it I get linking errors.. I got no idea how to fix them.
Maybe anyone can suggest other compiler?
Nov 28 '06 #3
horace1
1,510 Recognized Expert Top Contributor
I know what was the problem.. It's my compiler...
I get this error when I use 'Link and Objective C Program' option. When I don't use it I get linking errors.. I got no idea how to fix them.
Maybe anyone can suggest other compiler?
I tried the function call
Expand|Select|Wrap|Line Numbers
  1. MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",MB_OK);
  2.  
with DEV-C++ using a Windows Application project - it worked OK
Nov 28 '06 #4
Ripiz
11 New Member
Just great, when I use that linking option I can't compile at all...
It always says "552 C:\WINDOWS\Desk top\Untitled1.c pp cannot find -lobjc"
Maybe anyone had this problem before?
Nov 28 '06 #5
horace1
1,510 Recognized Expert Top Contributor
Just great, when I use that linking option I can't compile at all...
It always says "552 C:\WINDOWS\Desk top\Untitled1.c pp cannot find -lobjc"
Maybe anyone had this problem before?
when you downloaded DEV-C++ did you include the Mingw compiler and libraries? If not try downloading it.
Nov 28 '06 #6
Ripiz
11 New Member
Yeh, I checked Download Updates/Packs option and now downloading newer version.
And it's still same error =[
When I check compile log:
Expand|Select|Wrap|Line Numbers
  1. Compiler: Default compiler
  2. Executing  g++.exe...
  3. g++.exe "C:\WINDOWS\Desktop\Untitled1.cpp" -o "C:\WINDOWS\Desktop\Untitled1.exe"   -ansi -traditional-cpp -w -fno-access-control -fmessage-length=0  -I"C:\DEV-CPP\lib\gcc\mingw32\3.4.2\include"  -I"C:\DEV-CPP\include\c++\3.4.2\backward"  -I"C:\DEV-CPP\include\c++\3.4.2\mingw32"  -I"C:\DEV-CPP\include\c++\3.4.2"  -I"C:\DEV-CPP\include"  -I"C:\Dev-Cpp\lib"  -I"C:\Dev-Cpp\lib\gcc\mingw32\3.4.2\include"   -L"C:\DEV-CPP\lib" -lobjc -fmessage-length=0 
  4. C:\DEV-CPP\Bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\mingw32\bin\ld.exe: cannot find -lobjc
  5. collect2: ld returned 1 exit status
  6.  
  7. Execution terminated
  8.  
Nov 28 '06 #7
horace1
1,510 Recognized Expert Top Contributor
veer odd, if I run DEV-C++ and create a New file (no project!) and paste and save the following code as a C++ file
Expand|Select|Wrap|Line Numbers
  1. #include <iostream>
  2. #include <windows.h>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.  MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",MB_OK);
  9.     system("PAUSE");
  10.     return EXIT_SUCCESS;
  11. }
  12.  
it compiles and runs and the message box appears OK
Nov 28 '06 #8
Ripiz
11 New Member
Yes it is.
Here I'm trying to compile other code. It don't have any errors at all, but these
Expand|Select|Wrap|Line Numbers
  1.   cannot find -lobjc 
  2.   ld returned 1 exit status 
But when I disable that Linking Option everything works for other code and compiles successfully. But for first code (when all used, not piece) I get linking errors:
Expand|Select|Wrap|Line Numbers
  1. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x110):main.cpp: undefined reference to `glEnable@4'
  2. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x187):main.cpp: undefined reference to `glBindTexture@8'
  3. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x1ba):main.cpp: undefined reference to `glBindTexture@8'
  4. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x1c9):main.cpp: undefined reference to `glBegin@4'
  5. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x208):main.cpp: undefined reference to `glTexCoord2f@8'
  6.  
  7. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x265):main.cpp: undefined reference to `glVertex3f@12'
  8. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x2a4):main.cpp: undefined reference to `glTexCoord2f@8'
  9. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x301):main.cpp: undefined reference to `glVertex3f@12'
  10. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x340):main.cpp: undefined reference to `glTexCoord2f@8'
  11. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x39d):main.cpp: undefined reference to `glVertex3f@12'
  12. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3a5):main.cpp: undefined reference to `glEnd@0'
  13. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3f1):main.cpp: undefined reference to `glBindTexture@8'
  14. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x44b):main.cpp: undefined reference to `glTranslatef@12'
  15.  
  16. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x495):main.cpp: undefined reference to `glRotatef@16'
  17. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x4e4):main.cpp: undefined reference to `gluSphere@20'
  18. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x50f):main.cpp: undefined reference to `glRotatef@16'
  19. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x559):main.cpp: undefined reference to `glRotatef@16'
  20. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x5e0):main.cpp: undefined reference to `gluCylinder@36'
  21. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x60b):main.cpp: undefined reference to `glRotatef@16'
  22. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x655):main.cpp: undefined reference to `glRotatef@16'
  23. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x6c6):main.cpp: undefined reference to `gluCylinder@36'
  24. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x6f1):main.cpp: undefined reference to `glRotatef@16'
  25. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x75a):main.cpp: undefined reference to `glTranslatef@12'
  26. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x77d):main.cpp: undefined reference to `glDisable@4'
  27. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x78d):main.cpp: undefined reference to `glPointSize@4'
  28. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x79c):main.cpp: undefined reference to `glBegin@4'
  29. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x813):main.cpp: undefined reference to `glColor4f@16'
  30. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x875):main.cpp: undefined reference to `glVertex3f@12'
  31. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x887):main.cpp: undefined reference to `glEnd@0'
  32.  
  33. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x8a6):main.cpp: undefined reference to `glColor3f@12'
  34. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x1905):main.cpp: undefined reference to `gluNewQuadric@0'
  35. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x1957):main.cpp: undefined reference to `gluQuadricNormals@8'
  36. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x199c):main.cpp: undefined reference to `gluQuadricTexture@8'
  37. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x19e1):main.cpp: undefined reference to `gluQuadricDrawStyle@8'
  38. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x2e15):main.cpp: undefined reference to `timeGetTime@0'
  39. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x2e23):main.cpp: undefined reference to `timeGetTime@0'
  40. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x32eb):main.cpp: undefined reference to `glFogf@8'
  41. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3303):main.cpp: undefined reference to `glFogf@8'
  42. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x331a):main.cpp: undefined reference to `glFogfv@8'
  43. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3332):main.cpp: undefined reference to `glFogf@8'
  44. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x334f):main.cpp: undefined reference to `glFogf@8'
  45.  
  46. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x335e):main.cpp: undefined reference to `glEnable@4'
  47. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x336d):main.cpp: undefined reference to `glClear@4'
  48. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3467):main.cpp: undefined reference to `glLoadIdentity@0'
  49. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x348f):main.cpp: undefined reference to `glRotatef@16'
  50. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x34cb):main.cpp: undefined reference to `glTranslatef@12'
  51. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x34ed):main.cpp: undefined reference to `glTranslatef@12'
  52. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3595):main.cpp: undefined reference to `glLoadIdentity@0'
  53. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x35aa):main.cpp: undefined reference to `glBindTexture@8'
  54. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x35cc):main.cpp: undefined reference to `glTranslatef@12'
  55. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x35ff):main.cpp: undefined reference to `glBegin@4'
  56.  
  57. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x361e):main.cpp: undefined reference to `glTexCoord2f@8'
  58. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3640):main.cpp: undefined reference to `glVertex3f@12'
  59. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3667):main.cpp: undefined reference to `glTexCoord2f@8'
  60. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3689):main.cpp: undefined reference to `glVertex3f@12'
  61. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x36b0):main.cpp: undefined reference to `glTexCoord2f@8'
  62. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x36d2):main.cpp: undefined reference to `glVertex3f@12'
  63. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x36f1):main.cpp: undefined reference to `glTexCoord2f@8'
  64. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3713):main.cpp: undefined reference to `glVertex3f@12'
  65. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x371b):main.cpp: undefined reference to `glEnd@0'
  66. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x374e):main.cpp: undefined reference to `glBegin@4'
  67. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x376d):main.cpp: undefined reference to `glTexCoord2f@8'
  68. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x378f):main.cpp: undefined reference to `glVertex3f@12'
  69. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x37b6):main.cpp: undefined reference to `glTexCoord2f@8'
  70. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x37d8):main.cpp: undefined reference to `glVertex3f@12'
  71. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x37ff):main.cpp: undefined reference to `glTexCoord2f@8'
  72. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3821):main.cpp: undefined reference to `glVertex3f@12'
  73. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3840):main.cpp: undefined reference to `glTexCoord2f@8'
  74. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3862):main.cpp: undefined reference to `glVertex3f@12'
  75. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x386a):main.cpp: undefined reference to `glEnd@0'
  76. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x389a):main.cpp: undefined reference to `glViewport@16'
  77. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x38a9):main.cpp: undefined reference to `glMatrixMode@4'
  78.  
  79. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x38b1):main.cpp: undefined reference to `glLoadIdentity@0'
  80. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x38df):main.cpp: undefined reference to `gluPerspective@32'
  81. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x38ee):main.cpp: undefined reference to `glMatrixMode@4'
  82. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x38f6):main.cpp: undefined reference to `glLoadIdentity@0'
  83. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3946):main.cpp: undefined reference to `auxDIBImageLoadA@4'
  84. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3a7c):main.cpp: undefined reference to `auxDIBImageLoadA@4'
  85. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3ab1):main.cpp: undefined reference to `glGenTextures@8'
  86. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3ad1):main.cpp: undefined reference to `glBindTexture@8'
  87. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3af0):main.cpp: undefined reference to `glTexParameteri@12'
  88. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3b0f):main.cpp: undefined reference to `glTexParameteri@12'
  89. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3b5c):main.cpp: undefined reference to `gluBuild2DMipmaps@28'
  90. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3c84):main.cpp: undefined reference to `glShadeModel@4'
  91. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3caf):main.cpp: undefined reference to `glClearColor@16'
  92. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3cbc):main.cpp: undefined reference to `glClearDepth@8'
  93. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3ccb):main.cpp: undefined reference to `glEnable@4'
  94.  
  95. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3cda):main.cpp: undefined reference to `glDepthFunc@4'
  96. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3cf1):main.cpp: undefined reference to `glBlendFunc@8'
  97. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3d08):main.cpp: undefined reference to `glHint@8'
  98. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3d78):main.cpp: undefined reference to `wglMakeCurrent@8'
  99. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x3db3):main.cpp: undefined reference to `wglDeleteContext@4'
  100. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x4258):main.cpp: undefined reference to `ChoosePixelFormat@8'
  101. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x42bc):main.cpp: undefined reference to `SetPixelFormat@12'
  102. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x430b):main.cpp: undefined reference to `wglCreateContext@4'
  103. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x436d):main.cpp: undefined reference to `wglMakeCurrent@8'
  104. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x4670):main.cpp: undefined reference to `timeGetTime@0'
  105. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x4681):main.cpp: undefined reference to `timeGetTime@0'
  106. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x46fd):main.cpp: undefined reference to `SwapBuffers@4'
  107. C:\WINDOWS\TEMP/cc0nw5fb.o(.text+0x4723):main.cpp: undefined reference to `SwapBuffers@4'
There's total 100 or so errors
Nov 28 '06 #9
auser
1 New Member
I've got exactly same problem....

in eclipse-cdt:

Severity and Description Path Resource Location Creation Time Id
undefined reference to `glBegin@4' SDL1 Lesson36.cpp line 201 1206461675109 1149
undefined reference to `glClear@4' SDL1 Lesson36.cpp line 330 1206461675125 1157
undefined reference to `glClearColor@1 6' SDL1 Lesson36.cpp line 79 1206461675109 1141
undefined reference to `glColor4f@16' SDL1 Lesson36.cpp line 204 1206461675109 1150
undefined reference to `glEnd@0' SDL1 Lesson36.cpp line 213 1206461675125 1155
undefined reference to `glGetError@0' SDL1 Lesson36.cpp line 91 1206461675109 1147
undefined reference to `glLoadIdentity @0' SDL1 Lesson36.cpp line 83 1206461675109 1143
undefined reference to `glLoadIdentity @0' SDL1 Lesson36.cpp line 88 1206461675109 1146
undefined reference to `glLoadIdentity @0' SDL1 Lesson36.cpp line 216 1206461675125 1156
undefined reference to `glMatrixMode@4 ' SDL1 Lesson36.cpp line 82 1206461675109 1142
undefined reference to `glMatrixMode@4 ' SDL1 Lesson36.cpp line 87 1206461675109 1145
undefined reference to `glOrtho@48' SDL1 Lesson36.cpp line 84 1206461675109 1144
undefined reference to `glTranslatef@1 2' SDL1 Lesson36.cpp line 198 1206461675109 1148
undefined reference to `glVertex3f@12' SDL1 Lesson36.cpp line 207 1206461675109 1151
undefined reference to `glVertex3f@12' SDL1 Lesson36.cpp line 208 1206461675109 1152
undefined reference to `glVertex3f@12' SDL1 Lesson36.cpp line 209 1206461675109 1153
undefined reference to `glVertex3f@12' SDL1 Lesson36.cpp line 210 1206461675125 1154


in vs 2005 c++ express:
Error 1 error LNK2019: unresolved external symbol __imp__glGetErr or@0 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_N XZ) Lesson36.obj
Error 2 error LNK2019: unresolved external symbol __imp__glOrtho@ 48 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_N XZ) Lesson36.obj
Error 3 error LNK2019: unresolved external symbol __imp__glLoadId entity@0 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_N XZ) Lesson36.obj
Error 4 error LNK2019: unresolved external symbol __imp__glMatrix Mode@4 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_N XZ) Lesson36.obj
Error 5 error LNK2019: unresolved external symbol __imp__glClearC olor@16 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_N XZ) Lesson36.obj
Error 6 error LNK2019: unresolved external symbol __imp__glEnd@0 referenced in function "public: void __thiscall Square::show(vo id)" (?show@Square@@ QAEXXZ) Lesson36.obj
Error 7 error LNK2019: unresolved external symbol __imp__glVertex 3f@12 referenced in function "public: void __thiscall Square::show(vo id)" (?show@Square@@ QAEXXZ) Lesson36.obj
Error 8 error LNK2019: unresolved external symbol __imp__glColor4 f@16 referenced in function "public: void __thiscall Square::show(vo id)" (?show@Square@@ QAEXXZ) Lesson36.obj
Error 9 error LNK2019: unresolved external symbol __imp__glBegin@ 4 referenced in function "public: void __thiscall Square::show(vo id)" (?show@Square@@ QAEXXZ) Lesson36.obj
Error 10 error LNK2019: unresolved external symbol __imp__glTransl atef@12 referenced in function "public: void __thiscall Square::show(vo id)" (?show@Square@@ QAEXXZ) Lesson36.obj
Error 11 error LNK2019: unresolved external symbol __imp__glClear@ 4 referenced in function _SDL_main Lesson36.obj
Error 12 fatal error LNK1120: 11 unresolved externals
Mar 25 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

6
2676
by: Jack Smith | last post by:
Help needed on this question. Any help is appreciated. Thanks in advance. Given a binary string (i.e. a finite sequence of 0's and 1's) we choose any two digit substring 01 and replace it by a string of the form 100...0 using an arbitrary (but finite) number of zeros. Prove by induction that this transformation can not be performed infinitely many times, i.e. this sequence of transformations must terminate for any input string.
1
1954
by: Ronald Tan | last post by:
I keep getting this error when running my Java Apps on Resin. java.net.SocketException: Can't assign requested address Does anyone know what is the cause? I have tried checking if the IP address and port has been used...they are all free. Resin running on HP UX. TIA
1
1982
by: worzel | last post by:
Hi All, I am looking for a reg ex that will match email addresses withing <a href=mailto blah > links. Actually, I already crafted my own, but with a slight problem: <a href="mailto:fred@blah.com"> emal me</a> woud be matched as expected, but so will:
0
1518
by: Jie | last post by:
Does anyone know why I keep having the following error. I have to rebuild the solution every time I run it in design mode. thanks jie Server Error in '/ReapPortal' Application. ---------------------------------------------------------------------------- ---- Compilation Error
2
1488
by: Willie | last post by:
I try to setup SQL Server to work with .NET Framework Anyone here willing to help? Step By Step Help Needed. Thanks
1
1246
by: Ed Jay | last post by:
This is part of another quest for solution I've posted, but I'm getting no responses. My script is: var popwin; function launchwin(winurl,winname,winfeatures) { if (popwin) {popwin.close();} popwin = window.open(winurl,winname,winfeatures); popwin.focus();
4
5819
by: leaf0209 | last post by:
Hi, I am new to this forum and have been troubled by this problem for the past few days. I would appreciate if someone would take a look and help me out. I am using vb express 2005 edition... Dim sql As String = "SELECT * FROM SB_ADWarning" Dim strConnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\SB_2000.mdb" Dim Con As New OleDbConnection(strConnString) Dim da As New OleDbDataAdapter(sql, Con) Dim ds As New...
2
2596
by: xmanin | last post by:
i have developed some functions in module using which i want to download CSV files from a Stock exchange server. everything is fine but i am unable to download CSV file, i get following msg "3011 The Microsoft Jet database engine could not find the object 'http://www.nseindia.com/content/historical/EQUITIES/2007/SEP/'. Make sure the object exists and that you spell its name and the path name correctly." however when i check the values in debug...
1
2619
by: Joel Fireman | last post by:
Help Needed: Upgrade Fedora 4 / Apache 2 to PHP 5.2.x from 5.0.4 I've been testing Joomla as a content manager for the County offices, and it looks pretty good. Unfortunately, I decided to upgrade it from the 1.0.13 version to 1.5 as we get ready to go live with the web site... and the update installation gives an error in XML processing, which seems (from what I've been able to dredge up in forum discussions) to stem from a known bug in...
2
1555
by: slizorn | last post by:
hi guys, i get the following error when i try to create a new TreeNode error C2514: 'TreeNode' : class has no constructors this error is caused by the following line:
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10083
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9946
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8968
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5379
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.