Search:

Type: Posts; User: BrandNew

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. I have changed public event...

    I have changed

    public event System.EventHandler PositionChanged;
    to

    [field:Browsable(true)]
    public event System.EventHandler PositionChanged;
    I still don't see the event under the events...
  2. Custom event not added to event section of properties panel

    This is visual c# so I'm not sure if this thread should go here.

    I am attempting to add a custom event to the event section of properties panel for my custom control. The problem is no event is...
  3. Error C1083: Cannot open precompiled header file

    Error C1083: Cannot open precompiled header file:'Debug\(What I named the file).pch

    I can't compile this due to the error listed. I usually don't use this template for writing so I'm not familiar...
  4. Replies
    8
    Views
    2,348

    The first solution worked Thanks

    The first solution worked

    Thanks
  5. Replies
    8
    Views
    2,348

    How to make the program remain open

    I have visual studio 2010 and when I run a program the command prompt window with the program opens and closes automatically. How can I make the window remain open without running the program from...
  6. Replies
    6
    Views
    2,356

    Thanks

    Thanks
  7. Replies
    6
    Views
    2,356

    Thanks everyone

    Thanks everyone
  8. Replies
    6
    Views
    2,356

    What is a good c++ compiler for windows xp

    I have been learning C and encountered errors with the compiler that I was using. I expect less issues with compilers for c++ and windows but was wondering which one is good to learn c++ with.
  9. Replies
    2
    Views
    2,094

    Thanks. Link isn't working, I'll check it...

    Thanks.

    Link isn't working, I'll check it again later and look at my books indentation till then.
  10. Replies
    2
    Views
    2,094

    fscanf printf while loop help

    I made this program and got it to compile without any errors but it doesn't run as expected. If I enter 2 I will get to see all of the student information for each individual. Once I get back to...
  11. Replies
    2
    Views
    5,126

    Thanks, this is a tad confusing for me atm and I...

    Thanks, this is a tad confusing for me atm and I don't want to spend anymore hours on this exercise. I'll come back to it at a later time.
  12. Replies
    2
    Views
    5,126

    structure array calloc realloc help

    I am trying to complete this exercise but don't really know how to. I am taking things one step at a time to try and figure it out. I have a lot of compiler errors and have started at the top of...
  13. Replies
    4
    Views
    1,105

    Thanks

    Thanks
  14. Replies
    4
    Views
    1,105

    Thanks ptrMC=&myCars[3]; I guess I was...

    Thanks


    ptrMC=&myCars[3];

    I guess I was pointing to the address of an address and the amount of elements is irrelevant to the pointer.
  15. Replies
    4
    Views
    1,105

    structure array pointer function help

    I get weird output when I run this program. It seems the printcars function isn't receiving any of the data from the main() function. I have set up a pointer but assume it's not setup properly.

    ...
  16. Replies
    7
    Views
    4,082

    Thanks I was basing my if conditions from the...

    Thanks

    I was basing my if conditions from the example in the book but that example has a different value of course


    #include <stdio.h>
    #include <string.h>

    void sort (char *,char *,char...
  17. Replies
    7
    Views
    4,082

    I have tried removing the * already and the sort...

    I have tried removing the * already and the sort function doesn't print anything if I do. I tried again and the same result. Not sure how to write out the other part you said in the compiler.
  18. Replies
    7
    Views
    4,082

    string pointer passed to a function help

    I'm not so familiar with functions and function prototypes. I get compiler errors which is the line where I attempt to pass the strings to a function

    Type error in argument 1 to 'sort'; expected...
  19. for(y=0;y

    for(y=0;y<=x;y++){
    printf("\nName %d is %s\n",y+1, cName[y]);

    thanks
  20. limiting printf output in scanf multi dimension character array help

    I have been attempting to get this exercise right but don't know how to write the code to get desired results


    #include <stdio.h>

    int main(void)


    {
    int x=0;
  21. Replies
    3
    Views
    2,231

    Thanks I've changed the code a tad, ...

    Thanks

    I've changed the code a tad,

    for(x=0;x<5;x++){
    printf("Enter name %d:", x+1);
    scanf("%s", cName[x]);
    }

    If I press space then enter a last name the last name is counted towards a...
  22. Replies
    3
    Views
    2,231

    scanf multi dimension character array help

    I am trying to complete an exercise and am unable to proceed to the next string after pressing enter. I have no warning in the compiler so am unsure of what's causing the issue.




    #include...
  23. Replies
    3
    Views
    4,652

    Thanks

    Thanks
  24. Replies
    3
    Views
    4,652

    scanf in an array help

    #include <stdio.h>

    int main(void)

    {

    int iNumbers[10];
    int iEntry=0;
    int x=0;
  25. Replies
    3
    Views
    6,901

    Thanks

    Thanks
Results 1 to 25 of 38
Page 1 of 2 1 2