CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gmcconville

Search: Search took 0.03 seconds.

  1. Re: Combo box binding to different table

    WOOOHOOOO!!!!!!

    After two weeks of researching this I figured it out.

    I use one binding source for all controls, and I needed to add a value member


    BSource = new...
  2. [RESOLVED] Combo box binding to different table

    Hey, I have searched for ages on this but cannot get it working.

    I have two tables, one called Fields and another called Sections.

    There is a relationship between the two table for a field...
  3. Re: How to access Form1 controls from another class?

    I am unsure as to why this cannot work, but can you use the following code instead?



    namespace robitSeri
    {

    public partial class Form1 : Form
    {
    public mySerial newSerial;
  4. Replies
    0
    Views
    662

    Component Properties

    Hello,

    Can any one please tell me how to add properties in a component, where you can set more than one value.

    For example, with the following code, MyPoints shows in the properties window and...
  5. Replies
    0
    Views
    1,527

    Text Alignment - Cell Painting

    Hello, I am stuck on a problem that I am hoping that somebody might be able to help me with

    I want to be able to line up a currency symbol on the left hand side of the cell, with a negative sign...
  6. Replies
    0
    Views
    404

    Inheritance

    Could anyone please let me know how I would go about adding a variable into a collection or class that is part of an inherited class

    EG: I would like to add a value into the columns collection in...
  7. Replies
    1
    Views
    3,167

    How to give a new control scrollbars

    I would like to create a new control, similar to the datagrid.

    From what I have read, to give it scrollbars it needs to inherite from ScrollableControl

    However, I also want to inherate from...
  8. Replies
    1
    Views
    571

    Finding a field

    Hi, need some advice please

    New to Database programming, but what I want to do is update a database everyday with information I am getting from a file

    So what I want to do is the following
    ...
  9. Replies
    7
    Views
    6,941

    Re: A list in a list

    Thankyou, your help is really apreciated
  10. Replies
    7
    Views
    6,941

    Re: A list in a list

    I was just doing that when you were posting your comment. Thankyou very much for your help. When you say that I'm not following the naming conventions, is that because I am using the same name for...
  11. Replies
    7
    Views
    6,941

    Re: A list in a list

    Nevermind, I just figured it out
  12. Replies
    7
    Views
    6,941

    [RESOLVED] A list in a list

    Can anyone please tell me what this error means and how to fix it

    Products.Add(new product());
    Products[0].Code = "ANW135";
    Products[0].Description = "Coffee...
  13. Replies
    1
    Views
    804

    Noob question

    really simple question

    Is there anyway to overload the return value as I have tried to do below

    class currency
    {
    private Int64 Total;

    public Int64 currency
    ...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured