 |
 |
Index ‹ Visual Studio 2008 ‹ Windows Presentation Foundation (WPF)
|
- Previous
- 1
- Visual Studio Tools for Office in my vb.net windows application i need to open the ms outlook adress book
in my vb.net windows application i need to open the ms outlook adress book
in my windows application i am preparing an email application in my compose an email form i need to access the email id's from the adress book of the system
i kept a button and an text box when i click on the button i should be able to open the adressbook and select the email id in the adress book and this email id should get aded in the text box
can any one help me plz
- 2
- 3
- 4
- Visual Studio Tools for Office Display HTML text in Word (with VSTO)Hi,
I would like to tell Word to interpret some text in HTML form and display only the resulting text well-formated.
Here some code: Word.Range range = Range(ref missing, ref missing); range.Text = "Some normal text"; range.Bold = 1; range.InsertAfter("\n\n"); range.Collapse(ref collapseEnd);
// now the html part range.Text = "<span class="A21">This is some html content</span>" ; range.InsertAfter("\n\n");
The second part of the code displays the HTML tags instaed of interpreting it as html. Any idea how I can fix this
Thanks a lot for any help. Claudia
- 5
- Windows Presentation Foundation (WPF) Reflection based loading of Ressources
Hi. I am building a small test framework for loading and instantiating XAML views. I have got a problem with Reflection and loading of XAML ressources.
A. I Load an Assembly: .... a= Assembly.LoadFile("myassembly");...
B. I would then like to load the XAML ressources in that Assembly into the current Applications Ressource Dictionary, (Merged), something like this:
uri = new Uri("pack://application:,,,/MyAssembly;component/Resources/SomeResource.xaml"); rd = new ResourceDictionary(); rd.Source = uri; Application.Current.Resources.MergedDictionaries.Add(rd);
When I use the methods: GetManifestResourceNames / GetManifestResourceStream / GetManifestResourceInfo on the assembly, I get the embedded ressources by name, something like: 'MyAssembly.g.resources', but what I would like to obtain, is the name 'SomeResource',in order to load the ressource into the Application Dictionary.
I hope someone has got an idea.
- 6
- Visual Studio Tools for Office I need help!
I would really appreciate it if someone could help me out on this
I'm having problems with the security permissions of the word document customization assemblies. Even after giving permissions to the assembly from the .Net framework configuration, it's still telling me that the customization assembly does not have the required permissions to execute. I've been facing this issue for a long time..
plz if anyone has the solution to my problem, i'd really appreciate your feedback
thanks
Maha
- 7
- 8
- Visual Studio Setup and Installation Microsoft Component Distribution
I am a software developer and I have created an installation setup program in Visual Studio for the software I wrote in Visual Basic. Another person downloaded my program and installed it to their computer. That person tells me they are running Windows XP on their computer. But when they tried to run my software they got the error message:
Run-time error '339': Component 'MSMAPI32.OCX' not correctly registered: file is missing or invalid.
My program uses MAPI to send out email messages. I thought all Windows systems would have MAPI installed on them. Should I add the MAPI OCX file to my installation program and do I have the legal right to do so Does Microsoft authorize developers to distribute that component with their applications Do I need to distribute some other Microsoft components that my program uses, like ADO and Excel How do I know which components I legally can and should include in my installation program
Any help is appreciated.
- 9
- 10
- 11
- LINQ Project General Doubts concerning Linq
I have some doubts about Linq:
1) What is the sintax for an update command, like below:
update <table> set <field1> = value, <field2> = value
where <field3> = value and <field4> = value
2) Isnt Linq really providing a native provider for Oracle, MySql Letting this to other vendors looks like ODBC :(
3) Is the idea of Linq to take 100% of ORM market share Why would one continue using other ORMs if Linq (which is integrated to VS2005 and Orca) is able to map DB as well to entities
4) Is Linq really linked to Orca RTM When will that be, is there any planned date yet
- 12
- Windows Presentation Foundation (WPF) display System.Windows.Forms.RichTextBox in xaml browser
Hi,
I can't display System.Windows.Forms.RichTextBox in my xaml browser application.If I use System.Windows.Controls.RichTextBox then it works,but i cannot achieve some of the functionalities like getting the text bolded,underlined etc. Hence i tried to use System.Windows.Forms.Richtextbox. Can any one tell me how to display System.Windows.Forms.RichTextBox in XAML browser application or else how could i achieve the mentioned functionalities for system.windows.controls.richtextbox.
Regards,
spshah
- 13
- Visual Studio MSBuild using of ILogicalThreadAffinative
when i using this interface
this error ....
Error 28 The "GenerateResource" task failed unexpectedly. System.Runtime.Serialization.SerializationException: Type is not resolved for member 'RAD.Infra.Contexts.InfraContext,RAD.Infra.Contexts, Version=1.0.1.1, Culture=neutral, PublicKeyToken=3f5c254063a54fe2'. at System.AppDomain.CreateInstanceFromAndUnwrap(String assemblyName, String typeName) at Microsoft.Build.Tasks.GenerateResource.Execute() at Microsoft.Build.BuildEngine.TaskEngine.ExecuteTask(ExecutionMode howToExecuteTask, Hashtable projectItemsAvailableToTask, BuildPropertyGroup projectPropertiesAvailableToTask, Boolean& taskClassWasFound) RAD.TVTO.Plan.UI
- 14
- Windows Presentation Foundation (WPF) Clipboard Problem
Hi there
I seem te be having a problem when placing images on the clipboard. It only seems to be a problem when the code is executed on a Virtual PC and I suspect it has something to do with graphics memory, but I am not sure, and I was hoping that perhaps someone will know of a better way to accomplish this.
Here is some info on the app. We have an avalon design canvas on which all kinds of objects are placed. Later on the user can then select an area of this design canvas and "grab" a bitmap image of the selection. This bitmap image is placed on the clipboard from where it can be pasted into other applications as normal images.
Here is the code that takes, as input, a FrameworkElement, makes a bitmap out of it an returns the sub-selection inside it as a bitmap image:
public static System.Drawing.Bitmap GetWin32BitmapFromUIElement(System.Windows.FrameworkElement element, System.Windows.Rect regionInsideElement)
{
MemoryStream fs = new MemoryStream();
System.Windows.Media.Imaging. RenderTargetBitmap bmp = element.ActualHeight > 0 new RenderTargetBitmap((int)element.ActualWidth, (int)element.ActualHeight, 1 / 96, 1 / 96, System.Windows.Media.PixelFormats.Pbgra32) : new RenderTargetBitmap((int)element.Width, (int)element.Height, 1 / 96, 1 / 96, System.Windows.Media.PixelFormats.Pbgra32);
bmp.Render(element);
PngBitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add( BitmapFrame.Create(bmp));
encoder.Save(fs);
System.Drawing. Image img = System.Drawing.Image.FromStream(fs);
System.Drawing. Bitmap final = new System.Drawing.Bitmap((int)regionInsideElement.Width-1, (int)regionInsideElement.Height-1);
System.Drawing. Graphics g = System.Drawing.Graphics.FromImage(final);
g.DrawImage(img, new System.Drawing.RectangleF(0, 0, (float)regionInsideElement.Width, (float)regionInsideElement.Height), new System.Drawing.RectangleF((float)regionInsideElement.Left, (float)regionInsideElement.Top, (float)regionInsideElement.Width, (float)regionInsideElement.Height), System.Drawing.GraphicsUnit.Pixel);
fs.Close();
return final;
}
After this, the resulting Bitmap object is placed on the clipboard:
System.Windows.Forms. Clipboard.Clear();
System.Drawing. Bitmap bmp = Utilities.GetWin32BitmapFromUIElement(this as FrameworkElement, areaToGrab);
System.Windows.Forms. Clipboard.SetImage(bmp);
bmp.Dispose();
bmp = null;
It is this code that causes the "Requested Clipboard Operation did not succeed" error on Virtual PCs.
Any ideas
- 15
- Visual Studio Source Control and SourceSafe VSS 6.0 Command line
Hi,
I'm working with VS 2005 and VSS 6.0.
I've build a small .cmd file that clean some folders, build the solution (using devenv.exe) and deploy files to a specific folder.
I'd like to add a first step in my bat file which is "get latest version of the project files with user USER password PASS and without overriding checked out items".
I've started to look into the documentation of ss.exe, but it's quite complex and I didn't get success.
Does anyone have the right command line for me
Thsnk in advance,
Steve
|
| Author |
Message |
imj

