Search results for query: *

  • Users: xiecsuk
  • Content: Threads
  • Order by date
  1. X

    Question MOF Error Trying to Install SQL Server Express 2014

    I have installed the new Visual Studio.NET Community edition and am now trying to install SQL Server 2014 Express With Tools. Part way through I am getting a MOF syntax error. The only thing I can find on the web relating to this is FIX: "A MOF syntax error occurred" error message occurs when...
  2. X

    Question Resizing of Web Page Height

    I have a site which has a full width fixed height header and a full width fixed height footer. In between I have a fixed width left hand column, a fluid middle column and a fixed width right hand column. Everything displays OK when I open the page. If I then reduce the width of the page, and...
  3. X

    DataGridView - Updating a Field

    I want to set two fields on a row when the User starts to update the row. These will set the current DateTime and the userid of the person updating the row. I have tried using the Row_Changed event but of course I find I am in a recursive loop. What is the best way to make these changes? The...
  4. X

    SuspendLayout / ResumeLayout

    What exactly does SuspendLayout / ResumeLayout do? I have an MDI form that has a toolbar with buttons to open up to 3 child forms, which are derived from a BaseChild class. Each child form has a DataGridView to display a table via a TableAdapter. As each child form is opened I set...
  5. X

    Maximizing Child Forms

    I have a .NET 2.0 application consisting of an MDI form and 3 child forms each derived from a base child form. When one child form is maximized, they are all maximized. Is this normal? I have a Windows pulldown which allows the User to select each form or to tile them. I also have another form...
  6. X

    Binding an XML File

    I have three different XML files which contain data I need to display on a Windows form. I want to load them one at a time into my VB.Net 2005 program so that I can bind them to a form. I am currently reading each into an XmlDocument object but it doesn't seem to hold the binding. Should I be...
  7. X

    BindingNavigator Control Disabled

    I have included a BindingNavigator control on a Windows form that has text boxes displaying the contents of an XML file. The XML file has been read into an in-memory table using DOM as an XmlDocument object. It is not bound to the BindingNavigator control. When I display the form, the...
  8. X

    Setting Option Buttons in Code

    I am writing a VB app which has a form with 3 option buttons on it. In the Form Load I am setting one of the option button's Value property based on information read from the registry. When I ran it, I was surprised that this triggered the On Click event for that option button. I didn't expect...
  9. X

    SQL DateTime v VB.NET Date

    I have a variable declared as Date in VB.NET. I have a field declared as DateTime in an SQL table. I just cannot seem to SELECT, INSERT or UPDATE the field without getting a "System Error". I have tried CAST to try and convert the variable as I read or write it, without any luck. I have resorted...
  10. X

    Referencing a Control

    I have an array of controls on a form named txtPlayer11, txtPlayer12, ... I want to set properties of each control in a For ... Next loop using the loop index to create the control name. However, it appears that the Controls collection only takes an integer index, thus Me.Controls(12), rather...
Back
Top