Search:

Type: Posts; User: JLBSchreck

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,896

    I would say that you did a good job. The...

    I would say that you did a good job. The interface if similar to that of an old windows 3.1 version tetris, that my parents and I used to play often. About the only thing that I would say that you...
  2. Replies
    11
    Views
    1,330

    Thanks for the input folks, I had suspected that...

    Thanks for the input folks, I had suspected that the swap/page file was included in the heap, but I wanted to check to make sure of this due to the fact that I am wanting to make a program that is...
  3. Replies
    11
    Views
    1,330

    "New" Operator question

    I know that the new operator allocates a variable in a portion of the called the heap. Now I was wondering if the heap consists only of the unused ram, or if it also includes the swap/page file? I...
  4. Replies
    25
    Views
    3,220

    Tigerdirect.com used to have a usb to usb...

    Tigerdirect.com used to have a usb to usb transfer device about a year or two ago. The divice was esentially the same as the one that SMurf described, and if I remember correctly, the price was...
  5. Replies
    4
    Views
    1,788

    My sister has not had many problems with the...

    My sister has not had many problems with the video card of late, due to a couple factors. Now yes the computer has crashed once or twice, since my original post, but for the most part it has been...
  6. Replies
    14
    Views
    1,950

    Due everyone's input I now understand how the...

    Due everyone's input I now understand how the works "Mid(s1, 3, 0) = "123";". My main problem was I was just thinking of a plain function and not of using a class. I gust have to start to think more...
  7. Replies
    14
    Views
    1,950

    Yes I was talking about the "Duplicate VB Mid"...

    Yes I was talking about the "Duplicate VB Mid" contest thread. I now about passing by reference and by value, I also know abit about class, constructors, and operator overloading, but as of yet I do...
  8. Replies
    14
    Views
    1,950

    How Backwards Functions

    I have been rambling through different threads on the cprogramming.com borad, and have noticed the function that follows.
    Mid(s1, 3, 0) = "123"; Now I don't know the proper name for this type of...
  9. Replies
    5
    Views
    4,531

    I have never heard of this function 'showbits',...

    I have never heard of this function 'showbits', but from its name and the sintax I believe that there might be a workaround, or another function that does the same thing as this function. I know that...
  10. Thread: Chips

    by JLBSchreck
    Replies
    40
    Views
    8,104

    Poll: Personally I preffer the chips made by amd,...

    Personally I preffer the chips made by amd, mainly because of their price, but there other things that I like better about Amd than Intel. Included below is a link to a website that talks about the...
  11. Replies
    7
    Views
    2,470

    I am not sure if this is the reason for your...

    I am not sure if this is the reason for your problem but, using msvc++ 6, I had to chande the following code from.


    else
    if ( number < guess_value )

    To the following to get your...
  12. Replies
    31
    Views
    7,755

    Poll: I started out programming with (WYSIWYG) HTML in...

    I started out programming with (WYSIWYG) HTML in June of 1999, if you can consider that programming, and then a few weeks I started teaching myself MSVB 5. My dad then got MS Visual Studio 6 pro....
  13. Replies
    3
    Views
    9,140

    Stoned_coder, you said that the reason that I am...

    Stoned_coder, you said that the reason that I am having the problem with my complier when I use 'union REGS in, out;' is because MSVC++ 6.0 Pro. does not support actual dos. If I understand you...
  14. Replies
    3
    Views
    9,140

    Problem with 'union REGS in, out;'

    To put it simply the way that I stumbled on this problem is that I wanted to use vesa vba to creat my own user interface for my programs, plus I wanted to just test the capabilities of c++. The only...
  15. Replies
    3
    Views
    10,257

    How to declare word in c++?

    I was wondering how one would go about declaring a word in msvc++ 6.0. I checked MSDN but the did not have any information on the subject.

    -JLBShecky
  16. Replies
    8
    Views
    2,988

    No. This would not work. The reason is that DDR...

    No. This would not work. The reason is that DDR uses a different number of pins than sdram. Sdr uses 168-pins, while ddr uses 184-pins, thus they are incompatable.

    -JLBShecky
  17. Replies
    33
    Views
    5,377

    I use MS Visual Studio 6.0 Professional...

    I use MS Visual Studio 6.0 Professional Edition.(MSVC++)

    - JLBShecky
  18. Replies
    4
    Views
    1,788

    System problems

    My sister is having problems with the computer that is used mostly by her. The computer video keeps cuting out and then the whole system stops function. From what I have deduced the problem is being...
  19. Replies
    1
    Views
    1,143

    Question about no '.h' standard

    I have been wondering when the new standard for head files came into existance. I am asking this because I have been seeing it mentioned in so many posts, and the c++ course that I am using has...
  20. Replies
    6
    Views
    4,912

    In the example given you do not need to creat...

    In the example given you do not need to creat 'examples.txt' because it will be created at run time. When you use the string literal "examples.txt" it tell the program to open a file called...
  21. Replies
    8
    Views
    1,353

    It seem that the keyword extern does not work...

    It seem that the keyword extern does not work with structures. Is there a way to make it so that a structure is visible from more than one module?

    -JLBShecky
  22. Replies
    8
    Views
    1,353

    Now lets see if I have the correct. I have one...

    Now lets see if I have the correct. I have one module with a variable in it (that is not declared in any function). If I want to access that variable from functions in other modules all I have to do...
  23. Replies
    4
    Views
    1,453

    Another thing that you could try is to go try is...

    Another thing that you could try is to go try is to click Settings on the Project menu. Then click the Link tab, and click Customize in the Category box. Once you are there click the force compile...
  24. Replies
    8
    Views
    1,353

    Thanks for the input XSquared, I tried the code...

    Thanks for the input XSquared, I tried the code (which was basicly the same as mine except for a few differances in the names) and got the same error, so I tried the 'fource output' complier option...
  25. Replies
    8
    Views
    1,353

    Program wide variables

    I am wanting to have a variable that is accessible from any module, so that the 'main' function in moduleA(modA.cpp) can set that value of variable 'bob', while function 'check_status' in...
Results 1 to 25 of 26
Page 1 of 2 1 2