Search Result

Collapse
4 results in 0.0015 seconds.
Keywords
Members
Tags
property
  •  

  • Can anyone explain Private vs. Public properties in Class modules

    I've started using class modules, and admittedly is quite inexperienced in this particular area, and there is one thing I can't seem to wrap my head around.

    Part of the code is the property StartHeight. Get and Let shown below:
    Code:
    Public Property Let StartHeight(intValue As Integer)
        pIntStartHeight = intValue
    End Property
    Public Property Get StartHeight() As Integer
        StartHeight = pIntStartHeight
    ...
    See more | Go to post

  • Infog
    started a topic Custom programming of a strongly typed datatable?
    in .NET

    Custom programming of a strongly typed datatable?

    Is it possible to edit a strongly typed dataset so that each table and column has additional properties?

    If I could record the ValueMember and DisplayMember for each table I'm using, I could write a general solution for my display layer that is much shorter than coding the "data --> display" part of the windows form every time I need to display a DataGridView, ComboBox, etc.
    See more | Go to post

  • How to set the "style" attribute in c sharp webbrowser

    I have a webbrowser application and I need to change the "style" attribute of an HTMLElement. Every other attribute except style is working. I have no idea why.

    Example:
    Code:
      webBrowser.Document.GetElementById("elementName").SetAttribute("style", "display:block;");
    That does not work at all. Any suggestions/ideas?

    I was reading this, http://weblogs.asp.net/rweigelt/archive/2006/11/27/1062699.aspx,...
    See more | Go to post

  • Problem with duplicating two combo boxes from another form

    I am trying to move the location of two combo boxes to a different form, but it is not working very well. the two combo boxes are cmbEmployeeID and cmdPerformance. I am trying to move them to a subform that pops up from another form.

    I copied everything exactly, the row source is exactly the same, and I added the reference in the forms Record Source. (seen below)

    cmbPerformance RowSource
    Code:
    SELECT STAT_Performance_LT.PerformanceID,
    ...
    See more | Go to post
Working...