Question : Clean install of Win 7 and reset bios and now cant boot

I did a clean install of win 7 – x64 the other day. I didn’t have my memory re-mapped so I did that on the bios to get all 4GB access… I also played around w/ the bios and somehow I reset the bios to defaults…

Anyways, I can load the bios, and that’s about what I can do, stops. I can’t load the win 7 bootable disc or boot from the hard disk. I get 1 beep from the mobo so it sounds everything checks out ok, and the bios recognizes everything. I am going to start re-plugging things in today after work – bare bones and I got an extra HD to see if that’s root cause with the master boot area of the disc.

All I get is a flashing cursor “_” on the top left and I can’t get any boot details to show up. Anyone heard of this issue before or any suggestions?

Answer : Clean install of Win 7 and reset bios and now cant boot

Keeping above comment into mind see the sample code and Images +  description in images.

 The DatagridView labeled as restructure,  has columns created manually and then filled through code.


I have attached everything four times then attachment succeeded, due to slow net connection :S
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'TODO: This line of code loads data into the 'Db2DataSet.Notes' table. You can move, or remove it, as needed.
        Me.NotesTableAdapter.Fill(Me.Db2DataSet.Notes)
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        DataGridView1.Rows.Add(Db2DataSet.Tables(0).Rows.Count)
        For i As Integer = 0 To Db2DataSet.Tables(0).Rows.Count - 1
            For j As Integer = 0 To Db2DataSet.Tables(0).Rows(i).ItemArray().Count - 1
                If j <> 1 Then
                    DataGridView1.Rows(i).Cells(j).Value = Db2DataSet.Tables(0).Rows(i).Item(j)
                Else
                    Dim c As DataGridViewComboBoxCell = New DataGridViewComboBoxCell()
                    For Each rho As DataRow In Db2DataSet.Tables(0).Rows
                        c.Items.Add(rho.Item(1))
                    Next
                    DataGridView1.Rows(i).Cells(1) = c
                End If
            Next j
        Next i
    End Sub
End Class
Random Solutions  
 
programming4us programming4us