Search:

Type: Posts; User: djbe

Search: Search took 0.01 seconds.

  1. Thread: 7zip and cab

    by djbe
    Replies
    0
    Views
    1,467

    7zip and cab

    Hello all,

    First of all: a happy new jear! :D
    As the titels says it, I'm trying to add 7zip and cab support to my app. For cabbing (and uncabbing), I found some wrappers for cabinet.dll (ugly...
  2. Thread: C++ Files

    by djbe
    Replies
    11
    Views
    1,351

    yes by adding if statements you could test for...

    yes by adding if statements you could test for other words. Uhm, do you actually know how to program in for example C or visual basic? Because those are quite basic questions.

    while...
  3. Thread: Unicode

    by djbe
    Replies
    2
    Views
    1,056

    thx for the reply. I've been writing some code,...

    thx for the reply.
    I've been writing some code, a bit for detecting BOM -> know the encoding. But before I write my own string class, what encoding does windows itself use in it's api's? utf16? if...
  4. Thread: C++ Files

    by djbe
    Replies
    11
    Views
    1,351

    char ch[10000]; int v_word = 0; ifstream...

    char ch[10000];
    int v_word = 0;
    ifstream file("c:/test.txt");

    if (file.is_open()) {
    while (file.getline(ch, 1000))
    if(strcmp(ch, "hello") == 0)
    v_word++;
    }
  5. Thread: Unicode

    by djbe
    Replies
    2
    Views
    1,056

    Unicode

    Hello,

    I want to use unicode in my app. By that I mean that it should be able to read and write to files in unicode. Obviously that means that I should also use it internally.
    I've read the...
  6. Replies
    4
    Views
    1,570

    I'm not really getting the purpose off all those...

    I'm not really getting the purpose off all those calls...
    Are you trying to tell me this?
    - find the process
    - write the update to the memory of that process
    (not getting the purpose of those...
  7. Replies
    4
    Views
    1,570

    checked the programming faq. Is spwan() with...

    checked the programming faq. Is spwan() with P_OVERLAY what I need? aka, with that, am I sure the old program is closed?
  8. Replies
    4
    Views
    1,570

    Implementing auto update

    Hello all,

    I'm trying to figure out how to do this... This is what I've come up with:

    Check for a new version on the net
    If there is a newer version of the executable (or any component),...
Results 1 to 8 of 8