Advertisement
Advertisement
| 02.28.2008 at 09:42PM PST, ID: 23202997 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: |
Dim DisplayFamilyMembers = From client In ClientDB.Clients _
Where client.FamilyGUID = GlobalFamilyGUID _
Select New With {client.ClientGUID, client.FamilyGUID, .Name = client.FirstName + "," + client.LastName}
Dim DisplayNewFamilyMember = From client In ClientBindingSource _
Where (client.FamilyGUID = GlobalFamilyGUID) _
Select New With {client.ClientGUID, client.FamilyGUID, .Name = client.FirstName + "," + client.LastName}
Dim TotalMemberNames = (From client In DisplayFamilyMembers).Union(From client In DisplayNewFamilyMember)
MyClientsInFamilyBindingSource.DataSource = TotalMemberNames
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 02.28.2008 at 10:20PM PST, ID: 21011308 |
| 02.29.2008 at 07:50AM PST, ID: 21014293 |
| 03.07.2008 at 02:04PM PST, ID: 21074500 |
| 03.07.2008 at 02:25PM PST, ID: 21074658 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
Try
Dim MyRotoDB As New RotoSchedDataContext
Dim MyCurrentRoto = From rotoload In MyRotoDB.RotoLoads Select rotoload
RotoSched_BindingSource.DataSource = MyCurrentRoto
Dim MySnapData = From rotoload In MyRotoDB.RotoLoad_Snapshots Select rotoload
RotoSched_Snapshot_BindingSource.DataSource = MySnapData
RotoSched_Snapshot_BindingSource.Clear()
For i As Integer = 0 To RotoSched_BindingSource.Count - 1
Dim MyOlddata As RotoLoad = Nothing
Dim MyNewData As RotoLoad_Snapshot = RotoSched_Snapshot_BindingSource.AddNew
MyOlddata = RotoSched_BindingSource.Item(i)
'Assign data
MyNewData.DeMoldCode = MyOlddata.DeMoldCode
MyNewData.HeatCode = MyOlddata.HeatCode
MyNewData.MachinePref = MyOlddata.MachinePref
MyNewData.MarkedForRemove = MyOlddata.MarkedForRemove
MyNewData.PartNumber = MyOlddata.PartNumber
'Add to new table
RotoSched_Snapshot_BindingSource.Add(MyNewData)
Next
RotoSched_BindingSource.EndEdit()
RotoSched_Snapshot_BindingSource.EndEdit()
MyRotoDB.SubmitChanges()
MsgBox("Restore point created", MsgBoxStyle.Information)
Catch ex As Exception
MsgBox(ex.ToString, MsgBoxStyle.Critical)
End Try
|
| 03.07.2008 at 06:58PM PST, ID: 21075662 |