Kinda weird CArray problem Programming Software Development by RonalBertogi … bfDropdown; break; case bfSearchBox: bAdd = FALSE; xSearchBox = tbi.rgButtons.GetSize(); xType = bfSearchBox; x = -30000; } if…+= wcslen(pszInfo) + 1; } if( tbi.rgButtons.GetSize() ) { tbi.xSearchBox = xSearchBox; if( pTOI->hbmIco==… Using C libraries in C++ programs Programming Software Development by stinus … to use an open source C-library ([url]http://www.tbi.univie.ac.at/~ivo/RNA/RNAlib_toc.html[/url]). I have… small example C-program from the homepage ([url]http://www.tbi.univie.ac.at/~ivo/RNA/RNAlib.html#SEC16[/url]) and… Lawyers stop letters Digital Media Digital Marketing by GuyClapperton …;http://www.tbilaw.co.uk/"]Tilly, Baker and Irvine (TBI)[/URL] has agreed to stop sending letters to Internet users… criticised the legal partnership for approaching people with insufficient evidence. TBI had been sending letters to people for infringing its clients… Re: antispylab virus is killing me...HELP!!! Hardware and Software Information Security by gurjit …; Downloader.Agent.akj : Cleaned with backup C:\WINDOWS\system32\zvmlpvns.tbi -> Hijacker.Small.js : Cleaned with backup C:\WINDOWS\Temp… Re: Reading extended ascii characters Programming Software Development by gerard4143 Extended ascii characters are 8 bits, see link below [url]http://telecom.tbi.net/asc-ibm.html[/url] Try reading your characters into an unsigned char variable. Re: HW-Help C++ Programming Software Development by Schol-R-LEA …-of-file. As for the box characters, [url=http://telecom.tbi.net/asc-ibm.html]this chart[/url] shows the ones… Re: PHP Training prerequisites? Programming Web Development by thrillride01 … being able to retain what I read. I suffered a TBI injury back in 2007 in Iraq that left me with… Re: Kinda weird CArray problem Programming Software Development by RonalBertogi ...and while I was waiting for someone to share any ideas, I discovered the culprit. First, this one will not give you any problem: struct SomeStruct { int anIntMember; long aLongMember; }; CArray<SomeStruct> some; This one too will not give you any problem: CArray<int> someInts; But this one… Re: Using C libraries in C++ programs Programming Software Development by Ancient Dragon you didn't do anything "wrong". There are a lot of porting issues you must deal with when porting C programs to C++. Most (if not all) the errors you are getting are probably because the functions have not been prototyped before used in main(). You need the *.h file that prototypes all the functions in that library. If the program … Re: Using C libraries in C++ programs Programming Software Development by stinus Thanks a lot. It now compiles and runs correctly. Next step is to use their functions in my program - but that is not your problem :) Now I can finally move on to the interesting things instead of dealing with compiler errors. -Stinus