• Member Avatar for deceptikon
    deceptikon

    Replied To a Post in who can solve this??

    > OkSoLve it if u can ;) Done. Your turn.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in about pointers and dot operator

    > without typecasting, can i get the adressed values? Nope. You can get just the bytes of the pointed to value by casting to `char*`, but without knowing what they …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in about pointers and dot operator

    Just dereference it: `*obj.Vvariant`. But since pointers to `void` cannot be dereferenced, you still need to cast `Vvariant` to something else.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Extracting content between two keywords.

    > Any hint on how to parse properly the HTTP protocol ? Study the HTTP protocol defined in [RFC 2616](http://tools.ietf.org/html/rfc2616), and write code that meets all of the requirements. Parsing …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Extracting content between two keywords.

    The ideal would be to properly parse the HTTP protocol format, but for this specific case it's straightforward to extract the address (error handling omitted for brevity): #include <stdio.h> #include …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Adding a player class in BlueJ

    > I listed this in the C++ category. To clarify, did you intend to do that? If not, I'll move the thread. If so, please explain how this thread is …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Add Reference in Class Library (for external use)

    > When I import the DLL I have created into another project to test, it complains about missing the reference `System.Drawing.Bitmap` is a .NET standard class. The library assembly itself …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Concatenating Bytes?

    > Oh really? Yes. The bit pattern will be different depending on the endianness of the architecture. There aren't any rules aside from being aware of the architecture and matching …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Bad Grammar

    > the language isn't changing at all. a lot of people are just either too lazy, too uninterested, or, in some cases, too dumb to learn and use it right. …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in HELP!!!

    > you can use assert to verify the datatype entered if its a type int or char then make your decision `assert` shouldn't be used for input validation because if …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Linked list of chars In c

    Either one would work, and neither will negate the very clear issue of having two pointers and an integer for *every* character stored in the list. This is excessive memory …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Importing XML file

    Open it in a your debugger, and look at the `xDoc` object.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in How to call function from another form

    I made sure to include *two* classes, `Main` and `Settings` to show you where each piece should be. Without more complete code on your part, I can't really help more …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in How to call function from another form

    You're not seeing results because you're creating a whole different `Main` form object and calling the method on that one rather than the actual main form that's been shown. In …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in A property or indexer may not be passed as an out or ref parameter

    The error is very clear, you can't have a `ref` parameter that's a property. Copy the value of the property into a temporary variable, then after the method returns, copy …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in help me this ><

    > Because C++ demands that functions are defined before they are used It's important to make a distinction between a declaration and a definition. Only a declaration is required to …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Windows 8 and OS X Mountain Lion OS comparison

    * **Ease of use**: Really depends on what you're used to. Both are user-friendly, IMO. * **Availability of Software**: Depends on what software you want. Games are notable in being …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in help me this ><

    You can, but functions must be declared before their first use, which means you need to add prototypes for the formula functions before `main`, and the definitions after `main`: #include …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Importing XML file

    In your `FormClosing` event, make sure that `xDoc` actually contains everything you want before calling `Save`.

The End.