473,396 Members | 1,940 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

help needed with fixing error

11
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 5845
horace1
1,510 Expert 1GB
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
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 Expert 1GB
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
Just great, when I use that linking option I can't compile at all...
It always says "552 C:\WINDOWS\Desktop\Untitled1.cpp cannot find -lobjc"
Maybe anyone had this problem before?
Nov 28 '06 #5
horace1
1,510 Expert 1GB
Just great, when I use that linking option I can't compile at all...
It always says "552 C:\WINDOWS\Desktop\Untitled1.cpp 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
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 Expert 1GB
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
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
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@16' 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@12' 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__glGetError@0 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_NXZ) Lesson36.obj
Error 2 error LNK2019: unresolved external symbol __imp__glOrtho@48 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_NXZ) Lesson36.obj
Error 3 error LNK2019: unresolved external symbol __imp__glLoadIdentity@0 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_NXZ) Lesson36.obj
Error 4 error LNK2019: unresolved external symbol __imp__glMatrixMode@4 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_NXZ) Lesson36.obj
Error 5 error LNK2019: unresolved external symbol __imp__glClearColor@16 referenced in function "bool __cdecl init_GL(void)" (?init_GL@@YA_NXZ) Lesson36.obj
Error 6 error LNK2019: unresolved external symbol __imp__glEnd@0 referenced in function "public: void __thiscall Square::show(void)" (?show@Square@@QAEXXZ) Lesson36.obj
Error 7 error LNK2019: unresolved external symbol __imp__glVertex3f@12 referenced in function "public: void __thiscall Square::show(void)" (?show@Square@@QAEXXZ) Lesson36.obj
Error 8 error LNK2019: unresolved external symbol __imp__glColor4f@16 referenced in function "public: void __thiscall Square::show(void)" (?show@Square@@QAEXXZ) Lesson36.obj
Error 9 error LNK2019: unresolved external symbol __imp__glBegin@4 referenced in function "public: void __thiscall Square::show(void)" (?show@Square@@QAEXXZ) Lesson36.obj
Error 10 error LNK2019: unresolved external symbol __imp__glTranslatef@12 referenced in function "public: void __thiscall Square::show(void)" (?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
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...
1
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...
1
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...
0
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....
2
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
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();}...
4
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... ...
2
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...
1
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...
2
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
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...
0
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,...

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.