开源啦!!!基于鸿蒙 ArkTS 封装的图表组件《McCharts》,大家快来一起共创 Programming Software Development by 杨_659 … six months learning HarmonyOS ArkTS, and now that I’ve reached a semi-proficient level, I’d like to share my… Reached a road block Programming Software Development by theABCasian hey everyone ok so i have reached another road block any pointers are much appreciated the program … Reached end of file while parsing Programming Software Development by ku95 … was wondering if anyone knows why I'm getting the reached end of file while parsing error. It mentions the bracket… Reached end of file while parsing error Programming Software Development by eagl09 Keep getting reached end of file while parsing error I have been told … ok guys,here is what i reached...c++ Programming Software Development by helmica … me with it. please guys here is what i have reached and note that i dont have the visual studio 6… Error : Timeout expired. ...... max pool size was reached Programming Software Development by artee … pooled connections were in use and max pool size was reached." The below code is in the click event of… I reached 666 Community Center Geeks' Lounge by ZZucker Eureka, I have reached my number 666 post at glorious Daniweb! It's exactly 666 now, but will of course increase as I post more! Re: I reached 666 Community Center Geeks' Lounge by GrimJack [QUOTE=ZZucker;722144]Eureka, I have reached my number 666 post at glorious Daniweb! It's exactly 666 now, but will of course increase as I post more![/QUOTE] Time for you to step over to the dark side now, ZZ Re: I reached 666 Community Center Geeks' Lounge by sneekula [QUOTE=ZZucker;722144]Eureka, I have reached my number 666 post at glorious Daniweb! It's exactly 666 now, but will of course increase as I post more![/QUOTE]Party time!!! Maybe we will turn you into an Obama Girl yet! Keep posting! Keep getting "reached end of file while parsing" Programming Software Development by mona515 … it is. Everytime I compile I get the error `"reached end of file while parsing"`. Can anyone help me… toggle checkbox group when the max limit is reached Programming Web Development by madhu28 … to check max of 4 checkboxes. When the limit is reached i.e. 4, i need to disable all the other… Fatal error: Maximum function nesting level of '100' reached, aborting! Programming Web Development by saiprem … error [B]Fatal error: Maximum function nesting level of '100' reached, aborting! in D:\wamp\www\[/B] Did any faced this… vb.net system.net.mail.smtpexception repeat limit reached Programming Software Development by UKnod … trap which basically says the server response was repeat limit reached. However I don't think it is the server, becasue… Redirection limit reached Programming Web Development by dawbin ….aaii.com/sentimentsurvey/sent_results): failed to open stream: Redirection limit reached, aborting in ... on line 286 ** Thanks in advance! Re: Reached a road block Programming Software Development by jonsca Lines 17 and 18 of password.h do not need the Password:: qualifier. Since they are being declared within the class it is assumed just like it is for the constructor/destructor. Re: Reached a road block Programming Software Development by theABCasian [QUOTE=jonsca;1178899]Lines 17 and 18 of password.h do not need the Password:: qualifier. Since they are being declared within the class it is assumed just like it is for the constructor/destructor.[/QUOTE] in that case when would i need the ClassName::Function syntax also when i take out the Password:: the compiler throws an error when … Re: Reached a road block Programming Software Development by jonsca [QUOTE=theABCasian;1178909]in that case when would i need the ClassName::Function syntax [/quote] In the implementation file when you write the method definitions like you have it in Password.cpp. [quote] also when i take out the Password:: the compiler throws an error when trying to access class variables.[/QUOTE] I get at least a warning … Re: Reached a road block Programming Software Development by theABCasian thanks so much for the help ill be back in the morning after I've fixed it getting a little late to go on when wife wants me in bed again thanks see you all in the morning. also I am banging by head on the desk for not remembering to add a return for recursive base case. Re: Reached a road block Programming Software Development by theABCasian Made the changes to the .h and added the return however for some reason the compiler is throwing a cannot find symbol(s) error on no pages, anyone using eclipse CDT have any ideas, i think thats whats causing the errors Re: Reached a road block Programming Software Development by jonsca It's still probably your static variables. They need to be initialized in your .cpp file and not just declared in the .h. Otherwise repost your code. Re: Reached a road block Programming Software Development by theABCasian should be initialized in constructor Re: Reached a road block Programming Software Development by mitrmkar [QUOTE=theABCasian;1180647]should be initialized in constructor[/QUOTE] I think you are still missing the point that jonsca has been making about [I]static[/I] member variables, perhaps see C++FAQ [URL="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.10"] [10.10] Why can't I initialize my static member data in my constructor… Re: Reached end of file while parsing Programming Software Development by BestJewSinceJC You need one more closing bracket; you have more opening brackets than closing right now. Put another closing bracket after line 53. Re: Reached end of file while parsing error Programming Software Development by JamesCherrill You have all kinds of { and } that are wrong, and some that are missing. The best way to see them is to go through your code indenting it properly so you can match up { with }. Posting your code with valid code tags will also help (select all the code and click the code tag icon right-most above the message input area). Re: Reached end of file while parsing error Programming Software Development by NormR1 Also see this cross post where various techniques were suggested: [url]http://www.javaprogrammingforums.com/whats-wrong-my-code/9528-cannot-find-where-extra-brace-causing-my-errors.html[/url] Re: Reached end of file while parsing error Programming Software Development by rubberman I see no closing brace in main(). Also, post your code inside code blocks and indent appropriately, please. It makes it a lot easier to read, and fix. Re: Java "reached end of file while parsing" Error Programming Software Development by max2012 I AM ALSO GETTING " reached end of file while parsing" WHEN I TRY TO … Reached end of file while parsing!! Java Connect 4 Model, Column and View... Programming Software Development by ku95 Hi basically I'm current doing a connect 4 program that consist of 3 separate programs Connect4Model, Connect 4 Column and Connect4View... I'm trying to compile and run my connect4View program but for some what reason I'm unable to do so. Below I have supplied the code for the 3 programs. Connect4Model and Connect4Column work perfectly fine. [… Re: Reached end of file while parsing!! Java Connect 4 Model, Column and View... Programming Software Development by peter_budo what it is saying is that you did not closed all open brackets. In your case you closed your inner class DrawPanel inside Connect4View but never actually closed Connect4View that is encapsulating the inner class. Just add "}" at the end of program and you done. PS: Any basic IDE would help with this. Just click/highlight opening bracket … Re: ok guys,here is what i reached...c++ Programming Software Development by 1o0oBhP [QUOTE] Declare the following two integer lists: int a[] = {5, 8, 4, 1, 7}, b[] = {12, 3, 15, 6, 23, 1, 2}; int sizeA = sizeof(a)/sizeof(int), sizeB = sizeof(b)/sizeof(int); list<int> list1(a, a+sizeA), list2(b, b+sizeB); Use the function splice() from the library "d_list1.h" to copy list2 onto the end of list1. Use …