class

  1. punto13

    Question Enumerate the classes from my interface

    Hi, I think my problem is easy to solve. I developed an interface called "Animal". My programmers created classes for "Dog", "Cat", and "Horse" Later I want to let the user create an animal in a Windows form. How can I get my annimals to appear in the combo for selecting one of them? Each...
  2. M

    Copying an Object

    Sorry, still pretty new bear with me... I have a Class called People. I have an object called Roger, another called Sally. How can I copy my 'Roger' object over top of 'Sally' so they are identical?
  3. P

    Datagrid bind using objects

    hi! i created a class i invoke the class as object in vb.forms i want bind object(parameters) to datagrid when return as arraylist from methods in form_load. i want to bind arraylist to datagird in form_load. it will bind, the grid show all the parameter from arraylist. but i want few columns...
  4. E

    Question Adding Property to DataGridView Column

    Hello to everyone, i have created one instance of datagridview on my form(by using the designer), with some columns from a custom class (CustomDataGridViewTextBoxColumn) which inherits from the base DataGridViewTextBoxColumn class. So far i ve added one extra property on my...
  5. P

    Resolved Using OnPaint method of an other class

    Hi, i'm a new comer here. First of all i'm not english, so forgive me whether i'll write something wrong.;) (nice smilies!) I'm trying to use the OnPaint method of the class "Form1" from an other class, my purpose is to draw something in form1 like a rectangle or a string. What should i...
  6. N

    Question Implementing Database access (MS Access) using VB2008 express

    I am new to VB and downloaded the VB 2008 Express recently. Am following the "Beginning VB2005 databases" book to learn as I go along. I have hit a snag where the book example is initializing a new instance of the data access base class as "Using objData as new WDABase", however the VB 2008...
  7. D

    Create homework project called Cream Delights, an order form/inventory program.

    Greetings all. Thank you for looking at my post. Please forgive me if I posted this in the wrong area. I am looking for assistance with a homework project in which I am struggling with and very stressed out about. I have spent the last 2 weeks doing a great deal of studying and reading and I am...
  8. V

    Question how can i delete my thread?

    how can i delete my thread? thanks!
  9. Taien

    Public Array

    I'm fairly new to VB and I am making a game as part of my portfolio project in a class. I'm having some trouble with array declaration though. Here's my code: Public varSkillLearnedArray(100) As Boolean varSkillLearnedArray() = {True,true,true} I have option explicit on and option strict...
  10. M

    Question Class Inheritance

    Hi i have problems coding for base class employee and its derived classes ss,os and cs. And salaries are calculated different for each category. For ss a basic pay and commission, os paid fixed monthly ans cs paid hourly. In a windows application...any help is very much appreciated
  11. M

    Help with Classes and Objects

    I think I'm still a little confused about Classes and Objects. I am creating a small game, to teach myself programming. It's kind of like a Pokemon card game, with different characters, monsters etc. I want to use a HERO Class to store all the info on the players and a MONSTER class to store...
Back
Top