Search:

Type: Posts; User: joeyzt

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    1,427

    cheers guys, absolutely useless or non...

    cheers guys, absolutely useless or non information as usual.....
  2. Replies
    11
    Views
    1,427

    have googled, msn search, yahood for about an...

    have googled, msn search, yahood for about an hour, nothing...
  3. Replies
    11
    Views
    1,427

    dont suppose you have an example?

    dont suppose you have an example?
  4. Replies
    11
    Views
    1,427

    ok thanks, i need to fastest possible way, think...

    ok thanks, i need to fastest possible way, think this would do what about winhttp?
  5. Replies
    11
    Views
    1,427

    grab text from a wepage?

    any idea how i would get the text for a web page, in vb you can use the webbrowser control to navigate to a page then grab the text, not the html , from that page?
  6. Replies
    1
    Views
    1,024

    html object library

    does anybody know of any good links or source for this ?
  7. Replies
    24
    Views
    2,952

    homework, i'll do it for a few quid..

    homework, i'll do it for a few quid..
  8. Thread: path of app

    by joeyzt
    Replies
    5
    Views
    1,024

    thanks. it looks like i need to copy both...

    thanks.

    it looks like i need to copy both chars into a buffer to join them like this,


    char * stuff = "abc";
    char * morestuff = "efg";
    char str[80];
    strcpy (str,stuff);
    strcat ...
  9. Thread: path of app

    by joeyzt
    Replies
    5
    Views
    1,024

    got it sussed, char Directory[MAX_PATH] =...

    got it sussed,


    char Directory[MAX_PATH] = "";
    GetModuleFileName(NULL, Directory, MAX_PATH);


    ultra newb question here:-

    how do you join 2 chars together like,
  10. Thread: path of app

    by joeyzt
    Replies
    5
    Views
    1,024

    path of app

    any quick way of getting the path to the app, i know there is getmodulefilename but anything else?
  11. Replies
    15
    Views
    2,067

    groan... this is like pulling teeth.. i thikn...

    groan... this is like pulling teeth..

    i thikn its this section here,


    char GetAllCombinations(string charact,int num);

    int main(){

    GetAllCombinations("abcd",3);
  12. Replies
    15
    Views
    2,067

    any chance of writing it, it must be nearly there...

    any chance of writing it, it must be nearly there ?
  13. Thread: About time

    by joeyzt
    Replies
    4
    Views
    880

    i thought it was going to be something like,...

    i thought it was going to be something like, 'about time.. somebody answered my damn question'..lol
  14. Replies
    15
    Views
    2,067

    how do i do that ?

    how do i do that ?
  15. Replies
    15
    Views
    2,067

    Thanks for that reply your suggestions are...

    Thanks for that reply your suggestions are useful.

    I'm not returning anything i'm printing the combination to a file during the loop. This is the part where it gets stuck on , gives an abnormal...
  16. Replies
    15
    Views
    2,067

    This is an attempt at porting VB code, here's...

    This is an attempt at porting VB code, here's the VB code and my attempt at the C++. It does compile but not doing the job.


    Private Sub command1_Click()

    BOOLER = False
    GETALLCOMBOZ...
  17. Replies
    15
    Views
    2,067

    That doesn't give all combinations, for ex. for...

    That doesn't give all combinations, for ex. for a string "asd" all combos would be

    aaa
    aas
    aad
    asa
    ada
    saa
    daa
    sss
  18. Replies
    15
    Views
    2,067

    Help needed with permutation function.

    This function will eventually calculate all the permutaions for a set of letter of n length. I'm stumped on whether to declare something as a string or a char or a char and a char *. Any help would...
  19. Replies
    7
    Views
    2,341

    For example char strString = "hello,world" ...

    For example char strString = "hello,world"

    Replace(strString,",",".")

    would yield,

    hello.world

    So
  20. Replies
    7
    Views
    2,341

    Argg... I need a function that will replace a...

    Argg...

    I need a function that will replace a string with function in the form.

    Replace(strString,".",",");


    any ideas ?
  21. Replies
    7
    Views
    2,341

    Its Replace, does that mean it a custom function...

    Its Replace, does that mean it a custom function ?. Also, this probably a bit newb but my algorithm 'header' is just a file no extension ?
  22. Replies
    7
    Views
    2,341

    replace function. which header file ?

    Seems to be in <iostream> but i have that referenced and am still getting a
  23. Replies
    16
    Views
    2,585

    One last question. Are there any problems with...

    One last question. Are there any problems with saying,


    return strupr(garbagestring);

    instead of,


    StrUCaseTmp=strupr(garbagestring);
    return StrUCaseTmp;
  24. Replies
    16
    Views
    2,585

    Excellent, thanks for all the help.!

    Excellent, thanks for all the help.!
  25. Thread: questions

    by joeyzt
    Replies
    9
    Views
    1,195

    1) is part of the standard C++...

    1) <iostream> is part of the standard C++ library http://en.wikipedia.org/wiki/C%2B%2B_standard_library

    <windows.h> Part of Microsofts win32 api library ...
Results 1 to 25 of 91
Page 1 of 4 1 2 3 4