• Member Avatar for Yrth
    Yrth

    Replied To a Post in Sharing a compiled program

    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 …
  • Member Avatar for Yrth
    Yrth

    Began Watching Sharing a compiled program

    I just wrote a simple C++ program. But now I want to share it with a friend and GMail doesn't allow me to use it and putting it on a …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in I keep getting the "illegal start of expression" error

    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 …
  • Member Avatar for Yrth
    Yrth

    Began Watching I keep getting the "illegal start of expression" error

    I'm doing an assignment for a class and I can't figure out what I'm doing wrong to keep getting the "illegal start of expression" error. Any help would be appreciated. …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in System.Data.SqlClient.SqlException: 'Incorrect syntax near '​'.'

    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 …
  • Member Avatar for Yrth
    Yrth

    Began Watching System.Data.SqlClient.SqlException: 'Incorrect syntax near '​'.'

    Hey everyone. I received this sql server error and I can't figure out where the trouble is: Description: An unhandled exception occurred during the execution of the current web request. …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in Question about Visual Studio

    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 - …
  • Member Avatar for Yrth
    Yrth

    Began Watching Question about Visual Studio

    Hi guys, this is my first question here What useful plug-ins / debuggers for Visual Studio do you use (for Windows)? P.S. I know Visual Studio has a good debugger. …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in main.asm:184: error: TIMES value -32 is negative (nasm)

    Off the top of my head, I'd say the solution is to change line 162 from "times 510 - ($ - $$) db 0" to "times 1022 - ($ - …
  • Member Avatar for Yrth
    Yrth

    Began Watching main.asm:184: error: TIMES value -32 is negative (nasm)

    Here is my code bits 16 ORG 0x7c00 VIDEO_TEXT_ADDR EQU 0xb8000 ; Hard code beginning of text video memory ATTR_WHITE_ON_BLACK EQU 0x07 ; White on black attribute CR EQU 0x0d …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in Which layer should we start with when building an application?

    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 …
  • Member Avatar for Yrth
    Yrth

    Began Watching Which layer should we start with when building an application?

    When we build an application, which layer should we start with? From top (UI) to bottom(Data Layer) or bottom to top?
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in how to detect a face and draw line around it in a picture?

    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 …
  • Member Avatar for Yrth
    Yrth

    Began Watching how to detect a face and draw line around it in a picture?

    Hi. I want to detect a face and draw line exactly around the face to crop it. I searched a lot and used the EmguCV face detector. but now my …
  • Member Avatar for Yrth
    Yrth

    Replied To a Post in Going back to a certain part of a program?

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

The End.