Search:

Type: Posts; User: prog-bman

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    5,300

    Crazy times. I still check in here and there. ...

    Crazy times. I still check in here and there.

    This place holds a special spot for me since this is where I really started learning to code.
  2. Replies
    5
    Views
    10,591

    Ditto what was said above. But to answer the...

    Ditto what was said above. But to answer the other part of your question you could do something like this to know the type.

    This code isn't compilable but here's the idea.


    enum Types
    {
    ...
  3. I am a self taught person. My position is...

    I am a self taught person.

    My position is neither pro or con education. Do what works best for you. I understand that a formal education does ensure you know more than just coding(mathematics,...
  4. You need to change the parameter passing logic in...

    You need to change the parameter passing logic in the second if. The Oracle one.

    This:

    rli.CommandText = "SELECT * FROM PLANT.VWEMPLOYEE where EMPNUM=EMPNUM";...
  5. Replies
    41
    Views
    3,771

    What just happened? Anyone?

    What just happened? Anyone?
  6. Well, Did you get the job?

    Well,

    Did you get the job?
  7. I am not a Linux user besides very very little...

    I am not a Linux user besides very very little dabbling in Ubuntu. But I think code blocks works on Linux and should have a fairly user friendly editor.

    Code::Blocks
  8. Replies
    35
    Views
    5,805

    One bucket coming right up. Merry Christmas!

    One bucket coming right up. Merry Christmas!
  9. Replies
    3
    Views
    1,506

    Have you tried looking it up? Passing...

    Have you tried looking it up?

    Passing Arguments C#
  10. Replies
    18
    Views
    2,720

    That is because y could be less than 1. ...

    That is because y could be less than 1.

    Remember with powers you are raising the value to itself.

    2^3 = 2*2*2 = 8

    So you need to change your logic since what you are doing currently you are...
  11. Replies
    11
    Views
    1,956

    Not sure if you are going for reverse psychology...

    Not sure if you are going for reverse psychology or just being a downer.

    Anyways, I go through the same thing. Not with learning how to code but working on personal projects. Its so much easier to...
  12. Replies
    18
    Views
    3,278

    I have been using it now for a couple of...

    I have been using it now for a couple of projects. The color theme changer is a MUST. Also the registry change to make the toolbar commands not be all caps is also good.

    One improvement that has...
  13. Replies
    6
    Views
    3,819

    Just a quick suggestion on your vectoredit code....

    Just a quick suggestion on your vectoredit code. You can use a template to avoid that code duplication.



    template <class T>
    void CopyAndReduce(vector<T> &x)
    {
    for(int loopcontrol = 0 ;...
  14. Replies
    19
    Views
    4,740

    I am not retired. I check the forums quite...

    I am not retired. I check the forums quite frequently but the amount I answer questions is pretty much non existent. Don't have a reason other than most of the time other people already have good...
  15. Replies
    19
    Views
    4,740

    Hey Rod :-)

    Hey Rod :-)
  16. Replies
    3
    Views
    3,629

    You need to clear out the controls on the panel...

    You need to clear out the controls on the panel when creating a new playfield


    panel_Speelveld.Controls.Clear()
  17. Replies
    19
    Views
    3,440

    Poll: I really doubt anyone here is trolling for your...

    I really doubt anyone here is trolling for your code, especially VirtualAce(He can make his own stuff). If you are really worried about it tag a license agreement to the code and if you actually turn...
  18. Replies
    12
    Views
    14,676

    It's possible to get that high. But as was...

    It's possible to get that high.

    But as was said it depends on where you are located. Just be good at it and you should make good money for your area :).
  19. Replies
    7
    Views
    1,548

    Right that is perfect for events. What I did was...

    Right that is perfect for events. What I did was for a property changing usually done for UI updates and what not. But you could do the same concept in a game.

    Another example


    public...
  20. Replies
    7
    Views
    1,548

    Well. I am still waiting on what you are trying...

    Well. I am still waiting on what you are trying to accomplish..so if you could elaborate on your goal that could help me out..but I am thinking you are looking for some sort of event model.

    Here...
  21. Replies
    7
    Views
    1,548

    I guess I need a better understanding of what you...

    I guess I need a better understanding of what you are trying to do.

    You want child classes to have a reference to the parent class they are members of?
  22. Replies
    7
    Views
    1,548

    You can set it via a property or pass it to...

    You can set it via a property or pass it to function calls. Just depends on what you are trying to accomplish.



    A ains = new A();
    B bins = new B();

    ains.BIns = bins;
    bins.AIns = ains;
  23. Replies
    31
    Views
    5,882

    Yep. Got a couple of servers here that aren't...

    Yep. Got a couple of servers here that aren't being used to full capacity quite yet, so why not use them for something good. And running it on my desktop and laptop.
  24. Replies
    31
    Views
    5,882

    Figured I would bring it back with you Mario :)

    Figured I would bring it back with you Mario :)
  25. Replies
    4
    Views
    3,960

    Shouldn't you be using the wide character...

    Shouldn't you be using the wide character functions to do your data input.

    Look for wchar.h
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4