Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. razovy

    Simple way to call other classes Methods. How?

    I have, for example, two classes: public class Math {} { public int Power3( int x){ return (x*x*x); } } // and in the same module: public class A(){ private int y; public int Get_Pow3 (int mmm){ y = Power3(mmm); } } And it causes Error. This: public int Get_Pow3...
  2. razovy

    Help in array of array of classes needed

    I want to create class Matrix which contains array of class Rows. Class Rows contains array of Cells. Here is the declaration: public class Cells { public int value = 0; public int color = 0; public int background = 0; } public class Rows {...
  3. razovy

    Graphics and User Control

    Bug found - I did everythimg correct, but converted all from twips to pixels as a VB programmer... :-))
  4. razovy

    Graphics and User Control

    I need to create basic MyControl - Custom (User) Control having the only "Line" method drawing straight line inside MyControl. I want to call this method as MyControl1.Line(x1,y1,x2,y2) from the Main Form on Button_Click Event. And no more code in this form for now. -------- And I'm...

Part and Inventory Search

Back
Top