Private
Sub frmCustomProperties_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim adpProperties As New SqlDataAdapter()
' ... here I populate the database with two tables named cntCustomProperties and PropertyValues
adpProperties.Fill(dsProperties)
' set the master
grdProperties.DataSource = dsProperties.Tables(
"cntCustomProperties")
grdProperties.MasterGridViewTemplate.AllowAddNewRow =
False
grdProperties.MasterGridViewTemplate.AllowDeleteRow =
False
grdProperties.MasterGridViewTemplate.AllowEditRow =
False
' template for values
Dim ValuesTemplate As Telerik.WinControls.UI.GridViewTemplate = New Telerik.WinControls.UI.GridViewTemplate
ValuesTemplate.DataSource = dsProperties.Tables(
"PropertyValues")
ValuesTemplate.AllowAddNewRow =
False
ValuesTemplate.AllowDeleteRow =
False
ValuesTemplate.AllowEditRow =
False
grdProperties.MasterGridViewTemplate.ChildGridViewTemplates.Add(ValuesTemplate)
' configure relation between two tables
Dim relation As Telerik.WinControls.UI.GridViewRelation = New Telerik.WinControls.UI.GridViewRelation(grdProperties.MasterGridViewTemplate)
relation.ChildTemplate = ValuesTemplate
relation.RelationName =
"p2v"
relation.ParentColumnNames.Add(
"PropertyId")
relation.ChildColumnNames.Add(
"PropertyId")
grdProperties.Relations.Add(relation)
' now configure the two templates
grdProperties.MasterGridViewTemplate.Columns(
"PropertyId").IsVisible = False
grdProperties.MasterGridViewTemplate.Columns(
"PropertyName").BestFit()
Dim cmdColumnAdd As New GridViewCommandColumn()
cmdColumnAdd.UniqueName =
"cmdColumnAdd"
cmdColumnAdd.UseDefaultText =
True
cmdColumnAdd.DefaultText =
"Add"
cmdColumnAdd.FieldName =
"PropertyId"
cmdColumnAdd.HeaderText =
"Add"
cmdColumnAdd.BestFit()
grdProperties.MasterGridViewTemplate.Columns.Add(cmdColumnAdd)
ValuesTemplate.Columns(
"PropertyId").IsVisible = False
ValuesTemplate.Columns(
"PropertyValueId").IsVisible = False
ValuesTemplate.Columns(
"CompanyCode").IsVisible = False
ValuesTemplate.Columns(
"EffectiveFrom").BestFit()
ValuesTemplate.Columns(
"Value").BestFit()
Dim cmdColumnEdit As New GridViewCommandColumn
cmdColumnEdit.UniqueName =
"cmdColumnEdit"
cmdColumnEdit.UseDefaultText =
True
cmdColumnEdit.DefaultText =
"Edit"
cmdColumnEdit.FieldName =
"PropertyValueId"
cmdColumnEdit.HeaderText =
"Edit"
cmdColumnEdit.BestFit()
ValuesTemplate.Columns.Add(cmdColumnEdit)
AddHandler grdProperties.CommandCellClick, AddressOf grdProperties_CommandCellClick
End Sub
Sub
grdProperties_CommandCellClick(ByVal sender As Object, ByVal e As EventArgs)
Dim cmdCell As GridCommandCellElement
cmdCell =
TryCast(sender, GridCommandCellElement)
Dim tName As String = CType(cmdCell.ViewTemplate.DataSource, DataTable).TableName
If tName = "cntCustomProperties" Then
AddCustomProperty(cmdCell.Value)
ElseIf tName = "PropertyValues" Then
'-- code for the edit here
End If
End Sub
Private Sub AddCustomProperty(ByVal pid As Integer)
Dim nr As DataRow = dsProperties.Tables("PropertyValues").NewRow
nr.BeginEdit()
nr(
"propertyid") = pid
nr(
"companycode") = "10"
nr("effectivefrom") = "1900/1/1"
nr(
"value") = "some new value here"
nr.EndEdit()
dsProperties.Tables(
"PropertyValues").Rows.Add(nr)
dsProperties.Tables(
"PropertyValues").AcceptChanges()
' I have tried many combinations but none seems to work.
grdProperties.GridElement.Update(GridUINotifyAction.AddRow)
'grdProperties.MasterGridViewTemplate.Update(GridUINotifyAction.BatchDataChanged)
'grdProperties.MasterGridViewTemplate.ChildGridViewTemplates(0).Update(GridUINotifyAction.BatchDataChanged))
End Sub
Hello everyone, my question is this.
I have a RadCorousel control in my application.
I’d like to know if it’s possible to add other controls (like GroupBox, Grid, Charts and so on..)
If it’s possible, How can I do that?
Thank you..
Hello everyone, my question is this.
I have a RadCorousel control in my application.
I’d like to know if it’s possible to add other controls (like GroupBox, Grid, Charts and so on..)
If it’s possible, How can I do that?
Thank you..
PLATFORM VERSION INFO
Windows : 6.1.7600.0 (Win32NT)
Common Language Runtime : 4.0.30319.1
System.Deployment.dll : 4.0.30319.1 (RTMRel.030319-0100)
clr.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfdll.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfshim.dll : 4.0.31106.0 (Main.031106-0000)
SOURCES
Deployment url : http://es01/Framework/Platform%20Framework%20v1.0/Platform/Apps/Launchpad/Platform.Apps.Launchpad/publish/retail/Platform.Apps.Launchpad.application
Server : Microsoft-IIS/6.0
X-Powered-By : ASP.NET
Application url : http://es01/Framework/Platform%20Framework%20v1.0/Platform/Apps/Launchpad/Platform.Apps.Launchpad/publish/retail/Application%20Files/Platform.Apps.Launchpad_1_49_475_297/Platform.Apps.Launchpad.exe.manifest
Server : Microsoft-IIS/6.0
X-Powered-By : ASP.NET
IDENTITIES
Deployment Identity : Platform.Apps.Launchpad.application, Version=1.49.475.297, Culture=neutral, PublicKeyToken=4d0711b5f89c8549, processorArchitecture=x86
Application Identity : Platform.Apps.Launchpad.exe, Version=1.49.475.297, Culture=neutral, PublicKeyToken=4d0711b5f89c8549, processorArchitecture=x86, type=win32
APPLICATION SUMMARY
* Online only application.
* Trust url parameter is set.
ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* Activation of http://es01/Framework/Platform%20Framework%20v1.0/Platform/Apps/Launchpad/Platform.Apps.Launchpad/publish/retail/Platform.Apps.Launchpad.application resulted in exception. Following failure messages were detected:
+ Value does not fall within the expected range.
COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.
WARNINGS
There were no warnings during this operation.
OPERATION PROGRESS STATUS
* [15/07/2010 6:39:22 PM] : Activation of http://es01/Framework/Platform%20Framework%20v1.0/Platform/Apps/Launchpad/Platform.Apps.Launchpad/publish/retail/Platform.Apps.Launchpad.application has started.
* [15/07/2010 6:39:22 PM] : Processing of deployment manifest has successfully completed.
* [15/07/2010 6:39:22 PM] : Installation of the application has started.
* [15/07/2010 6:39:22 PM] : Processing of application manifest has successfully completed.
* [15/07/2010 6:39:24 PM] : Found compatible runtime version 4.0.30319.
* [15/07/2010 6:39:24 PM] : Detecting dependent assembly Telerik.WinControls, Version=2010.2.10.713, Culture=neutral, PublicKeyToken=5BB2A467CBEC794E, processorArchitecture=msil using Telerik.WinControls, Version=2010.2.10.713, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=msil.
* [15/07/2010 6:39:24 PM] : Detecting dependent assembly TelerikCommon, Version=2010.1.10.504, Culture=neutral, PublicKeyToken=5BB2A467CBEC794E, processorArchitecture=msil using TelerikCommon, Version=2010.1.10.504, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=msil.
* [15/07/2010 6:39:24 PM] : Detecting dependent assembly Telerik.Reporting, Version=4.1.10.714, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE, processorArchitecture=msil using Telerik.Reporting, Version=4.1.10.714, Culture=neutral, PublicKeyToken=a9d7983dfcc261be, processorArchitecture=msil.
* [15/07/2010 6:39:24 PM] : Request of trust and detection of platform is complete.
* [15/07/2010 6:39:35 PM] : Downloading of subscription dependencies is complete.
* [15/07/2010 6:39:35 PM] : Commit of the downloaded application has started.
* [15/07/2010 6:39:36 PM] : Installation of application has successfully completed.
ERROR DETAILS
Following errors were detected during this operation.
* [15/07/2010 6:39:36 PM] System.ArgumentException
- Value does not fall within the expected range.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.NativeMethods.CorLaunchApplication(UInt32 hostType, String applicationFullName, Int32 manifestPathsCount, String[] manifestPaths, Int32 activationDataCount, String[] activationData, PROCESS_INFORMATION processInformation)
at System.Deployment.Application.ComponentStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
at System.Deployment.Application.SubscriptionStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
at System.Deployment.Application.ApplicationActivator.Activate(DefinitionAppId appId, AssemblyManifest appManifest, String activationParameter, Boolean useActivationParameter)
at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
COMPONENT STORE TRANSACTION DETAILS
* Transaction at [15/07/2010 6:39:36 PM]
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: OCXYZEE9.TWW.application
+ System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata
- Status: Set
- HRESULT: 0x0
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Launchpad.exe.manifest
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: InfinityIcon.ico
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Launchpad.exe.config
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.UI.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.UI.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Interop.Syspro.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Interop.Syspro.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.RadMarkupEditor.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.RadMarkupEditor.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Miscellaneous.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Miscellaneous.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Telerik.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Telerik.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Office2010.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Office2010.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Security.ActiveDirectory.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Security.ActiveDirectory.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Media.ImageLib.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Media.ImageLib.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Stocktake.Win32.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Stocktake.Win32.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Reporting.Omega.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Reporting.Omega.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Aqua.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Aqua.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.PlatformCore.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.PlatformCore.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Pi.QRCode.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Pi.QRCode.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Logic.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Logic.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: TelerikData.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: TelerikData.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Docking.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Docking.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Syspro.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Syspro.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Devices.Configuration.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Devices.Configuration.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.SAS.Win32Client.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.SAS.Win32Client.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.BreezeExtended.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.BreezeExtended.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.ContactTracker.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.ContactTracker.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Launchpad.exe.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Launchpad.exe
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.UI.Windows.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.UI.Windows.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Windows7.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Windows7.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Vista.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Vista.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: TelerikExtensions.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: TelerikExtensions.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Office2007Black.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Office2007Black.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.PlatformInterop.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.PlatformInterop.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.GridView.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.GridView.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Scheduler.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Scheduler.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Office2007Silver.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Office2007Silver.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.SAS.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.SAS.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Interop.XE.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Interop.XE.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.RadDock.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.RadDock.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Sigma.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Sigma.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Pi.AdminApp.exe.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Pi.AdminApp.exe
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.Syspro.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.Syspro.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Devices.BarcodeScanner.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Devices.BarcodeScanner.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Breeze.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Breeze.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: TelerikCommon.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: TelerikCommon.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Serialization.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Serialization.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.UI.HTML.Editor.Win32.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.UI.HTML.Editor.Win32.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.Epiconsole.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.Epiconsole.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.Reporting.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.Reporting.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.ReportViewer.WinForms.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.ReportViewer.WinForms.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Omega.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Omega.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.Desert.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.Desert.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Microsoft.mshtml.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Microsoft.mshtml.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Assist.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Assist.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Syspro.Win32.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Syspro.Win32.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Data.Linq.PlatformApps.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Data.Linq.PlatformApps.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Telerik.WinControls.Themes.ControlDefault.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Telerik.WinControls.Themes.ControlDefault.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Reporting.Win32.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Reporting.Win32.dll
+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
- Status: Installed
- HRESULT: 0x0
- Manifest: Platform.Apps.Sigma.Win32.dll.genman
+ System.Deployment.Internal.Isolation.StoreOperationStageComponentFile
- Status: Installed
- HRESULT: 0x0
- File: Platform.Apps.Sigma.Win32.dll
+ System.Deployment.Internal.Isolation.StoreOperationPinDeployment
- Status: Pinned
- HRESULT: 0x0
- AppId: http://es01/Framework/Platform%20Framework%20v1.0/Platform/Apps/Launchpad/Platform.Apps.Launchpad/publish/retail/Platform.Apps.Launchpad.application#Platform.Apps.Launchpad.application, Version=1.49.475.297, Culture=neutral, PublicKeyToken=4d0711b5f89c8549, processorArchitecture=x86
+ System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata
- Status: Set
- HRESULT: 0x0
+ System.Deployment.Internal.Isolation.StoreTransactionOperationType (27)
- HRESULT: 0x0