- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 11
- Posts with Upvotes
- 7
- Upvoting Members
- 9
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: BobFx has the right idea. Technically an unencrypted zip will work, but some virus scanners and security programs unzip attachments to see if there is an executable lurking inside, so password-protected is the way to go. Just make sure the resulting zip file doesn't have the character phrase ".exe" *anywhere* … | |
Re: Here's a bit of ancient history for you. Way back in the day one of the very first breakthroughs in image recognition was made by a computer hobbyist, and it is germaine to your problem. The main problem in image recognition is edge extraction - how does one do that? … | |
Re: Yep, flip the brace at line 23 and add another brace at the bottom, too - for starters. That will make it at least marginally make sense. It would be useful to know what language this was supposed to be in, too, because the initial note by James - you … | |
Re: I'm gonna guess Line 47 - the space between the period and the backslash. Syntax errors involving things like periods are tricky to run down at the best of times simply because the character itself is small and seems insignificant, so your brain tends to skip over it as unimportant. … | |
Re: If you're new to VS, then I would recommend initially *no* plug-ins. Use it for awhile. Perhaps, after three to six months, you'll be feeling something that you're missing - then look for something to fix that. I've been using VS since the oldest days (1.0) and to date I … | |
Re: Off the top of my head, I'd say the solution is to change line 162 from "times 510 - ($ - $$) db 0" to "times 1022 - ($ - $$) db 0". The error message is telling you that 510 - ($ - $$) is evaluating to -32 which … | |
Re: People have been debating the top-down versus bottom-up versus outside-in versus inside-out for decades. The correct answer is "none of the above". The best place to *start* is wherever the rubber meets the road, so to speak. Wherever the question mark is. You're writing the software to address some problem … | |
Re: 'Goto' exists in C++. Place a label where you want to loop to, and then "goto mylabel;" when you want to branch to it: MyLabel: /* Some code */ goto MyLabel; is perfectly legitimate. Now, to head off the howls of anguish, no, the 'goto' statement is not inherently evil. … | |
Re: I always name the main form some variant of 'Main', because that's what it is. All other forms are named by function. Exactly what the name is depends on the naming conventions set forth in the local coding standard. If I use mine, then it would be 'frmMain'. In the … | |
Re: 1) Count is used to determine how long the number is (in decimal digits). 2) Line 18 extracts the digit at the lowest significant place by calculating the value of the number as it would be if the units digit was missing [(( x / 10 ) x 10 )] … | |
Re: Also see: [Zeller's congruence](http://en.wikipedia.org/wiki/Zeller's_congruence) and [Doomsday Rule](http://en.wikipedia.org/wiki/Doomsday_rule). | |
Re: Many people have provided answers here, and I do not wish to step on any of this good advice. I just thought I would toss in mine, because it is my opinion that the more different viewpoints you find, the more likely it is that you will find one that … | |
Re: More likely environment variables that can't point to two different places on the filesystem at the same time :) I'm Borland from ages past, but found my self in an MS shop using VS, which I hadn't touched since a very painful and frustrating bout with Version 1.0. The thing … | |
Re: [QUOTE=macdonpr;907716]Hello, I am currently just getting started in learning my first programming language. I searched the web and decided to start with the book "The C Programming Language". The problem is I am already lost. I have no idea how to set up the Hello World program. I have a … | |
Re: [QUOTE=monkey_king;906937]Thanks ppl, I need to keep track of the indices, so the strtok approch wont work. But thanks again.[/QUOTE] The strtok() approach will work, just with a little added overhead - specifically, tracking the size of tokens you have already passed and either used or discarded. |