Search results for query: *

  1. S

    Calculating 1/2 hour averages

    Perfect...thanks.
  2. S

    Calculating 1/2 hour averages

    That makes sense. I'll give that a shot and see what I can come up with. I'll let you know. Thanks. Nick
  3. S

    Calculating 1/2 hour averages

    Looking for some ideas on how to average my data by 1/2 increments. We've got a weather station and the data is written to a sql database every 2 minutes. I need to someone average the data by 1/2 hour increments. So, data between 3pm and 3:30pm need to be averaged for the 3:30pm time...
  4. S

    Parsing XML Data

    John, The code you provided help me through what I wanted to do. I was able to take your example and tweak it. Thanks a lot! So, the code you provided is LINQ? I'm not really new to vb.net, just haven't used it all that much. I'm still learning new things. I went to DevConnections a...
  5. S

    Parsing XML Data

    Let me try and make this less confusing... Here is a snippet of the xml data: <?xml version="1.0"?> <meteohub> <config> <language>en</language> <temp_sensor print="°F" unit="f">th0</temp_sensor> <hum_sensor print="%" unit="rel">th0</hum_sensor> <dew_sensor print="°F"...
  6. S

    Parsing XML Data

    Not sure if correct spot or not... I have really never worked with XML files before. I've got a file that I need to extract data from...i guess a particular node. I've attached the file. The data that I need is under meteohub/data --> timeframe="actual" There are several items under this...
  7. S

    DataGridView - VB 2010 - Checkbox

    I've got a SQL table with the following columns: username (varchar), Active and Admin (both bit). I've created my tableadapter and on my form i've got a datagridview that shows the data. Username can't be edited, but Active and Admin can...both are checkboxes. Without having a "save" button...
  8. S

    Question Login Form/Main Form

    I'm sorry...I plan on using the dialog box before the main form loads based on the link you had provided.
  9. S

    Question Login Form/Main Form

    Thanks all for the responses. I'll use a login dialog box when the main form opens up. Nick
  10. S

    Question Login Form/Main Form

    I've created a windows form application in vb 2010. I've got all my forms complete and now want to add a Login screen. One the login screen, after the username/password is entered and OK is pressed, I try to open the a connection string. Obviously if the connection fails, the user has entered...
  11. S

    Question Control Focus - Backcolor - multiple controls

    ALX, Your solution worked. I am still new to vb.net and still learning. JohnH...I took a look at your suggestion but it didn't work. If I try this it take the last control I selected and creates the event only for that control. Unless I'm doing something wrong... Thanks for the replies. Nick
  12. S

    Question Control Focus - Backcolor - multiple controls

    Is there a more efficient/easier way changing the backcolor of a control when it has focus and lost focus? Let's say I've got 10 text boxes. Right now I would have 20 different events...10 for Enter event and 10 for Leave event. Of course, entering would change the back color to "green" and...
  13. S

    Question DataGridView - VB 2010

    I've got a data table in my dataset that is a "stand alone" table. There are no table adapters that fill this data table...I fill the data table using code. I want this data table used as a temp table that will populate a crystal report. Let me call this datatable CRData From Form1, I press...
Back
Top