|
Posted: Windows Presentation Foundation (WPF), XBAP size |
Top |
Hi,
When I publish my XBAP application, the following four files get copied into the xbap directory, in Debug or Release mode:
- Draft.PresentationDesignMarkup.dll (408KB)
- PresentationDesignCore.dll (184KB)
- PresentationDesignDevelopper.dll (372KB)
- PresentationDesignFramework.,dll (84KB)
This adds up to about a megabyte minimum size for the XBAP, before any of my code gets included. This is kind of heavy for lightweight applications, and I don't understand why these dlls aren't included in the 3.0 runtime. Is this still going to be the case after .NET 3.0 RTMs
Visual Studio 200810
|
| |
|
| |
 |
Karen Corby - MSFT

|
Posted: Windows Presentation Foundation (WPF), XBAP size |
Top |
Hi,
Today, there is a known bug in the Orcas extensions. The references to the above DLLs have "CopyLocal" set to True. It should be false. This will be fixed in an upcoming release.
In the meantime, you can workaround by manually changing CopyLocal=False for the above dll references. (These references are NOT needed by the xbap at runtime.)
Thanks,
Karen
|
| |
|
| |
 |
imj

|
Posted: Windows Presentation Foundation (WPF), XBAP size |
Top |
Thanks, Karen
I went ahead and changed the "Copy Local" flag for the "PresentationDesignDeveloper" reference to False, and re-published the xbap. As expected, none of the dlls I mentioned above were copied. However, when I try to run the app in IE7, I get the following error:
Following errors were detected during this operation. * [10/31/2006 9:13:37 AM] System.Deployment.Application.DependentPlatformMissingException (Unknown subtype) - Unable to install or run the application. The application requires that assembly PresentationDesignFramework Version 0.0.4030.0 be installed in the Global Assembly Cache (GAC) first. - Source: System.Deployment - Stack trace: at System.Deployment.Application.PlatformDetector.VerifyPlatformDependencies(AssemblyManifest appManifest, Uri deploySupportUri, String tempDir) at System.Deployment.Application.DeploymentManager.DeterminePlatformRequirementsCore(Boolean blocking)
Any ideas - Imad
|
| |
|
| |
 |
