| The remote server did not satisfy the mutual authentication requirement |
|
 |
Index ‹ Visual Studio 2008 ‹ Windows Communication Foundation ("Indigo")
|
- Previous
- 1
- 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.
- 2
- Windows Presentation Foundation (WPF) XBAP sizeHi,
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
- 3
- 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!
- 4
- 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
- 5
- 6
- 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.
- 7
- 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
- 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
- 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.
- 10
- 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
- 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
- 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
|
| Author |
Message |
Bobby2006

|
Posted: Windows Communication Foundation ("Indigo"), The remote server did not satisfy the mutual authentication requirement |
Top |
I 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="EMail@HideDomain.com" /> </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
Visual Studio 200837
|
| |
|
| |
 |
Todd West

|
Posted: Windows Communication Foundation ("Indigo"), The remote server did not satisfy the mutual authentication requirement |
Top |
This error means SSPI wasn't able to use Kerberos and is falling back to NTLM. My initial guess would be the client isn't running as a domain user and so user to user Kerberos authentication isn't possible (I'm assuming the service is in a domain user account based on form of the UPN given above); if that's not it, can you provide more details about the OS and client and server accounts
|
| |
|
| |
 |
Bobby2006

|
Posted: Windows Communication Foundation ("Indigo"), The remote server did not satisfy the mutual authentication requirement |
Top |
Thanks for the reply.
I am running both client and server on the same machine using my domain account and I think Kerberos is enabled in my network.
Yes, the service is running under my domain account so I specify a user principal name for the client to authenticate my service.
|
| |
|
| |
 |
Todd West

|
Posted: Windows Communication Foundation ("Indigo"), The remote server did not satisfy the mutual authentication requirement |
Top |
If you've a Windows domain with a Windows 2000 or 2003 DC the domain supports user to user Kerberos. Barring a Windows NT DC (U2U is, I believe, a Windows 2000 feature), it's most likely the UPN identity specified on the client is incorrect. It looks like you started with some client config from svcutil so the client config should contain the correct UPN. But it wouldn't hurt to turn on http metadata and take a look at the service WSDL in a browser to see what UPN the service thinks it has.
|
| |
|
| |
 |
| |
 |
