Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
11
Posts with Upvotes
7
Upvoting Members
9
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
1 Endorsement
Ranked #857
Ranked #11.7K
Ranked #4K
~12.5K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Xozz

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* …

Member Avatar for Yrth
0
306
Member Avatar for soroush68

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? …

Member Avatar for roycpo
1
4K
Member Avatar for franj776

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 …

Member Avatar for JamesCherrill
0
498
Member Avatar for faizan_7

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. …

Member Avatar for Yrth
0
2K
Member Avatar for eddienguyen

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 …

Member Avatar for Yrth
0
373
Member Avatar for Minecraft _1

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 …

Member Avatar for Yrth
0
716
Member Avatar for John_165

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 …

Member Avatar for Dani
1
1K
Member Avatar for Peter_36

'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. …

Member Avatar for ddanbe
0
357
Member Avatar for zachattack05

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 …

Member Avatar for Momerath
0
269
Member Avatar for elaf salah

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 )] …

Member Avatar for elaf salah
-1
163
Member Avatar for vegaseat

Also see: [Zeller's congruence](http://en.wikipedia.org/wiki/Zeller's_congruence) and [Doomsday Rule](http://en.wikipedia.org/wiki/Doomsday_rule).

Member Avatar for jnawrocki
3
1K
Member Avatar for zachattack05

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 …

Member Avatar for drifai
1
855
Member Avatar for kavitha1591

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 …

Member Avatar for rimmmeee
0
188
Member Avatar for macdonpr

[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 …

Member Avatar for rampurhaat
0
175
Member Avatar for monkey_king

[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.

Member Avatar for Yrth
0
146