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

Search:

Type: Posts; User: jono

Search: Search took 0.02 seconds.

  1. Poll: my research reveals the folloing details on the...

    my research reveals the folloing details on the languages you recommend.



    which do you recommend i go with for my 24/7 database app?

    fya, another neuron burning home workout can be had w/...
  2. Replies
    28
    Views
    12,386

    have you read ..... CodeGuru Forums > Visual...

    have you read .....

    CodeGuru Forums > Visual C++ & C++ Programming > Visual C++ FAQs > Threads: How to end a thread?

    http://www.codeguru.com/forum/showthread.php?threadid=231242

    and what...
  3. Thread: C++ macros

    by jono
    Replies
    1
    Views
    716

    you mean like in inline bool...

    you mean like in



    inline bool ShortFrequentlyCalledFunction()
    {
    return rand()%2 ? true:false;
    }
  4. Thread: C++ macros

    by jono
    Replies
    1
    Views
    716

    C++ macros

    i tend to avoid macros w/ extreme prejudice. mainly this is becos they are cryptic & pollute the global namespace. i never define constants, but of crs i am stuck w/ windoze headers etc, so i can...
  5. Replies
    4
    Views
    948

    read C/C++ Users Journal, Dr Dobbs, etc. look...

    read C/C++ Users Journal, Dr Dobbs, etc. look here, there & other places on the web for source code that you can learn from & adapt & take apart & play with.

    take an interest in as many aspects...
  6. Poll: at the risk of going on, this just reminded me......

    at the risk of going on, this just reminded me... well, anyway, this is how i use my lispy terp. i can make a script to do most things (it does isam, typelibs, com & stuff)

    i prototype w/ it &...
  7. Poll: folloing that pean to lisp i shld add,, the...

    folloing that pean to lisp i shld add,, the languages i use every day are...

    ........(69%) C++
    ........(15%) C
    ........(10%) Python
    ........(5%) LISP
    ........(1%) evrything else
    ...
  8. Replies
    4
    Views
    802

    you need to be able to serialize/deserialize your...

    you need to be able to serialize/deserialize your objects, as with mfc's CArchive class.

    xml is a general solution to this problem & quite a few databases will return queries in xml. you can...
  9. object database

    heres something that might help. free src code that maps C++ classes in memory to indexed block storage on disk. an 'almost relational' object databse, as the author puts it.


    C++ Database...
  10. Replies
    11
    Views
    8,147

    heres another possibility. (defun...

    heres another possibility.



    (defun power-set (set)
    (if (null set) '(())
    (let ((rest (power-set (cdr set))))
    (append
    (mapcar #'(lambda (subset)
    (cons (car set)...
  11. Replies
    1
    Views
    1,727

    it wld be easier to use a parallel port. just...

    it wld be easier to use a parallel port. just use what lines you need.
  12. Poll: LISP & Scheme

    ive written one, two or three LISP interpreters in C/C++. the LISP syntax requires a simple easy to understand recursive descent parser. theres nothing like writing such a thing to reveal the...
  13. Thread: why VC++ when VB?

    by jono
    Replies
    19
    Views
    3,954

    Why use VB or VC?

    C is the lingua franca of the computer world & will always remain so. people who say "java is better than C" etc etc etc etc etc etc etc etc etc etc etc are not taking into account that most of the...
  14. Replies
    16
    Views
    5,090

    i wld strongly suggest getting yr base classes...

    i wld strongly suggest getting yr base classes working in a console program, without any message posting (use APC's if you need messages). if it all worx, then drop it in a gui program (or better,...
  15. Replies
    16
    Views
    5,090

    i notice yr crash happened in the midst of some...

    i notice yr crash happened in the midst of some ActiveX code.
    uhuhuhuuhuhuhuhu. shiver. what part of yr code uses ActiveX?
    if you want flaky untraceable bugs & incomprehensible dynamic linking...
  16. Replies
    2
    Views
    777

    yeah thanx. works good. took me a while to...

    yeah thanx. works good.

    took me a while to get the sequence right & remember which socket is which. a bit schizophrenic, talking to yrself...

    this sound like the right approach? it seems a...
  17. Replies
    2
    Views
    777

    interrupting a select call in windoze

    hi everybody. im new here, but if anybody can help me w/ this, i promise to return. :-)

    under unix it is possible (altho i havent tried it) to interrupt a blocking select() call by raising a...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured