Search:

Type: Posts; User: gozlan

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    3,137

    Executing OS Commands via my C# Program

    Hey there


    I wanna run basic windows command in my c# program (for example- I want to run 'set' , in order to get a list of all my environment variables. or even run 'dir')

    Please help
    ...
  2. Replies
    4
    Views
    8,791

    no. it doesn't do the trick....Still getting an...

    no. it doesn't do the trick....Still getting an exception
  3. Replies
    4
    Views
    8,791

    OLEDB Connection String to Excel

    Hi there

    Im trying to connect to the DB using oleDb . I am tryign to connect to an Excel DB

    Based on all sources I could find on the net, the connection string has to be
    ...
  4. Replies
    3
    Views
    2,399

    Upand Down Control

    No, it didn;t do the trick . Maybe I better post it in a VB forum as well, ha? They know their controls don't they...


    Thanks for your help!

    Goz
  5. Replies
    3
    Views
    2,399

    NumericUpDown Control

    Hi There


    I have a problem with this control.

    Everything works fine as long as I change its value via the up/down scroll buttons. But when I change its value manually, the previous value is...
  6. Replies
    1
    Views
    2,027

    Static Capabilities for a User-Defined Type

    Hi

    My project deals with a drinks machine
    I have one event(button click) that gets an information regarding the chosen drink.

    I then have another event ( another button click) , which...
  7. Thread: Question

    by gozlan
    Replies
    2
    Views
    835

    Thanks Fordy! It did the trick... cheers...

    Thanks Fordy!

    It did the trick...


    cheers

    gozlan
  8. Thread: Question

    by gozlan
    Replies
    2
    Views
    835

    Question

    Hi

    I'm writing a very simple program. Im supposed to create an object that contains an array in it.
    For instance:


    calss intArr
    {
    public:
    intArr(int size);
  9. Replies
    13
    Views
    2,005

    Thanks Troll King I would like to get to...

    Thanks Troll King


    I would like to get to the bottom of this initialization list , which is supposed to enable an efficient initialization of composed objects.


    Unless of course I got the...
  10. Replies
    13
    Views
    2,005

    T

    T
  11. Replies
    13
    Views
    2,005

    What I've specified below is the only code I've...

    What I've specified below is the only code I've written.


    Still, it should compile without object instantiating.
  12. Replies
    13
    Views
    2,005

    I did now. I added Point(int px,int py);...

    I did now.

    I added
    Point(int px,int py);
    ~Point();

    to my Point class.

    Still , I get the same error
  13. Replies
    13
    Views
    2,005

    Constructors for Composed Objects

    Hi there

    This is my first cpp program, so please be patient with me...


    I am trying to practice applying constructors on a composed class, and have learned that in case of a composed class,...
  14. Replies
    8
    Views
    2,127

    well, you are al right of course, but yes- its...

    well, you are al right of course, but yes- its stupid hoemwork,Worse than that, its a project Ive been working on for a few months, and I dont feel like becoming erbeliant near the end.

    I did find...
  15. Replies
    8
    Views
    2,127

    no. I was specifically asked to create libraries...

    no. I was specifically asked to create libraries out of each and every module.

    Working with Source and Header files is the way I usually work.

    I know I'm missing a small detail from the...
  16. Replies
    8
    Views
    2,127

    Creating my own library

    Hello all

    In my project I need to create libraries out of a few of my modules.

    So I tried practicing library-making in the most basic way:
    (Im working with visual c++)

    1> I created a new...
  17. Replies
    2
    Views
    2,222

    Debug Assertion Failure

    Hi everybody

    Seems like I made quite a mess here.

    Has anyone ever seen the following message, and can lead me to the possible cause???


    "Debug Assertion Failed.
    File:dbgheap.c
    line 1017
  18. Thread: Recursion

    by gozlan
    Replies
    3
    Views
    1,440

    Recursion

    Hi there


    Can anyone supply me with a source for exercises in Recursion?

    I need to practice and do not have but a few exercises


    Cheers
  19. Thread: Linked lists

    by gozlan
    Replies
    4
    Views
    1,250

    Linked Lists

    thank you all!
  20. Thread: Linked lists

    by gozlan
    Replies
    4
    Views
    1,250

    Linked Lists

    It sure will!

    I wrote p->next=p->next->next

    but yours looks better

    thanks a lot!
  21. Thread: Linked lists

    by gozlan
    Replies
    4
    Views
    1,250

    Linked lists

    Hi there

    I have a question regarding linked list

    Lets say I have a 3 nodes list

    p currently points to the first node

    I would like to remove the second node from the list
  22. Replies
    2
    Views
    1,679

    The Siwtch Statement

    Thanks!!!!!!
  23. Replies
    2
    Views
    1,679

    The Switch Statement

    I am writing the following Switch Statement


    switch( Choice )
    {
    case 1;
    Num=Rational();
    printf("%f",Num);
    break;
    case 2;
  24. Replies
    4
    Views
    4,947

    And if you insists on using scanf- which seem s a...

    And if you insists on using scanf- which seem s a bit cumbersome in this case, use scanf(%s %s %s and so on, until covering all white spaces, &string)

    Then you will also get the title of least...
Results 1 to 24 of 25