CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ariell

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    2,466

    Re: System.IO.Stream Equivalent?

    I guess (again) that you've hit the "wrong" board. We do not deal with dot.NET here, or Visual C++. But there's lots of boards that do at codeguru. Maybe somebody else is right into that stuff and...
  2. Replies
    8
    Views
    2,466

    Re: System.IO.Stream Equivalent?

    I GUESS that refers to Java..?
  3. Replies
    1
    Views
    619

    Re: simple code analysis tools?

    maybe that is an answer:
    http://www.scribd.com/doc/563944/Open-Source-Code-Analysis?query2=c%23%20code%20analysis%20tool

    best from the south.
  4. Replies
    8
    Views
    2,466

    Re: System.IO.Stream Equivalent?

    Why?

    I mean, how could somebody help you without code or explanations?
  5. Replies
    9
    Views
    2,133

    Re: data sharing between 2 c++ programs

    Thanks for the link. I didn't know that MS spot.

    Best from the south.
  6. Re: Multi-Platform - What to use? Where to learn?

    Another alternative is Qt (http://trolltech.com). I use it since its first release. However, to make it REALLY work on every platform and ARCHITECTURE, you need to know a little about makefiles, and...
  7. Re: uncaught exception: Access to restricted URI denied (NS_ERROR_DOM_BAD_URI)

    What EXACTLY is your problem?

    In MY case, it was something like "request.open("GET",url,true)" whereas url was (out of the sudden) considered "restricted".

    Let me know.
  8. Re: uncaught exception: Access to restricted URI denied (NS_ERROR_DOM_BAD_URI)

    Done. I've found a solution. One more evidence that AJAX is not a "system" but just an idiom.
    And thanks for the tons of help!
  9. Re: Software Engineer - NEXThink, Lausanne, Switzerland

    Hi there,

    I fulfill all requirements listed above, from educational background, over roughly two decades of professional experience, even down to (dual) US/EU-25 citizenship. So my question is:...
  10. Replies
    9
    Views
    2,133

    Re: data sharing between 2 c++ programs

    It's not (cross-platform).

    Smirk.
  11. Replies
    5
    Views
    1,208

    Re: recompile every file even without any change

    Is there any quick code snippet to get an idea?
  12. Replies
    30
    Views
    5,544

    Re: Help with Quanity discoundts in C++

    question(s) for you:

    a) what do u pay exterminator for writing your code?
    b) how about sticking with JavaScript, or so, instead of C?
  13. Replies
    30
    Views
    5,544

    Re: Help with Quanity discoundts in C++

    question(s) for you:

    a) what to u pay exterminator for writing your code?
    b) how about sticking with JavaScript, or so, instead of C?
  14. Replies
    3
    Views
    1,266

    Re: Using the Session scalar array?

    Simply create a class (something like "mySession.class.php"), that holds appropriate members as well as methods that access those members. You, then, may decide to persist all that info in a db or...
  15. Replies
    2
    Views
    1,002

    Re: Problem in shifting php cart to other domain

    It might be a permission problem, too. First of all, it's a FATAL error on line n. - Could u provide some code??
  16. Replies
    7
    Views
    3,415

    Re: sizeof(static array[])

    I agree with Lindley. Sizes, even size of an int, in C++ is implementation-defined. Consider it a "dependency". There's lot of differences in mem requirements and access -even among different...
  17. uncaught exception: Access to restricted URI denied (NS_ERROR_DOM_BAD_URI)

    Hi there,

    I am first and foremost used to C code, stuff that has to be compiled prior to its usage. Now, confronted with that "asynchronous javascript and xml" (as I learned this name is...
  18. Replies
    20
    Views
    2,565

    Re: I'm SICK of THIS! WHY THIS CODE DOES NOT WORK!

    First of all: Thanks for that StarTrek hint - I didn't laugh like that in a long time.

    Just dropped by cos I started a big compile/build, which is a perfect chance to have a break.
    I agree with...
  19. Replies
    20
    Views
    2,565

    Re: I'm SICK of THIS! WHY THIS CODE DOES NOT WORK!

    True, a (well-known) typo. However, if you mix up [] with () when DECLARING a vector, any average compiler will catch that up.
  20. Replies
    20
    Views
    2,565

    Re: I'm SICK of THIS! WHY THIS CODE DOES NOT WORK!

    First of all, this is what is printed right under your name. It must not catch you by surprise, that a newbee like me recognizes such details.

    Everything you say is right, and I am definitely not...
  21. Replies
    20
    Views
    2,565

    Re: I'm SICK of THIS! WHY THIS CODE DOES NOT WORK!

    Since you are an elite member, I am NOT quite sure whether u want to "tease" me or this comment is serious..?
  22. Re: Do shared pointers incur performance penalties?

    Probably not the best place for that question, anyways:

    I'm working with qt from its very first release. Now, that NOKIA bought the whole Trolltech, it's getting too expensive. I heard a lot of...
  23. Replies
    20
    Views
    2,565

    Re: I'm SICK of THIS! WHY THIS CODE DOES NOT WORK!

    Paul is perfectly right, array bounds must be a constant expression. A good work-around (in cases where you NEED to make the bound(s) variable) is simply to using a vector:

    Example:

    void...
Results 1 to 23 of 23





Click Here to Expand Forum to Full Width

Featured