Matt Galbraith - MSFT

|
Posted: Windows Presentation Foundation (WPF), XBAP size |
Top |
This is likely too old to matter, but you shouldn't need any of the design-time assemblies in your project. If your project is itself referencing those assemblies, delete the reference. Karen's comment is still valid for anything your app actually requires to run though.
|
| |
|
| |
 |
| |
 |
Index ‹ Visual Studio 2008 ‹ Windows Presentation Foundation (WPF) |
- Next
- 1
- Crystal Reports for Visual Studio Bold text and lines don't appear in print preview of imported report
I created a report that works and displays properly in both the preview tab in the IDE and when previewing it in the running application (using the crystal report viewer control in a windows form).
I wanted to use the same report in another project. So, I chose to add an existing item and found the report. The report was added to the project just fine. However, if I run the application and preview the report, bold text and lines are not displayed in it. Oddly enough, if I resize the preview window using my mouse, they suddenly appear, so they are there. If I scroll or do anything else, though, they disappear again. They also don't appear in the preview tab in the IDE.
Any ideas How can I use the existing report
By the way, I'm using VS2005 for this.
Thanks!
- 2
- ADO.NET (Pre-release) All-in-one bundle Beta 1 or CTP? When will we be able to have an easier-to-install updated CTP of ADO.NET vNext The current one is a September 2006 CTP that requries the May 2006 CTP of LINQ in order to function.
Are there any firm dates as to when LINQ and ADO.NET vNext will either become parallel (release at the same time) or get rolled into the same CTP/Beta
- 3
- Crystal Reports for Visual Studio Selection Formula
Dear All,
I have this problem of designing my report in Crystal Report. Basically my table structure is as below
|
ID |
OutletID |
Type |
Serial |
|
1 |
1 |
A |
1112 |
|
2 |
1 |
B |
1123 |
|
3 |
1 |
C |
1200 |
|
4 |
2 |
C |
1201 |
|
5 |
2 |
C |
1202 |
Below is how I want to output my report
A 1112
B 1123
C 1200 - 1202
The problem is that for Type A and Type B I want to list as it is. But for only type C I want to put them in a range like how I did above where for 1200,1201,1202 I will just put 1200-1202. I done some reading and also did some work around building a formula as below
if {product.Type}= "A" then
else if {product.Type}= "B" then
else if {product.productType}= "C" then
I am really stuck over here. I have the idea of using an array to store all the list values and later do a test on the array value based on the product type. I really dont know how to go further. Can some pls help me I am very new to this crystal repors.
. Thanks a lot in advance.
- 4
- Windows Communication Foundation ("Indigo") The remote server did not satisfy the mutual authentication requirementI am trying to write a Client/Server program which needs mutual authentication between the server and client via Kerbros.
Therefore I did the following:
On Server side: Config file:
< xml version="1.0" encoding="utf-8" > <configuration> <system.serviceModel> <services> <service name="Com.Service" behaviorConfiguration="ServiceBehaviorConfig"> <host> <baseAddresses> <add baseAddress="net.tcp://tako:8020/Com/"/> </baseAddresses> </host> <endpoint address="" binding="netTcpBinding" bindingConfiguration="MyNetTCPBinding" contract="Com.IService"> </endpoint> <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"> </endpoint> </service> </services> <behaviors> <serviceBehaviors> <behavior name="ServiceBehaviorConfig"> <serviceMetadata/> <serviceDebug includeExceptionDetailInFaults="false"/> </behavior> </serviceBehaviors> </behaviors> <bindings> <netTcpBinding> <binding name="MyNetTCPBinding"> <security mode ="Transport"> <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"/> </security> </binding> </netTcpBinding> </bindings> </system.serviceModel> </configuration>
On Client side Config file:
< xml version="1.0" encoding="utf-8" > <configuration> <system.serviceModel> <bindings> <netTcpBinding> <binding name="NetTcpBinding_IService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="65536"> <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /> <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /> <security mode="Transport"> <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" /> <message clientCredentialType="Windows" /> </security> </binding> </netTcpBinding> </bindings> <client> <endpoint address="net.tcp://tako:8020/Com/" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IService" contract="IService" name="NetTcpBinding_IService"> <identity> <userPrincipalName value="username@com.net" /> </identity> </endpoint> </client> </system.serviceModel> </configuration>
set the following to disable fallback to Ntlm service.ClientCredentials.Windows.AllowNtlm = false;
But when I run the server and client, as soon as the client try to call any method in the server object, I receive the following error:
System.ServiceModel.Security.SecurityNegotiationException: The remote server did not satisfy the mutual authentication requirement
I am running both the client and server on the same machine and I am sure my user principal name is correct as as my machine is in AD, Kerbros should be enabled, what else can I check or have I missed out What else may have caused this
Many thanks,
Bobby
- 5
- Visual Studio Tools for Office Which Interop To Choose?
Hello everyone.
I have a question about the Office 12 Interops - I wish to develop a solution for that platform under .NET v2, But the interops i have right now are either COM or .NET v1.1 assemblies.
Are there any v2 interops planned (Although the v1.1 interops seem to work with v2 form applications) Which are preferable - COM or Managed
Thanks in advance,
Ran Sagy.
- 6
- 7
- 8
- ADO.NET (Pre-release) Working with WCF Service
I am trying to use the Entity Framework with a WCF service. It is giving me the following exception:
System.ArgumentException was unhandled by user code Message="The default entity container name 'eKnowledgeSpaceDBModel.eKnowledgeSpaceDB' is invalid. The required mapping and metadata information could not be found.\r\nParameter name: defaultContainerName" Source="System.Data.Entity" ParamName="defaultContainerName" StackTrace: at System.Data.Objects.ObjectContext.CreateMapConnection(String connectionString, String defaultContainerName) at System.Data.Objects.ObjectContext..ctor(String connectionString, String defaultContainerName) at eKnowledgeSpaceDBModel.eKnowledgeSpaceDB..ctor(String connectionString) in f:\eKnowledgeSpaceSolution\eKnowledgeSpaceObjectModel\obj\Debug\eKnowledgeSpaceObjectModel.Model.cs:line 8656 at eKnowledgeSpace.Service.UserRegistrationMessageDirector.RegisterUser(UserDataContract user) in f:\eKnowledgeSpaceSolution\UserRegistrationService\MessageBuilder.cs:line 42 at eKnowledgeSpace.Service.RegistrationService.UserRegistration(UserDataContract user) in f:\eKnowledgeSpaceSolution\UserRegistrationService\UserRegistrationService.cs:line 26 at SyncInvokeUserRegistration(Object , Object[] , Object[] ) at System.ServiceModel.Dispatcher.InvokeDelegate.Invoke(Object target, Object[] inputs, Object[] outputs) at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs) at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
I am self hosting the WCF Service, and the host application config file is as follows:
< xml version="1.0" encoding="utf-8" >
< configuration>
< configSections>
< section name="system.data.ctp" type="System.Data.Common.DbProviderFactoriesConfigurationHandler, System.Data.CTP, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</ configSections>
< system.data.ctp>
< DbProviderFactories>
< add name="SqlClient Data Provider" invariant="System.Data.SqlClient" description=".Net Framework Data Provider for SqlServer" type="System.Data.SqlClient.SqlClientFactory, System.Data.CTP, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
< add name="Map Data Provider" invariant="System.Data.Mapping" description=".Net Framework Map Provider" type="System.Data.Mapping.MapProviderFactory, System.Data.Entity, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</ DbProviderFactories>
</ system.data.ctp>
< connectionStrings>
< add name="eKnowledgeSpaceDBConnectionString" connectionString="metadata=.;provider=System.Data.SqlClient;provider connection string="Data Source=EKNOWLEDGE\SQLEXPRESS;Initial Catalog=eKnowledgeSpaceDB;Integrated Security=True"" providerName="System.Data.Mapping" />
</ connectionStrings>
< appSettings>
< add key="HTTPBaseAddress"
value="http://localhost:8000/Registration/"/>
< add key="TCPBaseAddress"
value="net.tcp://localhost:8010/Registration/"/>
</ appSettings>
< system.serviceModel>
< services>
< service name= "eKnowledgeSpace.Service.RegistrationService" behaviorConfiguration="RegistrationService">
< host>
< baseAddresses>
< add baseAddress="http://localhost:8000/Registration/"/>
< add baseAddress="net.tcp://localhost:8010/Registration/"/>
</ baseAddresses>
</ host>
< endpoint
address="Register"
binding="basicHttpBinding"
contract= "eKnowledgeSpace.Service.IRegistrationService"
/>
</ service>
</ services>
< behaviors>
< serviceBehaviors>
< behavior name="RegistrationService">
< serviceMetadata httpGetEnabled="true" />
< serviceSecurityAudit auditLogLocation="Application" messageAuthenticationAuditLevel="SuccessOrFailure" serviceAuthorizationAuditLevel="SuccessOrFailure"/>
</ behavior>
</ serviceBehaviors>
</ behaviors>
</ system.serviceModel>
</ configuration>
What should I do to solve this problem. Is there any example of a Entity Framework being called by WCF Service
- 9
- 10
- Windows Presentation Foundation (WPF) Databind Child Object
Hi,
I have an object called Product and that product as a property of type List<Photo>. Photo is an object with an URI and a few more properties. What I want to do is in the DataTemplate access the first Photo of each product. I have something like this for the other properties in the Product Object:
<GridView x:Key="gridView" AllowsColumnReorder="True"> <GridViewColumn Header="Tipo de negocio" DisplayMemberBinding="{Binding Path=TypeOfBussiness}"/> <GridViewColumn Header="Tipo de imovel" DisplayMemberBinding="{Binding Path=TypeOfProduct}"/> <GridViewColumn Header="Tipologia" DisplayMemberBinding="{Binding Path=Typology}"/> </GridView>
And I wanted to define another GridViewColumn to show the photo, that will be in a data template. The problem here is binding to the path provided in the first Photo object of the List<Photo> in Products.
Thank you Bruno Silva
- 11
- Windows Presentation Foundation (WPF) Connect two elements on StackPanel
Hello,
I have an ItemControl which have its ItemsSource set to a List instance. The ItemsControl's ItemsPanel property is set to StackPanel.
I want to connect two elements in the ItemsControl with a line when the user click with the right mouse button on an item.
How can I draw a line between the two elements
Thank you,
Ido.
- 12
- 13
- Visual Studio Tools for Office VSTO and dead code.
I've built COM add ins for PowerPoint XP and 03 that work perfectly, now I am trying to get them to work in Office 07 and am getting no where.
The problem seems to be that when I call an out of process (microsoft encoder) my code dies. There are no errors thrown, there is ummm, nothing, just dead code.
As an example;
Set encoder blah, blah, blah
encoder.start
Msgbox "Done".
In the above the encoder indeed starts, runs as expected, and then, zip, nada, nothing. Its as if the rest of the msgbox doesn't even exist.
- 14
- LINQ Project General Windows installer failure
help urgently required.
I have attempted to run a CognosController.Msi file but the installation failed with the following error: "There is a problem with this windows installer package. A script required for this install to complete could not be run."
I currently have .NET framework 1.1 including SP1 installed.
Any tips on how I can resolve this problem.
Thanks
- 15
- Visual Studio Tools for Office Building Office integrated applications
We have some applications that uses Office Interop's. We have downloaded the PIA's from Microsoft and references the Interop dll's that are included there.
The problem occurrs when moving to a build server: In order to install the PIA on the build server, we must first install (at least one) Microsoft Office Application.
While we can do that, this seems somewhat incorrect to install client applications on a build server in order to just make it compile.
What is the recommended approach here In other projects we have created Interop-files manually be using the TlbImp tool. But with MS Office, we don't have a type library file.
Regards
/Jakob
|
|
|