Answer Questions
icePhalanx Is there any way to find the error in SubReport?
Four days now trying to figure out why my subreport doesn't work. Local Mode. VB. Business Objects. Is there something that the business object needs to have besides its properties Perhaps a method to search for the items containing the parameter I've even tried creating a datatable on the fly and passing that as the datasource to be added in the subreportprocessing subroutine. The reportviewer's ReportError event doesn't fire. All I get is ...Show All
Paul Scheremet Unlocking VBA project in Excel
Hello, I have one password protected vba project in my excel file. I want to unlock this vba project through C# code. Could anyone help me on this I tried the sendKey function of C# but still not able to get through. Here's the code that I have used: if(Workbook.VbProject.Protection== Microsoft.Vbe.Interlop.vbext_ProjectProtection.vbext_pp_locked) { Workbook.Activate(); WorkBook.Application.OnKey("%{F11}",Type.Mi ...Show All
TEK7347 ADO.NET Entity Framework documents are back
The original articles about the ADO.NET Entity Framework didn't stay online very long, but this time, two official documents are available: The ADO.NET Entity Framework Overview Next-Generation Data Access (Making the conceptual level real) These documents will give you an overview of what is coming in the next version of ADO.NET, mainly the ADO.NET Entity Framework, which is Microsoft's upcoming solution for mapping data to objects. In t ...Show All
tpreato Is the pseudo SQL syntax necessary?
Current LINQ syntax is like this: var upperLowerWords = from w in words select new {Upper = w.ToUpper(), Lower = w.ToLower()} where w.StartsWith("a"); But I think that this is unnecessary breeding of C# with SQL. I believe that combination of methods with lambda calculus would be better: string[] words = { "aPPLE", "B ...Show All
arunprakashr Object datasources vanish from rdlc data sources in web project
Anyone having issues with their object datasources appearing and vanishing from the datasource browser I create an object for binding as a datasource in my App_Code folder, compile my web project and it appears in the datasources in the report designer. Then I will make an aspx, setup a reportviewer control for my new report, go back to the rdlc and the object datasource sometimes just vanishes. I refresh, no luck. The only solution I ...Show All
kayki create proxy from net.msmq?
Hi! which is the instruction to generate proxy for a service net.msmq I have " svcutil " and " net.msmq://localhost/private/ServiceModelSamplesTransacted ", but I haven't the correct sentence. Saludos, To use SvcUtil, you need to point it at a metadata exchange endpoint. WCF will provide one for you automatically as long as you register with the host a base address of TCP, HTTP, or IPC. You are using MSQM. ...Show All
Cheatah Mixed credentials: Username & Certificate
Greetings, Our services will be exposed on the Internet. Only specific partners applications should be able to have access to them. At the same time, the partners applications users will need to be authenticated & authorized by our services. We will use role-based security to authorize them. The reason why we need a double validation using a certificate for each application is because we don't want anybody on the internet to be able to qu ...Show All
Waters VS2005 uable to get local help
I just installed MSDN subscriptions library to my PC from the DVD dated January 2006 (1.61GB). I can not get local help to work within Visual Studio 2005. I did read all the above threads but i am still not able to get MSDN integrated with VS2005 thanks, Mark markm@lanb.com . Frank, Thanks but that is exaclty what I had done. Works fine if I fire up MSDN standalone just not from VS.Net a ...Show All
mp2005 Editing project references in visual studio 2005 project files
Currently, if you add a reference to a project that is outside the folder structure of the current solution, but on the same drive, you will get a relative path in the HintPath of the .csproj file. The only problem we have with this, is that the reference will be to a DLLat an exact location, so switching between debug and release build will still reference the same DLL. I've found that you can edit the HintPath in the .csproj file to use the e ...Show All
Omnibuzz Can I download a web page by XAML
Hello, everyone! Using C#, I can get the html code of a web page. It is easy. I wonder whether I can do this by XAML! If you know this, plz tell me. Thank you! You cannot access the DOM directly from WPF, you must use Windows Forms interoperability - host a WebBrowser control. You can use a Frame element and set its Source attribute <Frame Source="http://msdn.microsoft.com" /> Thi ...Show All
Jon Voigt Zooming Crystal Report When Design
Hi All, Lately, I am working on a small size report contain tiny 2D Barcode. The report size is approximately 1 cm x 0.8 cm. I have a lot of difficulties to design the report.I tried to set the monitor resolution to 640 x 480, but it doesn't help much. Is there any way to zoom the report when we design it to provide a larger area. Any help is very appreciated. Thnak you. Warmest Regards, Freddy Halim ...Show All
Guido Schrage Convert Dialog to DropDown Menu Item
I have code I am using in a Visual Studio addin that adds a CommandBarButton to the context menu of any code window of Visual Studio. Currently, when selected, it invokes a dialog box with three radio buttons and the user selects their choice of further actions from there. While this is workable, it has been suggested that a dropdown menu might be more appropriate and in keeping with the context menu theme. How do I make this c ...Show All
abcynic LINQ = .NET Framework 3 ?
WinFX is now .NET Framework 3.0, does this mean Linq is also 3.0 or will it be 4.0 or ... .Net framework 3.0 includes new pieces of the framework like WCF and WPF, but not updates to what is currently in 2.0. Another update to the framework will occur when Orcas ships sometime after Vista. I think it's a bad idea to bump all the way to v3... I'd really like to make breaking changes happen between major v ...Show All
C7MAX extending c# editor
Hi, I want to make a vs package for am AOP tool. Wat I'm interested in is in displaying in a tool window what aspects apply to the file it's being edited. I would like it to be something like the "class view" in visual studio but displaying something else. I don't know how to connect the editor with the toolbox, to catch events as editing or saving. I don't want to make a custom editor, because it's intended tu use with the c# edit ...Show All
Andy2222 Error 0x80072F19 while using Source Safe 2005 Beta 2 via SSL
Hi, I use the Source Safe 2005 Beta 2 via SSL, source safe database has users with names Admin and Administrator with a not empty passwords. If I connect to this database from logged on user named Administrator, then I able to use this database (password not required, and I don't understand why), but if I use the same database from logged on user named, for example, Test , then I see the following error: "Cannot contact the Visual SourceSafe Int ...Show All
