Search:

Type: Posts; User: cfriend

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    3,460

    Hi I already know about dynamic Url Behavior....

    Hi

    I already know about dynamic Url Behavior. But my problem it is not solved by this. With this you can consume (yeap dynamically) one service at a time. That’s I want for my client is to ask all...
  2. Replies
    2
    Views
    3,460

    Consuming same Web Service multiple times

    Hi


    I have created a web service that search products and return them for consuming in my client application. Say now I want to put the web service into two or more servers (with different IP)...
  3. Replies
    3
    Views
    892

    Hi I don’t agree with the int &a=b; is...

    Hi

    I don’t agree with the

    int &a=b; is equivalent to int * const a=&b;

    as you respond me

    Lets look the following program:
  4. Replies
    2
    Views
    2,116

    cin >> buf endless loop

    Hi

    I have the code



    #include<iostream>
    using namespace std;

    int main()
  5. Replies
    3
    Views
    892

    References & pointers equivalence

    Can anyone say that these rules below apply (I am not interested how you dereference not for that you must assign initial value when you declare reference) but if they can be used for the same think...
  6. Replies
    2
    Views
    3,983

    DirectX 9.0c header & libs

    Hi

    Because I am far away from modern civilianization (I mean I have a very slow connection) and I am not able to download the complete DirectX 9.0c SDK (which contains samples and it is too big )...
  7. Replies
    2
    Views
    1,959

    Application display area splitter

    Hi

    In some applications I have see some bars (I don’t know the exact name) that split the display area of application into different parts

    What is the API to create these controls?

    In order...
  8. Replies
    1
    Views
    855

    Exception problem

    Hi

    I have the following code





    #include<iostream>
  9. Replies
    3
    Views
    1,123

    Constructor call difference

    Hi

    I have that test class




    #include<iostream>

    class TestClass
  10. Replies
    4
    Views
    1,175

    Free C++ classes

    Hi


    Is there any place ( a website for such resources ) where I can found free C++ classes ( written by other programmers ) to put in my programs. For example a class that provide ODBC...
  11. Replies
    1
    Views
    3,603

    retrieve double variable in scanf

    Hi

    I know that with %d parameter in scanf function you can retrieve integer data types from keyboard. Also with %f parameter you can retrieve float data types. So how can I retrieve double types ?...
  12. Replies
    1
    Views
    2,066

    Grep Last Pattern Output

    Hi

    Is there any way with grep to show me only the last pattern that matches and not all ? For example for a file with

    linux 56
    slackware 32
    debian 34
    linux 2
    redhat 9
  13. Replies
    4
    Views
    1,314

    Terminate a process

    Hi

    I start a console process like dir with ShellExecute function. Is there any way to stop this process from my program the time I want ? ( it might be in the middle of execution of the dir...
  14. Thread: Grep

    by cfriend
    Replies
    3
    Views
    3,448

    Ok It is working . However sometime my...

    Ok

    It is working . However sometime my application finishes ( stop produce records ) but tail still try to retrieve data from file. I put an fclose ( C programming ) function in my application ...
  15. Thread: Grep

    by cfriend
    Replies
    3
    Views
    3,448

    Grep

    Hi

    I have two questions about grep.

    1) Is grep support real time analysis ? What I mean ? I have an application that produces records continuously in a file. I try to run grep but grep run...
  16. Replies
    2
    Views
    1,406

    List box slider moving downwards

    Hi

    I update a List Box control with many elements ( LB_ADDSTRING ). The slider box of the vertical scrollbar remains always on top. Is there any way to be always in the bottom in order to follow...
  17. Replies
    1
    Views
    1,497

    Write in many command prompts

    Hi

    Is there any way to write from the same program in many command prompts ? More specifically I use win XP and MS Visual C++ v6. All we know that with a simple printf or cout we can write to the...
  18. Replies
    1
    Views
    2,057

    Tree View Control flickering

    Hi

    I programming an application that needs to update a Tree View Control constantly ( it use a for statement to loop then it doing some computations and then put the child’s in the Tree View )....
  19. Replies
    1
    Views
    1,849

    List box horizontal bar

    Hi

    I use MS Visual C++ , and I try to create with resource editor a List Box into a Dialog Box . I want my list box to have vertical and horizontal scroll bars. I choose both styles Horizontal...
  20. Replies
    2
    Views
    2,669

    C++ hierarchy as tree

    Hi

    Say that I have :


    #include <iostream>

    class base{};
    class derived1 :public base{};
    class derived2 : public base{};
Results 1 to 20 of 22