Search:

Type: Posts; User: Barjor

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    2,700

    Do you want to work for Microsofts XP team?

    Do you want to work for Microsofts XP team?
  2. Replies
    3
    Views
    1,360

    What I am trying to do is to create overloaded ...

    What I am trying to do is to create overloaded functions that will take care of intersections between Arcs and line

    public Vector Intersect( Line, Line );
    public Vector Intersect( Line, Arc );...
  3. Replies
    3
    Views
    1,360

    Solving type of class

    This is kinda lengthy but I am curious if there is a neat solution to this

    I have a class like so


    public abstract class Entity
    {
    public abstract void Draw(Graphics g);
    public...
  4. Replies
    2
    Views
    3,402

    found this one...works great ...

    found this one...works great

    www.intel.com/design/pentiumiii/sml/24504301.pdf
  5. Replies
    2
    Views
    3,402

    Inverse a 4 * 4 matrix

    I can not find any code that sems to work for inversing a 4 * 4 matrix, neither Gaussian or Cramers. Does anyone know where to find actual code that you know works. I don't want to use any open GL...
  6. Replies
    3
    Views
    1,537

    Thanks Silvercord. Your explenation was just what...

    Thanks Silvercord. Your explenation was just what I needed to get the "ahaaaaa" experience. That fourth row always been confusing me. I am working with a 3D cad system so sooner then later I will...
  7. Replies
    3
    Views
    1,537

    What is what in a 4*4 matrix

    I am kinda new to this so please bare(sp) with me
    When I describe the orientation of something I am supposed to use a 4*4 array aka matrix..right? But what does each field represent in that matrix?...
  8. Thread: Fire an event

    by Barjor
    Replies
    1
    Views
    1,501

    Fire an event

    Hi

    So I have an event handler for a button like so


    private void button1_Click(object sender, System.EventArgs e)
    {
    //DoCoolStuff
    }
  9. Replies
    2
    Views
    1,699

    Haven't done mfc for awhile but I think you need...

    Haven't done mfc for awhile but I think you need to do
    pDoc->Line1.DrawLine(pDC);
  10. Thread: Draw arcs

    by Barjor
    Replies
    2
    Views
    2,767

    Will the GDI arc be rotated when I rotate my...

    Will the GDI arc be rotated when I rotate my directX stuff?. If not it sounds easier to draw an arc with DirectX LineList then to modify the GDI arc to move with the DirectX rotation matrix. I have...
  11. Thread: Draw arcs

    by Barjor
    Replies
    2
    Views
    2,767

    Draw arcs

    Me again

    To draw lines and points are easy with DirectX but I can't find any built ins for arc or ellipses or splines. I could create a circle by drawing alot of small lines but I wonder if that...
  12. Replies
    1
    Views
    4,940

    Think I got it but is there an easier way to do...

    Think I got it but is there an easier way to do it

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dx8_c/directx_cpp/graphics/programmersguide/samples/cpp/pick.asp
  13. Replies
    1
    Views
    4,278

    DirectX background

    When I clear my device I set the background color like so


    device.Clear(ClearFlags.Target, System.Drawing.Color.Blue, 1.0f, 0);


    But what do I do if I want a background that graduatly(sp)...
  14. Replies
    1
    Views
    4,940

    Mouse position in DirectX

    Hi

    I am working with DirectX and have a question about how to get feedback about where the mouse is. I am working with C# but I would guess what I am looking for is pretty universal. My problem is...
  15. Replies
    5
    Views
    1,772

    I am also kinda new but I am pretty sure that the...

    I am also kinda new but I am pretty sure that the code have to be within "private void InitializeComponent()" for the designer to see it. Also beware that the designer change code as it see fit in...
  16. Replies
    7
    Views
    3,167

    True both Java and C++ have exception but I have...

    True both Java and C++ have exception but I have never seen it been used concistently(sp). It is like everyone have there own way to return errors...and I am stil wery new to C#. Although it is so...
  17. Replies
    7
    Views
    3,167

    This is what I ended up with private void...

    This is what I ended up with



    private void tXPos_Validating(object sender, System.ComponentModel.CancelEventArgs e)
    {
    try
    {
    XPos = double.Parse(tXPos.Text);
    }
  18. Replies
    7
    Views
    3,167

    Thanks vasanth That code snippet was just what...

    Thanks vasanth

    That code snippet was just what I was loking for.
  19. Replies
    7
    Views
    3,167

    Validating input

    Hi

    I been using all kinds of cumbersome loops in combination with "Char.IsDigit" to validate my textbox user input to make sure it is valid but there gotta be a better way to do it. Does anyway...
  20. Replies
    31
    Views
    6,123

    That makes me wonder when we will see a picture...

    That makes me wonder when we will see a picture of you TK?
  21. Replies
    16
    Views
    2,758

    Try this. Install Linux. -> format with a floppy....

    Try this. Install Linux. -> format with a floppy. -> reboot, LILO stil try to boot. Conclusion..MBR wasn't formated
  22. Replies
    16
    Views
    2,758

    Ride-or-Die>>> All posts you have done on this...

    Ride-or-Die>>> All posts you have done on this subject is flat out wrong. You don't know what your talking about.

    jawwadalam>> Follow kevinalms advice. I have done it that way many times,works...
  23. Replies
    17
    Views
    2,263

    Poll: I use it for almost all my win projects. I like...

    I use it for almost all my win projects. I like it alot but there is to much macros in it..Although if I would start over I would rather spend my time with managed C++ and the .NET framework then...
  24. Replies
    9
    Views
    1,475

    You also might want to look into the MS helper...

    You also might want to look into the MS helper class CObjectArray on the mdsn helpfiles. It is wery nice and easy to work with.
  25. Replies
    10
    Views
    3,235

    As fare as I know the only cert for programers...

    As fare as I know the only cert for programers are mcsp (microsoft certified solution provider) I started to do that one but got bored with the DB stuff. Got a MCSE + internet that isn't worth crap...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4