Index ‹ Visual Studio 2008 ‹ Windows Communication Foundation ("Indigo") |
- Next
- 1
- ADO.NET (Pre-release) Using Entity Model in a DLL
I am building a library (dll) which calls my entity model for data requirements. The problem is where to put the configration file. There are two options:
1. Either put the config information in the dll.config file
2. Or Put it in the calling application (App.config)
In both casses it is giving a exception.
When I put the config information in the dll.config file it is giving the following exception:
System.ArgumentException was unhandled Message="The named connection HelloWorldDBConnectionString is either not found in the configuration, it's not intended to be used with the Mapping Provider, or it's invalid.\r\nParameter name: connectionString" Source="System.Data.Entity" ParamName="connectionString" StackTrace: at System.Data.Mapping.MapConnection.ChangeConnectionString(String newConnectionString, String callersConnectionStringParameterName) at System.Data.Mapping.MapConnection..ctor(String connectionString) at System.Data.Objects.ObjectContext.CreateMapConnection(String connectionString, String defaultContainerName) at System.Data.Objects.ObjectContext..ctor(String connectionString, String defaultContainerName) at HelloWorldDBModel.HelloWorldDB..ctor(String connectionString) in f:\EndToEndHelloWorld\ModelObject1\obj\Debug\ModelObject1.Model.cs:line 101 at HelloWorldService.HelloWorldServer.GetMessage() in f:\EndToEndHelloWorld\HelloWorldService\Program.cs:line 17 at LocalServiceTest.Program.Main(String[] args) in F:\EndToEndHelloWorld\LocalServiceTest\Program.cs:line 13 at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart()
When I put the config info in the App.config of the calling exe file it gives the following exception:
System.ArgumentException was unhandled Message="The default entity container name 'HelloWorldDBModel.HelloWorldDB' 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 HelloWorldDBModel.HelloWorldDB..ctor(String connectionString) in f:\EndToEndHelloWorld\ModelObject1\obj\Debug\ModelObject1.Model.cs:line 101 at HelloWorldService.HelloWorldServer.GetMessage() in f:\EndToEndHelloWorld\HelloWorldService\Program.cs:line 17 at LocalServiceTest.Program.Main(String[] args) in F:\EndToEndHelloWorld\LocalServiceTest\Program.cs:line 13 at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart()
How do I config the entities in a dll
- 2
- Visual J# General read text for a .txt helpI'm attempting to read a line of text from a text file but found no scanner class that I usually use in the java.util package. Does anyone have a good suggestion on what I should use to read a line of text
Thanks
- 3
- LINQ Project General Cannot insert a subclass if it is really stored in a table associated with its parent
Hi,
I have been enjoying the incredible advances visible in the LINQ May 2006 CTP. I have followed the instructions in the DLink Designer Doc, creating a table Person with a type (discriminator) column for polymorphism. This table is to store not only persons but also employees, which have an additional property for Managers which of course is really a column of the Person table.
The problem appears when I want to insert an Employee. I have created a form with the following partial code:
------------------------
NorthwindDataContext dc = new NorthwindDataContext(); BindingList<Employee> persons; private void Form1_Load(object sender, EventArgs e) { var results = from emp in dc.Persons where emp is Employee select (Employee)emp;
this.persons = results.ToBindingList();
this.employeeBindingSource.DataSource = this.persons; }
private void employeeBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.dc.SubmitChanges(); }
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { int largestId = dc.Persons.Max( p => p.ID); Employee emp = this.persons[this.persons.Count-1]; emp.ID = largestId + 1; emp.Type = 2; } -----------------------
No error is given on save but the new employee does not get saved. And of course, it is understandable since the row type is Person not Employee.
this is why it seems to me to be an issue of how to deal with operations on subclasses.
Any light
Best regards,\
Juan Dent
- 4
- Visual Studio WPF Designer Cider support for local assembly references?
Am I doing something wrong Or do i possibly have an bad interaction between Cider and ReSharper (my guess).
every time i make a reference to the local namespace in the same assembly... e.g.
< Page x:Class="MyNameSpace.TestPage" xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml xmlns:local="clr-namespace:MyNameSpace" Title="TestPage"> <Page.Resources> <local:MyConverter x:Key="myConverter"/>
I end up getting all sorts of errors, even though it all compiles fine. In just the snippet i've pasted here, I get three errors:
Assembly '' was not found. The 'clr-namespace' URI refers to an assembly that is not referenced by the project.
The Element Page.Resources... has invalid child element MyConverter..."
and The type 'local:MyConverter' was not found. Verify you are not missing an assembly reference."
Ditto on the code behind... InitializeComponent() is not found, nor are any references to named xaml elements. but again, everything compiles and runs just fine. Is this just a preview issue Or are Orcas and Resharper fighting
- 5
- 6
- Visual Studio Tools for Office Excel scrollbars get really small.
Hi there, another ListObject woe I'm afraid.
I've a listobject, I bind it to a System.Windows.Forms.BindingSource which has an array of objects as its datasource. I have a test setup so that when I click a button it changes the array the bindingSource is bound to. So it alternates between an array of size 5, and an array of size 1000 (so if I keep clicking the button the listobject alternates between having 5 rows of data and 1000 rows of data).
However, when it binds to the 1000 rows the scrollbar at the side gets smaller, as you'd expect. When it binds on the next button click to 5 rows the scrollbar stays the same size, thus making it hard to scroll precisely. If I bind to 1000 rows again (another button click) the scrollbar gets even smaller. In fact the more times to bind to the 1000 rows the smaller and smaller it gets, such that if you bind to say 100 rows that needs alittle scrolling its very difficult to do this with any accuracy as the scrollbar by this point is very sensitive.
I can't think why it keeps getting smaller, or find any way of resetting its size. I've tried deleting all rows from the bottom of the listobject to the bottom of the Worksheet, but it doesn't change anything.
Strange problem, hope someone might have some idea.
Thanks very much.
- 7
- Windows Presentation Foundation (WPF) Proper design for custom templated parent/child control?
Hi everyone, I'm looking for some pointers on building a custom control. I'm doing this as an exercise in learning WPF. Basically here are my requirements:
1) Will have a parent control (ParentControl class) that has a specific Type of child items (ChildPane class). 2) The ParentControl class needs to host the child panes in a certain area. Then it might also have a header area. 3) Only one ChildPane will be visible at a time in the ParentControl. 4) The ChildPane class should be capable of hosting custom content. 5) Both controls need global default styles/templates to be set. 6) For each control, the end user should be able to set a style/template that overrides the global default set up by me for both controls. 7) The end user should be able to set a style/template on a specific ParentControl instance that overrides any global default style/template for ParentControl. 8) The end user should be able to set a style/template on a specific ParentControl instance that overrides the global default style/template for the ChildPane objects displayed in the ParentControl. 9) The end user should be able to set a style/template on a specific ChildPane instance that overrides both the global default style/template for ChildPane AND the style/template, if any, that is set on the "parent" ParentControl for its ChildPanes.
Usage should be simple like this:
<controls:ParentControl> <controls:ChildPane>Pane #1</controls:ChildPane> <controls:ChildPane>Pane #2</controls:ChildPane> <controls:ChildPane>Pane #3</controls:ChildPane> </controls:ParentControl>
Does anyone have any recommendations on getting this sort of functionality working, like a sample that is already out in the wild I've seen samples that do some of this but not all of it.
Also, these are preferred... 1) The parent control's Items collection only return ChildPane types so no casting is needed for the end user. 2) The SelectedPane property should get/set a ChildPane and update UI appropriate when set.
I am considering using Selector as a base class for the ParentControl but that will mean that my Items will be generic and I would prefer them not to be. I am considering ContentControl as my ChildPane base class.
Any help or sample code for the design principles above to get me started is appreciated.
- 8
- Windows Communication Foundation ("Indigo") How do I get WSHttpBinding to work on a clientI can run a WCF client and WCF Service on the same machine using BasicHttpBinding, and I can get the cleint to run on a remote machine.
I take the same code for both client and service and replace BasicHttpBinding with WSHttpBinding, and the Service and client will work on the same machine properly.
However, when I take the cleint (Containing WSHttpBinding) and access the WCF Service (also containing WSHttpBinding) from a REMOTE client, the client fails with the following error:
Unhandled Exception: System.ServiceModel.Security.MessageSecurityException: An u nsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. ---> System.ServiceModel.Fa ultException: An error occurred when verifying security for the message.
How can I get the WCF client containing WSHttpBinding to work properly on a remote client
- 9
- Visual Studio Report Controls How to: Add a rtf file to the report?
I'm making a sales contract with the report control, what I want to do is: each time the report is generated, it will import a rtf file ( for terms and conditions ) to the report and show it correctly with the report.
Is there any way I can do this with the report control
Thanks in advacne.
Long
- 10
- 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.
- 11
- 12
- 13
- Visual Studio Extensibility Connector inheritance problem
Hi,
I got problems with connector inheritance (i'm using the RTM bits).
Suppose I start from the Task Flow template.
I add a connector MasterConnector that becomes the base class for the CommentConnector.
When I create an instance of the CommentConnector (I associate a comment to a task), save the diagram and reopen it, the instance of the CommentConnector has doubled (two lines appear instead of one).
Has anybody noticed the same problem
Thanks!
Mike
- 14
- Visual Studio Extensibility Add a Folder to a project
I am trying to create a folder through IVsProject.AddItem method.
The method documentation says I should pass VSADDITEMOP_OPENDIRECTORY.
This enum does not exist in the SDK.
How do I create a folder in Project Thanks
- 15
- Windows Presentation Foundation (WPF) Listview content Wrap
Is there a way to have the control list items like in a list box but when the bottom of the screen is reached have a new column formed so that all of the content is on the screen I.E. If the screen can hold 40 rows of data and I have 100 rows to display I would end up with three columns of data.
Thanks in advance
|
|
|